Home
last modified time | relevance | path

Searched refs:types (Results 151 - 175 of 5317) sorted by relevance

12345678910>>...213

/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dcontainer.js6 var types = _interopRequireWildcard(require("./types")); variable
184 if (selector.type === types.ATTRIBUTE) {
192 if (selector.type === types.CLASS) {
200 if (selector.type === types.COMBINATOR) {
208 if (selector.type === types.COMMENT) {
216 if (selector.type === types.ID) {
224 if (selector.type === types.NESTING) {
232 if (selector.type === types.PSEUDO) {
240 if (selector.type === types
[all...]
/third_party/python/Parser/
H A Dasdl.py34 # between the various node types.
46 self.types = {type.name: type.value for type in dfns}
97 def __init__(self, types, attributes=None):
98 self.types = types
103 return 'Sum({0.types}, {0.attributes})'.format(self)
105 return 'Sum({0.types})'.format(self)
152 self.types = {}
162 for t in sum.types:
179 l = self.types
[all...]
/third_party/mesa3d/src/glx/apple/
H A Dapple_glx_surface.c63 struct apple_glx_surface *s = &d->types.surface; in surface_make_current()
97 struct apple_glx_surface *s = &d->types.surface; in surface_destroy()
131 struct apple_glx_surface *s = &d->types.surface; in create_surface()
207 d->types.surface.pending_destroy = true; in apple_glx_surface_destroy()
/third_party/python/Lib/test/test_importlib/import_/
H A Dtest_api.py5 import types namespace
66 mod = types.ModuleType(PKG_NAME)
77 mod = types.ModuleType(PKG_NAME)
89 mod = types.ModuleType(PKG_NAME)
/third_party/node/deps/v8/third_party/inspector_protocol/
H A Dcheck_protocol_compatibility.py43 # For the parameters with composite types the above checks are also applied
212 types = {}
215 normalize_types(domain, domain_name, types)
216 return types
219 def normalize_types(obj, domain_name, types):
222 normalize_types(item, domain_name, types)
229 types[obj[key]] = obj
231 normalize_types(value, domain_name, types)
250 "types": [
324 "types"
[all...]
/third_party/node/tools/inspector_protocol/
H A Dcheck_protocol_compatibility.py43 # For the parameters with composite types the above checks are also applied
212 types = {}
215 normalize_types(domain, domain_name, types)
216 return types
219 def normalize_types(obj, domain_name, types):
222 normalize_types(item, domain_name, types)
229 types[obj[key]] = obj
231 normalize_types(value, domain_name, types)
250 "types": [
324 "types"
[all...]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder_loop_test.cc67 EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeInt 32 1 in TEST_F()
108 EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeInt 32 1 in TEST_F()
151 EXPECT_EQ(DumpInstructions(b.types()), R"(%7 = OpTypeInt 32 1 in TEST_F()
240 EXPECT_EQ(DumpInstructions(b.types()), R"(%5 = OpTypeBool in TEST_F()
274 EXPECT_EQ(DumpInstructions(b.types()), R"(%5 = OpTypeBool in TEST_F()
320 EXPECT_EQ(DumpInstructions(b.types()), R"(%9 = OpTypeBool in TEST_F()
377 EXPECT_EQ(DumpInstructions(b.types()), R"(%9 = OpTypeBool in TEST_F()
/third_party/icu/icu4c/source/tools/tzcode/
H A Dtz2icu.cpp126 int32_t type; // index into 'ZoneInfo.types' 0..255
166 vector<ZoneType> types; member
335 // Used temporarily to store transition times and types. We need in readzoneinfo()
336 // to do this because the times and types are stored in two in readzoneinfo()
350 // Read transition types in readzoneinfo()
363 // Build transitions vector out of corresponding times and types. in readzoneinfo()
400 // Read types (except for the isdst and isgmt flags, which come later (why??)) in readzoneinfo()
416 info.types.push_back(type); in readzoneinfo()
419 assert(info.types.size() == (unsigned) typecnt); in readzoneinfo()
428 if (info.types in readzoneinfo()
[all...]
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dtz2icu.cpp126 int32_t type; // index into 'ZoneInfo.types' 0..255
166 vector<ZoneType> types; member
335 // Used temporarily to store transition times and types. We need in readzoneinfo()
336 // to do this because the times and types are stored in two in readzoneinfo()
350 // Read transition types in readzoneinfo()
363 // Build transitions vector out of corresponding times and types. in readzoneinfo()
400 // Read types (except for the isdst and isgmt flags, which come later (why??)) in readzoneinfo()
416 info.types.push_back(type); in readzoneinfo()
419 assert(info.types.size() == (unsigned) typecnt); in readzoneinfo()
428 if (info.types in readzoneinfo()
[all...]
/third_party/python/Lib/test/crashers/
H A Dbogus_code_obj.py15 import types namespace
17 co = types.CodeType(0, 0, 0, 0, 0, 0, b'\x04\x00\x71\x00',
/third_party/mesa3d/src/gallium/frontends/clover/spirv/
H A Dinvocation.cpp152 std::unordered_map<SpvId, binary::argument> types; in create_binary_from_spirv() local
303 types[id] = { binary::argument::scalar, size, size, size, in create_binary_from_spirv()
305 types[id].info.address_qualifier = CL_KERNEL_ARG_ADDRESS_PRIVATE; in create_binary_from_spirv()
312 const auto types_iter = types.find(type_id); in create_binary_from_spirv()
313 if (types_iter == types.end()) in create_binary_from_spirv()
326 types[id] = { binary::argument::scalar, size, size, in create_binary_from_spirv()
340 const auto types_iter = types.find(type_id); in create_binary_from_spirv()
343 // types allowed as kernel arguments. And since the binary has in create_binary_from_spirv()
346 if (types_iter == types.end()) in create_binary_from_spirv()
356 types[i in create_binary_from_spirv()
[all...]
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-array-object.c203 property_pair_p->header.types[0] = ECMA_PROPERTY_TYPE_DELETED; in ecma_fast_array_convert_to_normal()
210 property_pair_p->header.types[prop_index] = (ecma_property_t) (ECMA_PROPERTY_TYPE_NAMEDDATA in ecma_fast_array_convert_to_normal()
815 if (current_prop_p->types[0] == ECMA_PROPERTY_TYPE_HASHMAP) in ecma_delete_array_properties()
830 if (ECMA_PROPERTY_IS_NAMED_PROPERTY (current_prop_p->types[i]) in ecma_delete_array_properties()
831 && !ecma_is_property_configurable (current_prop_p->types[i])) in ecma_delete_array_properties()
833 uint32_t index = ecma_string_get_property_index (current_prop_p->types[i], in ecma_delete_array_properties()
864 if (current_prop_p->types[0] == ECMA_PROPERTY_TYPE_HASHMAP) in ecma_delete_array_properties()
881 if (ECMA_PROPERTY_IS_NAMED_PROPERTY (current_prop_p->types[i]) in ecma_delete_array_properties()
882 && ecma_is_property_configurable (current_prop_p->types[i])) in ecma_delete_array_properties()
884 uint32_t index = ecma_string_get_property_index (current_prop_p->types[ in ecma_delete_array_properties()
[all...]
/third_party/skia/src/sksl/
H A DSkSLCompiler.cpp250 static void add_glsl_type_aliases(SkSL::SymbolTable* symbols, const SkSL::BuiltinTypes& types) { in add_glsl_type_aliases() argument
252 symbols->addAlias("vec2", types.fFloat2.get()); in add_glsl_type_aliases()
253 symbols->addAlias("vec3", types.fFloat3.get()); in add_glsl_type_aliases()
254 symbols->addAlias("vec4", types.fFloat4.get()); in add_glsl_type_aliases()
256 symbols->addAlias("ivec2", types.fInt2.get()); in add_glsl_type_aliases()
257 symbols->addAlias("ivec3", types.fInt3.get()); in add_glsl_type_aliases()
258 symbols->addAlias("ivec4", types.fInt4.get()); in add_glsl_type_aliases()
260 symbols->addAlias("bvec2", types.fBool2.get()); in add_glsl_type_aliases()
261 symbols->addAlias("bvec3", types.fBool3.get()); in add_glsl_type_aliases()
262 symbols->addAlias("bvec4", types in add_glsl_type_aliases()
[all...]
/third_party/node/deps/openssl/openssl/crypto/store/
H A Dstore_strings.c23 int types = sizeof(type_strings) / sizeof(type_strings[0]); in OSSL_STORE_INFO_type_string() local
25 if (type < 1 || type > types) in OSSL_STORE_INFO_type_string()
/third_party/openssl/crypto/store/
H A Dstore_strings.c23 int types = sizeof(type_strings) / sizeof(type_strings[0]); in OSSL_STORE_INFO_type_string() local
25 if (type < 1 || type > types) in OSSL_STORE_INFO_type_string()
/third_party/icu/icu4c/source/i18n/
H A Dtznames.cpp122 void getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const override;
124 MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const override;
292 TimeZoneNamesDelegate::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const { in getDisplayNames() argument
293 fTZnamesCacheEntry->names->getDisplayNames(tzID, types, numTypes, date, dest, status); in getDisplayNames()
297 TimeZoneNamesDelegate::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { in find() argument
298 return fTZnamesCacheEntry->names->find(text, start, types, status); in find()
356 TimeZoneNames::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const { in getDisplayNames() argument
361 getTimeZoneDisplayName(tzID, types[i], dest[i]); in getDisplayNames()
366 getMetaZoneDisplayName(mzID, types[i], dest[i]); in getDisplayNames()
/third_party/node/deps/icu-small/source/i18n/
H A Dtznames.cpp122 void getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const override;
124 MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const override;
292 TimeZoneNamesDelegate::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const { in getDisplayNames() argument
293 fTZnamesCacheEntry->names->getDisplayNames(tzID, types, numTypes, date, dest, status); in getDisplayNames()
297 TimeZoneNamesDelegate::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { in find() argument
298 return fTZnamesCacheEntry->names->find(text, start, types, status); in find()
356 TimeZoneNames::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const { in getDisplayNames() argument
361 getTimeZoneDisplayName(tzID, types[i], dest[i]); in getDisplayNames()
366 getMetaZoneDisplayName(mzID, types[i], dest[i]); in getDisplayNames()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dtznames.cpp122 void getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const;
124 MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const;
292 TimeZoneNamesDelegate::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const { in getDisplayNames() argument
293 fTZnamesCacheEntry->names->getDisplayNames(tzID, types, numTypes, date, dest, status); in getDisplayNames()
297 TimeZoneNamesDelegate::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { in find() argument
298 return fTZnamesCacheEntry->names->find(text, start, types, status); in find()
356 TimeZoneNames::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes, UDate date, UnicodeString dest[], UErrorCode& status) const { in getDisplayNames() argument
361 getTimeZoneDisplayName(tzID, types[i], dest[i]); in getDisplayNames()
366 getMetaZoneDisplayName(mzID, types[i], dest[i]); in getDisplayNames()
/third_party/python/Lib/test/
H A Dtest_raise.py8 import types namespace
216 self.assertIsInstance(e.__traceback__, types.TracebackType)
242 self.assertIsInstance(tb.tb_next, types.TracebackType)
275 tb = types.TracebackType(other_tb, frame, 1, 2)
281 tb = types.TracebackType(None, frame, 1, 2)
285 types.TracebackType("no", frame, 1, 2)
288 types.TracebackType(other_tb, "no", 1, 2)
291 types.TracebackType(other_tb, frame, "no", 2)
294 types.TracebackType(other_tb, frame, 1, "nuh-uh")
/third_party/selinux/libsepol/cil/src/
H A Dcil_find.c60 if (ebitmap_get_bit(a->types, t->value)) { in cil_type_match_any()
66 if (ebitmap_get_bit(a->types, t->value)) { in cil_type_match_any()
75 } else if (ebitmap_match_any(a1->types, a2->types)) { in cil_type_match_any()
97 if (ebitmap_get_bit(a->types, t->value)) { in cil_type_matches()
103 if (ebitmap_get_bit(a->types, t->value)) { in cil_type_matches()
110 rc = ebitmap_and(matches, a1->types, a2->types); in cil_type_matches()
138 rc = ebitmap_match_any(&map, a->types); in cil_self_match_any()
/third_party/vk-gl-cts/scripts/khr_util/
H A Dregistry.py187 self.types = TypeIndex(eRegistry.findall('types/type'))
246 self.types = set()
261 modify(self.types, typeName)
294 # types[requires]
305 return parseType(registry.types[name, api])
317 return types[ePtype.text]
382 types = NameIndex(list(map(createType, spec.types)),
405 sortedTypes=sortedIndex(types)
[all...]
/foundation/arkui/ace_engine/frameworks/core/common/interaction/
H A Dinteraction_data.h94 std::vector<PreviewType> types; member
102 return types == other.types && foregroundColor == other.foregroundColor && opacity == other.opacity && in operator ==()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dimage_analyzer_adapter_impl.cpp55 // If config is not set, all types are enabled by default. in GetImageAnalyzerConfig()
57 std::vector<ImageAnalyzerType> types = {ImageAnalyzerType::SUBJECT, ImageAnalyzerType::TEXT}; in GetImageAnalyzerConfig() local
60 for (int i = 0; i < static_cast<int>(types.size()); ++i) { in GetImageAnalyzerConfig()
62 napi_create_int32(env_, static_cast<int>(types[i]), &tmpValue); in GetImageAnalyzerConfig()
65 napi_set_named_property(env_, analyzerConfig, "types", typeNapi); in GetImageAnalyzerConfig()
/third_party/ffmpeg/libavdevice/
H A Ddshow_enummediatypes.c30 AM_MEDIA_TYPE **types, unsigned long *fetched) in DECLARE_ADDREF()
34 if (!types) in DECLARE_ADDREF()
42 *types = type; in DECLARE_ADDREF()
/third_party/jerryscript/jerry-core/ext/
H A Ddebug-utils.c35 if (ECMA_PROPERTY_IS_NAMED_PROPERTY (prop_iter_p->types[i])) { in PrintObjectProperties()
36 if (ECMA_PROPERTY_GET_NAME_TYPE (prop_iter_p->types[i]) == ECMA_DIRECT_STRING_MAGIC in PrintObjectProperties()
42 ecma_string_t *prop_name = ecma_string_from_property_name (prop_iter_p->types[i], in PrintObjectProperties()

Completed in 18 milliseconds

12345678910>>...213