Home
last modified time | relevance | path

Searched refs:types (Results 176 - 200 of 5060) sorted by relevance

12345678910>>...203

/third_party/node/deps/v8/tools/debug_helper/
H A Dheap-constants.cc78 result.types.push_back(static_cast<i::InstanceType>(sub_result)); in FindKnownMapInstanceTypes()
84 result.types.push_back(static_cast<i::InstanceType>(sub_result)); in FindKnownMapInstanceTypes()
90 result.types.push_back(static_cast<i::InstanceType>(sub_result)); in FindKnownMapInstanceTypes()
/third_party/python/Lib/asyncio/
H A Dcoroutines.py8 import types namespace
29 _COROUTINE_TYPES = (types.CoroutineType, types.GeneratorType,
41 # positive types. That shouldn't ever happen, unless
85 # Built-in types might not have __qualname__ or __name__.
/third_party/python/Lib/importlib/resources/
H A D_common.py6 import types namespace
14 Package = Union[types.ModuleType, str]
26 # type: (types.ModuleType) -> Optional[ResourceReader]
43 # type: (Package) -> types.ModuleType
44 return cand if isinstance(cand, types.ModuleType) else importlib.import_module(cand)
48 # type: (Package) -> types.ModuleType
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dgen_dxgi_format_table.py113 types = {
126 found = [ctype in dxgi_format for ctype in types.keys()]
133 gltype for ctype, gltype in sorted(types.items()) if ctype in dxgi_format)
/third_party/skia/src/sfnt/
H A DSkOTUtils.h48 SK_OT_USHORT types[], in LocalizedStrings_NameTable()
50 : fTypes(types), fTypesCount(typesCount), fTypesIndex(0) in LocalizedStrings_NameTable()
60 SK_OT_USHORT types[],
47 LocalizedStrings_NameTable(std::unique_ptr<uint8_t[]> nameTableData, size_t size, SK_OT_USHORT types[], int typesCount) LocalizedStrings_NameTable() argument
/third_party/python/Lib/test/test_importlib/import_/
H A Dtest___loader__.py3 import types namespace
51 module = types.ModuleType('blah')
65 module = types.ModuleType('blah')
/third_party/rust/crates/rustix/src/io/
H A Dpipe.rs9 pub use backend::io::types::PipeFlags;
12 pub use backend::io::types::{IoSliceRaw, SpliceFlags};
30 pub const PIPE_BUF: usize = backend::io::types::PIPE_BUF;
/third_party/rust/crates/rustix/src/process/
H A Dsched.rs18 cpu_set: backend::process::types::RawCpuSet,
23 pub const MAX_CPU: usize = backend::process::types::CPU_SETSIZE;
29 cpu_set: backend::process::types::raw_cpu_set_new(), in new()
/third_party/spirv-tools/test/val/
H A Dval_arithmetics_test.cpp809 "Expected component types of Result Type and vector to be equal: " in TEST_F()
835 "Expected component types of Result Type and matrix to be equal: " in TEST_F()
943 HasSubstr("Expected component types of the operands to be equal: " in TEST_F()
1037 "Expected column types of Result Type and left matrix to be equal: " in TEST_F()
1049 HasSubstr("Expected component types of Result Type and right " in TEST_F()
1152 HasSubstr("Expected component types of the operands to be equal: " in TEST_F()
1282 const std::string types = R"( in TEST_F() local
1293 CompileSuccessfully(GenerateCoopMatCode(types, body).c_str()); in TEST_F()
1314 const std::string types = R"( in TEST_F() local
1318 CompileSuccessfully(GenerateCoopMatCode(types, "") in TEST_F()
1326 const std::string types = R"( TEST_F() local
1339 const std::string types = R"( TEST_F() local
1352 const std::string types = R"( TEST_F() local
1581 const std::string types = R"( TEST_F() local
1599 const std::string types = R"( TEST_F() local
[all...]
H A Dval_conversion_test.cpp37 const std::string& decorations = "", const std::string& types = "", in GenerateShaderCode()
164 after_decorations_before_types + types + variables + in GenerateShaderCode()
1823 const std::string types = R"( in TEST_F() local
1833 CompileSuccessfully(GenerateShaderCode(body, extensions, "", types).c_str()); in TEST_F()
1842 const std::string types = R"( in TEST_F() local
1852 CompileSuccessfully(GenerateShaderCode(body, extensions, "", types).c_str()); in TEST_F()
1861 const std::string types = R"( in TEST_F() local
1871 CompileSuccessfully(GenerateShaderCode(body, extensions, "", types).c_str()); in TEST_F()
1882 const std::string types = R"( in TEST_F() local
1892 CompileSuccessfully(GenerateShaderCode(body, extensions, "", types) in TEST_F()
1904 const std::string types = R"( TEST_F() local
1926 const std::string types = R"( TEST_F() local
[all...]
/third_party/tzdata/
H A Dlocaltime.c128 unsigned char types[TZ_MAX_TIMES]; member
339 stddst_mask = may_update_tzname_etc(stddst_mask, sp, sp->types[i]); in settzname()
500 + timecnt /* types */ in tzloadbody()
527 sp->types[i] = at <= TIME_T_MAX; in tzloadbody()
528 if (sp->types[i]) { in tzloadbody()
535 sp->types[i - 1] = 0; in tzloadbody()
548 if (sp->types[i]) in tzloadbody()
549 sp->types[timecnt++] = typ; in tzloadbody()
684 && (sp->types[sp->timecnt - 1] in tzloadbody()
685 == sp->types[s in tzloadbody()
2192 unsigned char types[TZ_MAX_TYPES]; time1() local
[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/python/Lib/
H A Dinspect.py11 isroutine() - check object types
149 import types namespace
185 annotations dict; classes, modules, and other types of
217 if isinstance(ann, types.GetSetDescriptorType):
230 elif isinstance(obj, types.ModuleType):
237 # this includes types.Function, types.BuiltinFunctionType,
238 # types.BuiltinMethodType, functools.partial, functools.singledispatch,
290 return isinstance(object, types.ModuleType)
308 return isinstance(object, types
[all...]
/base/hiviewdfx/hilog/services/hilogtool/
H A Dmain.cpp56 << " Different types of formats can be combined, such as:" << endl in FormatHelper()
72 << " Show specific type/types logs with format: type1,type2,type3" << endl in QueryHelper()
73 << " Don't show specific type/types logs with format: ^type1,type2,type3" << endl in QueryHelper()
75 << " Default types are: app,core,init,only_prerelease." << endl in QueryHelper()
107 << " Remove specific type/types logs in buffer with format: type1,type2,type3" << endl in ClearHelper()
109 << " Default types are: app,core,only_prerelease" << endl; in ClearHelper()
118 << " Query specific type/types buffer size with format: type1,type2,type3" << endl in BufferHelper()
120 << " Default types are: app,core,only_prerelease" << endl in BufferHelper()
127 << " Set specific type/types log buffer size with format: type1,type2,type3" << endl in BufferHelper()
129 << " Default types ar in BufferHelper()
320 uint16_t types; global() member
773 uint16_t types = Str2ComboLogType(arg); TypeHandler() local
[all...]
/third_party/rust/crates/cxx/gen/cmd/src/gen/
H A Dmod.rs166 let ref types = Types::collect(errors, apis);
171 check::typecheck(errors, apis, types, generator);
179 header = write::gen(apis, types, opt, true);
182 implementation = write::gen(apis, types, opt, false);
/third_party/rust/crates/cxx/gen/src/
H A Dmod.rs166 let ref types = Types::collect(errors, apis);
171 check::typecheck(errors, apis, types, generator);
179 header = write::gen(apis, types, opt, true);
182 implementation = write::gen(apis, types, opt, false);
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dmod.rs166 let ref types = Types::collect(errors, apis);
171 check::typecheck(errors, apis, types, generator);
179 header = write::gen(apis, types, opt, true);
182 implementation = write::gen(apis, types, opt, false);
/third_party/rust/crates/cxx/gen/build/src/gen/
H A Dmod.rs166 let ref types = Types::collect(errors, apis);
171 check::typecheck(errors, apis, types, generator);
179 header = write::gen(apis, types, opt, true);
182 implementation = write::gen(apis, types, opt, false);
/third_party/python/Parser/
H A Dasdl_c.py7 import types namespace
22 This function special cases the default types provided by asdl.
77 A sum is simple if it's types have no fields and itself
78 doesn't have any attributes. Instances of these types are
86 any(constructor.fields for constructor in sum_type.types)
97 types = " | ".join(type.name for type in obj.types)
100 types = sep.join(
101 asdl_of(type.name, type) for type in obj.types
103 return "{} = {}".format(name, types)
[all...]
/third_party/mesa3d/src/amd/common/
H A Dac_nir_opt_outputs.c46 nir_alu_type types; member
73 if (!(out->types & 32)) in ac_eliminate_const_output()
138 /* The types must match (only 16-bit and 32-bit types are allowed). */ in ac_eliminate_duplicated_output()
139 if ((prev->types & 16) != (cur->types & 16)) in ac_eliminate_duplicated_output()
295 if (!out_info->types) in ac_nir_optimize_outputs()
300 out_info->types |= nir_intrinsic_src_type(intr); in ac_nir_optimize_outputs()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_3_2_params.cpp97 GLenum *types, in CaptureGetDebugMessageLog_sources()
112 GLenum *types, in CaptureGetDebugMessageLog_types()
127 GLenum *types, in CaptureGetDebugMessageLog_ids()
142 GLenum *types, in CaptureGetDebugMessageLog_severities()
157 GLenum *types, in CaptureGetDebugMessageLog_lengths()
172 GLenum *types, in CaptureGetDebugMessageLog_messageLog()
92 CaptureGetDebugMessageLog_sources(const State &glState, bool isCallValid, GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog, ParamCapture *sourcesParam) CaptureGetDebugMessageLog_sources() argument
107 CaptureGetDebugMessageLog_types(const State &glState, bool isCallValid, GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog, ParamCapture *typesParam) CaptureGetDebugMessageLog_types() argument
122 CaptureGetDebugMessageLog_ids(const State &glState, bool isCallValid, GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog, ParamCapture *idsParam) CaptureGetDebugMessageLog_ids() argument
137 CaptureGetDebugMessageLog_severities(const State &glState, bool isCallValid, GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog, ParamCapture *severitiesParam) CaptureGetDebugMessageLog_severities() argument
152 CaptureGetDebugMessageLog_lengths(const State &glState, bool isCallValid, GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog, ParamCapture *lengthsParam) CaptureGetDebugMessageLog_lengths() argument
167 CaptureGetDebugMessageLog_messageLog(const State &glState, bool isCallValid, GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog, ParamCapture *messageLogParam) CaptureGetDebugMessageLog_messageLog() argument
/third_party/ltp/include/lapi/
H A Dustat.h8 #include <sys/types.h>
13 # include <linux/types.h>
/third_party/toybox/porting/liteos_a/toys/other/
H A Dreboot.c22 int types[] = {RB_AUTOBOOT, RB_HALT_SYSTEM, RB_POWER_OFF}, in reboot_main() local
26 toys.exitval = reboot(types[idx]); in reboot_main()
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/
H A DWireCmd.cpp115 //* Value types are directly in the command, objects being replaced with their IDs.
210 //* Value types are directly in the transfer record, objects being replaced with their IDs.
227 ASSERT(transfer->chain.sType == {{as_cEnum(types["s type"].name, record.name)}});
304 //* Value types are directly in the transfer record, objects being replaced with their IDs.
321 ASSERT(record->chain.sType == {{as_cEnum(types["s type"].name, record.name)}});
495 {% for sType in types["s type"].values if (
498 (types[sType.name.get()].output == out)
500 case {{as_cEnum(types["s type"].name, sType.name)}}: {
527 {% for sType in types["s type"].values if (
530 (types[sTyp
[all...]

Completed in 16 milliseconds

12345678910>>...203