/third_party/skia/src/sksl/codegen/ |
H A D | SkSLMetalCodeGenerator.cpp | 62 virtual void visitTexture(const Type& type, skstd::string_view name) = 0; 63 virtual void visitSampler(const Type& type, skstd::string_view name) = 0; 93 this->writeLine("#extension " + ext.name() + " : enable"); in writeExtension() 114 return String(type.name()); in typeName() 120 this->writeLine("struct " + type.name() + " {"); in writeStructDefinition() 200 String name = "_skOutParamHelper" + to_string(fSwizzleHelperCount++) + in getOutParamHelper() local 216 this->write(name); in getOutParamHelper() 224 // once, and avoid reusing the variable name. (In those cases we can actually just ignore the in getOutParamHelper() 225 // redundant input parameter entirely, and not give it any name.) in getOutParamHelper() 278 bool hasResult = (call.type().name() ! in getOutParamHelper() 454 auto name = String::printf("mat%d_inverse", type.columns()); getInversePolyfill() local 487 String name = "matrixCompMult"; writeMatrixCompMult() local 506 String name = "outerProduct"; writeOuterProduct() local 1039 String name; getMatrixConstructHelper() local 1148 String name = "array_of_" + outTypeName + "_from_" + inTypeName; writeConstructorArrayCast() local 1178 String name = String::printf("%s4_from_%s2x2", baseType.c_str(), baseType.c_str()); getVectorFromMat2x2ConstructorHelper() local 2070 writeName(skstd::string_view name) writeName() argument [all...] |
/third_party/backends/backend/ |
H A D | pieusb_specific.c | 203 * @param name Device name which has required vendor and product id 220 if (strcmp (dev->sane.name, devicename) == 0) { in sanei_pieusb_find_device_callback() 317 dev->sane.name = strdup(devicename); in pieusb_initialize_device_definition() 639 scanner->opt[OPT_NUM_OPTS].name = SANE_NAME_NUM_OPTIONS; in sanei_pieusb_init_options() 654 scanner->opt[OPT_MODE].name = SANE_NAME_SCAN_MODE; in sanei_pieusb_init_options() 664 scanner->opt[OPT_BIT_DEPTH].name = SANE_NAME_BIT_DEPTH; in sanei_pieusb_init_options() 674 scanner->opt[OPT_RESOLUTION].name = SANE_NAME_SCAN_RESOLUTION; in sanei_pieusb_init_options() 684 scanner->opt[OPT_HALFTONE_PATTERN].name = SANE_NAME_HALFTONE_PATTERN; in sanei_pieusb_init_options() 695 scanner->opt[OPT_THRESHOLD].name in sanei_pieusb_init_options() [all...] |
/third_party/protobuf/src/google/protobuf/compiler/js/ |
H A D | js_generator.cc | 15 // * Neither the name of Google Inc. nor the names of its 155 // We'll worry about this problem if/when we actually see it. This name isn't in ModuleAlias() 177 // Returns the name of the message with a leading dot and taking into account 218 return GetMessagePathPrefix(options, descriptor) + descriptor->name(); in GetMessagePath() 233 return GetEnumPathPrefix(options, enum_descriptor) + enum_descriptor->name(); in GetEnumPath() 243 // the global name. in MaybeCrossFileRef() 244 return ModuleAlias(to_message->file()->name()) + in MaybeCrossFileRef() 246 to_message->name(); in MaybeCrossFileRef() 248 // Within a single file we use a full name. in MaybeCrossFileRef() 259 // - Object field name 503 std::string name = JSIdent(options, field, JSObjectFieldName() local 533 std::string name = JSIdent(options, field, JSGetterName() local 1092 std::string name = field->type_name(); JSBinaryReaderMethodType() local 1101 std::string name = JSBinaryReaderMethodType(field); JSBinaryReadWriteMethodName() local 1308 std::string type, name; FieldDefinition() local 1686 std::string name = GetMessagePath(options, oneof->containing_type()) + "." + FindProvidesForOneOfEnum() local 1712 std::string name = GetMessagePath(options, desc); FindProvidesForMessage() local 1729 std::string name = GetEnumPath(options, enumdesc); FindProvidesForEnum() local 1744 std::string name = GetNamespace(options, field->file()) + "." + FindProvidesForFields() local 3656 const std::string& name = file->dependency(i)->name(); GenerateFile() local 3709 std::string name = std::string("google/protobuf/") + toc->name; GenerateFile() local [all...] |
/foundation/communication/dsoftbus/core/frame/small/client_manager/include/ |
H A D | softbus_client_info_manager.h | 28 int SERVER_RegisterService(const char *name, const struct CommonScvId *svcId); 30 int SERVER_GetIdentityByPkgName(const char *name, struct CommonScvId *svcId); 32 void SERVER_UnregisterService(const char *name);
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_anull.c | 32 .name = "default", 39 .name = "default", 45 .name = "anull",
|
H A D | vf_null.c | 31 .name = "default", 38 .name = "default", 44 .name = "null",
|
/third_party/jerryscript/tests/jerry-test-suite/es2015/25/25.04/25.04.03/ |
H A D | 25.04.03-002.js | 27 name1 = e.name; 36 name2 = e.name; 45 name3 = e.name;
|
/third_party/node/deps/v8/src/objects/ |
H A D | code-kind.cc | 12 #define CASE(name) \ in CodeKindToString() 13 case CodeKind::name: \ in CodeKindToString() 14 return #name; in CodeKindToString()
|
/third_party/mesa3d/src/tool/pps/ |
H A D | pps_counter.cc | 19 Counter::Counter(int32_t id, const std::string &name, int32_t group) in Counter() argument 21 , name {name}
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | OriginalNameAttribute.cs | 16 // * Neither the name of Google Inc. nor the names of its 38 /// Specifies the original name (in the .proto file) of a named element, 45 /// The name of the element in the .proto file. 50 /// If the name is preferred in the .proto file. 55 /// Constructs a new attribute instance for the given name. 57 /// <param name="name">The name of the element in the .proto file.</param> 58 public OriginalNameAttribute(string name) in OriginalNameAttribute() argument 60 Name = ProtoPreconditions.CheckNotNull(name, nameo in OriginalNameAttribute() [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | __init__.py | 23 globals().update((name, getattr(context._default_context, name)) for name in __all__)
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_getcwdu.py | 14 power< 'os' trailer< dot='.' name='getcwdu' > any* > 18 name = results["name"] 19 name.replace(Name("getcwd", prefix=name.prefix))
|
H A D | fix_raw_input.py | 12 power< name='raw_input' trailer< '(' [any] ')' > any* > 16 name = results["name"] 17 name.replace(Name("input", prefix=name.prefix))
|
H A D | fix_buffer.py | 17 power< name='buffer' trailer< '(' [any] ')' > any* > 21 name = results["name"] 22 name.replace(Name("memoryview", prefix=name.prefix))
|
H A D | fix_nonzero.py | 13 funcdef< 'def' name='__nonzero__' 19 name = results["name"] 20 new = Name("__bool__", prefix=name.prefix) 21 name.replace(new)
|
/third_party/skia/src/gpu/gl/glx/ |
H A D | GrGLMakeGLXInterface.cpp | 16 static GrGLFuncPtr glx_get(void* ctx, const char name[]) { in glx_get() argument 19 if (0 == strncmp(name, "egl", 3)) { in glx_get() 25 return glXGetProcAddress(reinterpret_cast<const GLubyte*>(name)); in glx_get()
|
/third_party/python/Lib/test/ |
H A D | xmltests.py | 9 def runtest(name): 10 __import__(name) 11 module = sys.modules[name]
|
/third_party/typescript/tests/baselines/reference/ |
H A D | import_unneeded-require-when-referenecing-aliased-type-throug-array.js | 6 name: string; 15 var p = testData[0].name; 24 var p = testData[0].name;
|
/third_party/python/PCbuild/ |
H A D | rmpyc.py | 10 for name in files: 12 if name.endswith(('.pyc', '.pyo')): 14 os.remove(join(root, name))
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | x11prop.h | 28 void pa_x11_set_prop(xcb_connection_t *xcb, int screen, const char *name, const char *data); 29 void pa_x11_del_prop(xcb_connection_t *xcb, int screen, const char *name); 30 char* pa_x11_get_prop(xcb_connection_t *xcb, int screen, const char *name, char *p, size_t l);
|
/third_party/rust/crates/syn/examples/lazy-static/example/src/ |
H A D | main.rs | 17 fn validate(name: &str) { in validate() 19 println!("is_match({:?}): {}", name, USERNAME.is_match(name)); in validate()
|
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 338 function getCollectionImplementation(name, nativeFactory, shimFactory) { 344 throw new Error("TypeScript requires an environment that provides a compatible native ".concat(name, " implementation.")); 1464 var name = names_1[_i]; 1465 pushIfUnique(result, name); 1878 // We convert the file names to lower case as key for file name on case insensitive file system 1903 * This function is used in places where we want to make file name as a key on these systems 1904 * It is possible on mac to be able to refer to file name with I with dot on top as a fileName with its lower case form 2196 * Given a name and a list of names that are *not* equal to the name, return a spelling suggestion if there is one that is close enough. 2201 * * With no name [all...] |
/device/soc/rockchip/common/sdk_linux/drivers/thermal/ |
H A D | thermal_core.c | 56 static struct thermal_governor *__find_governor(const char *name) in __find_governor() argument 60 if (!name || !name[0]) { in __find_governor() 65 governor_list) if (!strncasecmp(name, pos->name, THERMAL_NAME_LENGTH)) return pos; in __find_governor() 73 * @failed_gov_name: the name of the governor that failed to register 85 failed_gov_name, tz->governor->name, tz->type); in bind_previous_governor() 111 bind_previous_governor(tz, new_gov->name); in thermal_set_governor() 125 const char *name; in thermal_register_governor() local 135 if (!__find_governor(governor->name)) { in thermal_register_governor() 1614 thermal_zone_get_zone_by_name(const char *name) thermal_zone_get_zone_by_name() argument [all...] |
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/ |
H A D | extension_ability_thread_test.cpp | 54 * @tc.name: ExtensionAbilityThread_DumpAbilityInfo_0100 67 abilityInfo->name = "ExtensionAbility"; in HWTEST_F() 72 std::shared_ptr<EventRunner> mainRunner = EventRunner::Create(abilityInfo->name); in HWTEST_F() 88 * @tc.name: DumpAbilityInfo 110 * @tc.name: DumpAbilityInfo 130 * @tc.name: Attach 141 abilityInfo->name = "ExtensionAbility"; in HWTEST_F() 148 std::shared_ptr<EventRunner> mainRunner = EventRunner::Create(abilityInfo->name); in HWTEST_F() 158 * @tc.name: Attach 169 abilityInfo->name in HWTEST_F() [all...] |
/foundation/distributedhardware/distributed_input/interfaces/ipc/test/fuzztest/distributedinputstub_fuzzer/ |
H A D | distributedinputstub_fuzzer.cpp | 63 std::string name(reinterpret_cast<const char*>(data), size); in AddWhiteListInfosCallbackStubFuzzTest() 66 pdata.WriteString(name); in AddWhiteListInfosCallbackStubFuzzTest() 102 std::string name(reinterpret_cast<const char*>(data), size); in DelWhiteListInfosCallbackStubFuzzTest() 105 pdata.WriteString(name); in DelWhiteListInfosCallbackStubFuzzTest() 457 std::string name(reinterpret_cast<const char*>(data), size); in GetSinkScreenInfosCallbackStubFuzzTest() 460 pdata.WriteString(name); in GetSinkScreenInfosCallbackStubFuzzTest() 511 std::string name(reinterpret_cast<const char*>(data), size); in InputNodeListenerStubFuzzTest() 514 pdata.WriteString(name); in InputNodeListenerStubFuzzTest() 558 std::string name(reinterpret_cast<const char*>(data), size); in PrepareDInputCallbackStubFuzzTest() 561 pdata.WriteString(name); in PrepareDInputCallbackStubFuzzTest() [all...] |