Home
last modified time | relevance | path

Searched refs:name (Results 5326 - 5350 of 24626) sorted by relevance

1...<<211212213214215216217218219220>>...986

/third_party/skia/tools/calmbench/
H A Dab.py66 parser.add_argument('a', type=str, help="name of A")
67 parser.add_argument('b', type=str, help="name of B")
107 def add_time(args, name, bench, t, unit):
109 if name.startswith(args.a):
115 def append_times_from_file(args, name, filename):
127 add_time(args, name, bench, float(time_num), time_unit)
208 def run(args, threadRunner, name, nano, arg, i):
210 file_i = "%s/%s.out%d" % (args.outdir, name, i)
212 should_run = not args.noinit and not (name == args.b and args.skip_b)
219 print("Init run %d for %s..." % (i, name))
[all...]
/third_party/skia/tools/gpu/gl/angle/
H A DGLTestContext_angle.cpp52 static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) { in angle_get_gl_proc() argument
54 GrGLFuncPtr proc = (GrGLFuncPtr) SkGetProcedureAddress(libs->fGLLib, name); in angle_get_gl_proc()
58 proc = (GrGLFuncPtr) SkGetProcedureAddress(libs->fEGLLib, name); in angle_get_gl_proc()
62 return eglGetProcAddress(name); in angle_get_gl_proc()
107 GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
152 const char* name, in ANGLE_addTraceEvent()
162 phase, category_group_enabled, name, id, num_args, arg_names, arg_types, in ANGLE_addTraceEvent()
168 const char* name, in ANGLE_updateTraceEventDuration()
170 SkEventTracer::GetInstance()->updateTraceEventDuration(category_group_enabled, name, handle); in ANGLE_updateTraceEventDuration()
489 GrGLFuncPtr ANGLEGLContext::onPlatformGetProcAddress(const char* name) cons
149 ANGLE_addTraceEvent(angle::PlatformMethods* platform, char phase, const unsigned char* category_group_enabled, const char* name, unsigned long long id, double timestamp, int num_args, const char** arg_names, const unsigned char* arg_types, const unsigned long long* arg_values, unsigned char flags) ANGLE_addTraceEvent() argument
166 ANGLE_updateTraceEventDuration(angle::PlatformMethods* platform, const unsigned char* category_group_enabled, const char* name, angle::TraceEventHandle handle) ANGLE_updateTraceEventDuration() argument
[all...]
/third_party/toybox/kconfig/
H A Dmenu.c22 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno); in menu_warn()
32 fprintf(stderr, "%s:%d:warning: ", prop->file->name, prop->lineno); in prop_warn()
118 sym->name ? sym->name : "<choice>", in menu_set_type()
181 (sym2->type == S_UNKNOWN && sym_string_valid(sym, sym2->name)); in menu_range_valid_sym()
195 " must be a single symbol", sym->name); in sym_check_prop()
202 "not boolean or tristate", sym->name); in sym_check_prop()
207 sym->name, sym2->name); in sym_check_prop()
212 "tristate type", sym2->name); in sym_check_prop()
[all...]
/third_party/toybox/toys/other/
H A Dbzcat.c664 static void do_bzcat(int fd, char *name) in do_bzcat() argument
676 static void do_bunzip2(int fd, char *name) in do_bunzip2() argument
678 int outfd = 1, rename = 0, len = strlen(name); in do_bunzip2()
682 dotbz = name+len-3; in do_bunzip2()
688 else if ((fd || strcmp(name, "-")) && !(toys.optflags&FLAG_c)) { in do_bunzip2()
690 if (!dotbz || !access(name, X_OK)) { in do_bunzip2()
691 error_msg("%s exists", name); in do_bunzip2()
696 outfd = copy_tempfile(fd, name, &tmp); in do_bunzip2()
700 if (toys.optflags&FLAG_v) printf("%s:", name); in do_bunzip2()
714 if (!unlink(name)) perror_msg_ra in do_bunzip2()
[all...]
/third_party/python/Python/
H A Dmodsupport.c13 /* Package context -- the full module name for package imports */
637 PyModule_AddObjectRef(PyObject *mod, const char *name, PyObject *value) in PyModule_AddObjectRef() argument
662 if (PyDict_SetItemString(dict, name, value)) { in PyModule_AddObjectRef()
670 PyModule_AddObject(PyObject *mod, const char *name, PyObject *value) in PyModule_AddObject() argument
672 int res = PyModule_AddObjectRef(mod, name, value); in PyModule_AddObject()
680 PyModule_AddIntConstant(PyObject *m, const char *name, long value) in PyModule_AddIntConstant() argument
686 int res = PyModule_AddObjectRef(m, name, obj); in PyModule_AddIntConstant()
692 PyModule_AddStringConstant(PyObject *m, const char *name, const char *value) in PyModule_AddStringConstant() argument
698 int res = PyModule_AddObjectRef(m, name, obj); in PyModule_AddStringConstant()
710 const char *name in PyModule_AddType() local
[all...]
/third_party/rust/crates/regex/regex-capi/ctest/
H A Dtest.c124 "expected capture index %d for name 'snowman', but " in test_captures()
217 "name '%s' got '%s'\n", in test_iter_capture_name()
228 char *name; in test_iter_capture_names() local
233 bool result = rure_iter_capture_names_next(it, &name); in test_iter_capture_names()
237 "[test_iter_capture_names] expected a second name, " in test_iter_capture_names()
244 result = rure_iter_capture_names_next(it, &name); in test_iter_capture_names()
245 passed = test_iter_capture_name("year", name); in test_iter_capture_names()
250 result = rure_iter_capture_names_next(it, &name); in test_iter_capture_names()
251 passed = test_iter_capture_name("month", name); in test_iter_capture_names()
256 result = rure_iter_capture_names_next(it, &name); in test_iter_capture_names()
[all...]
/third_party/vk-gl-cts/modules/egl/
H A DteglQueryConfigTests.cpp96 GetConfigsBoundsCase (EglTestContext& eglTestCtx, const char* name, const char* description) in GetConfigsBoundsCase() argument
97 : TestCase (eglTestCtx, name, description) in GetConfigsBoundsCase()
210 GetConfigAttribCase (EglTestContext& eglTestCtx, const char* name, const char* description);
228 GetConfigAttribCase::GetConfigAttribCase (EglTestContext& eglTestCtx, const char* name, const char* description) in GetConfigAttribCase() argument
229 : TestCase (eglTestCtx, name, description) in GetConfigAttribCase()
299 GetConfigAttribSimpleCase (EglTestContext& eglTestCtx, const char* name, const char* description, EGLenum attribute) in GetConfigAttribSimpleCase() argument
300 : GetConfigAttribCase(eglTestCtx, name, description) in GetConfigAttribSimpleCase()
449 GetConfigAttribBufferSizeCase (EglTestContext& eglTestCtx, const char* name, const char* description) in GetConfigAttribBufferSizeCase() argument
450 : GetConfigAttribCase(eglTestCtx, name, description) in GetConfigAttribBufferSizeCase()
519 GetConfigAttribTransparentValueCase (EglTestContext& eglTestCtx, const char* name, cons argument
[all...]
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Dui_ability_test.cpp62 * @tc.name: GetUIAbilityName
69 abilityInfo->name = "UIability"; in HWTEST_F()
71 std::shared_ptr<EventRunner> eventRunner = EventRunner::Create(abilityInfo->name); in HWTEST_F()
77 EXPECT_STREQ(abilityInfo->name.c_str(), ability_->GetAbilityName().c_str()); in HWTEST_F()
95 * @tc.name: GetAbilityName
103 std::shared_ptr<EventRunner> eventRunner = EventRunner::Create(abilityInfo->name); in HWTEST_F()
106 std::string name = "LOL"; in HWTEST_F() local
107 abilityInfo->name = name; in HWTEST_F()
111 EXPECT_STREQ(ability_->GetAbilityName().c_str(), name in HWTEST_F()
127 std::string name = "LOL"; HWTEST_F() local
[all...]
/third_party/backends/backend/
H A Dsnapscan-options.c73 /* predefined preview mode name */
76 /* predefined focus mode name */
340 po[OPT_COUNT].name = SANE_NAME_NUM_OPTIONS; in init_options()
361 po[OPT_SCANRES].name = SANE_NAME_SCAN_RESOLUTION; in init_options()
409 po[OPT_PREVIEW].name = SANE_NAME_PREVIEW; in init_options()
420 po[OPT_HIGHQUALITY].name = "high-quality"; in init_options()
437 po[OPT_BRIGHTNESS].name = SANE_NAME_BRIGHTNESS; in init_options()
448 po[OPT_CONTRAST].name = SANE_NAME_CONTRAST; in init_options()
459 po[OPT_MODE].name = SANE_NAME_SCAN_MODE; in init_options()
481 po[OPT_PREVIEW_MODE].name in init_options()
[all...]
H A Dv4l.c131 if (strcmp (dev->sane.name, devname) == 0) in attach()
158 DBG (2, "attach: found videodev `%s' on `%s'\n", capability.name, in attach()
175 dev->sane.name = strdup (devname); in attach()
176 if (!dev->sane.name) in attach()
179 dev->sane.model = strdup (capability.name); in attach()
280 s->opt[OPT_MODE].name = SANE_NAME_SCAN_MODE; in init_options()
299 s->opt[OPT_CHANNEL].name = "channel"; in init_options()
328 s->opt[OPT_TL_X].name = SANE_NAME_SCAN_TL_X; in init_options()
339 s->opt[OPT_TL_Y].name = SANE_NAME_SCAN_TL_Y; in init_options()
350 s->opt[OPT_BR_X].name in init_options()
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsinfo.c388 * return multi-byte string containing the attribute name if exist. the user
390 * null if no name exists (attr->name_length==0). no memory allocated.
400 /* Get name in unicode. */ in ntfs_attr_get_name_mbs()
413 const char *name; in reparse_type_name() local
419 name = " (mount point)"; in reparse_type_name()
422 name = " (symlink)"; in reparse_type_name()
425 name = " (Wof compressed)"; in reparse_type_name()
428 name = " (deduplicated)"; in reparse_type_name()
431 name = " (Windows container)"; in reparse_type_name()
434 name in reparse_type_name()
806 char *name = NULL; ntfs_dump_attr_list() local
1251 ntfschar *name; ntfs_dump_sds() local
1934 ntfschar *name; ntfs_dump_attr_index_allocation() local
2017 const char *name; ntfs_dump_attr_reparse_point() local
[all...]
/third_party/node/deps/v8/src/execution/
H A Disolate.h429 #define FIELD_ACCESSOR(type, name) \
430 inline void set_##name(type v) { name##_ = v; } \
431 inline type name() const { return name##_; }
520 #define THREAD_LOCAL_TOP_ACCESSOR(type, name) \
521 inline void set_##name(type v) { thread_local_top()->name##_ = v; } \
522 inline type name() const { return thread_local_top()->name##
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp261 const std::string& name,
292 const std::string& name,
330 const char* const name; in populateTestGroup() member
345 addFunctionTestCase(bufferGroup.get(), bufferCases[ndx].name, "", bufferCases[ndx].flags); in populateTestGroup()
363 const std::string& name, in addFunctionTestCase()
367 addFunctionCase(group, name, desc, checkSupportBufferMemoryRequirementsOriginal, testEntryPoint, arg0); in addFunctionTestCase()
530 const std::string& name,
557 const std::string& name, in addFunctionTestCase()
561 addFunctionCase(group, name, desc, checkSupportBufferMemoryRequirementsExtended, testEntryPoint, arg0); in addFunctionTestCase()
589 const std::string& name,
362 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, VkBufferCreateFlags arg0) addFunctionTestCase() argument
556 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, VkBufferCreateFlags arg0) addFunctionTestCase() argument
629 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, VkBufferCreateFlags arg0) addFunctionTestCase() argument
732 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, VkBufferCreateFlags arg0) addFunctionTestCase() argument
880 const char* const name; populateTestGroup() member
940 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, const ImageTestParams arg0) addFunctionTestCase() argument
1620 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, const ImageTestParams arg0) addFunctionTestCase() argument
1673 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, const ImageTestParams arg0) addFunctionTestCase() argument
1750 addFunctionTestCase(tcu::TestCaseGroup* group, const std::string& name, const std::string& desc, const ImageTestParams arg0) addFunctionTestCase() argument
2075 const char* const name; populateMultiplaneTestGroup() member
2088 const char* name; populateMultiplaneTestGroup() member
2102 const std::string name = std::string(imageFlagsCases[flagsNdx].name) + "_" + tilings[tilingNdx].name; populateMultiplaneTestGroup() local
[all...]
/test/xts/acts/ai/nnrtndk/entry/src/main/cpp/
H A Dnnrtndk.cpp483 const char *name = nullptr; in OHNNCompilationSetDeviceOne() local
484 OH_NNDevice_GetName(devicesID[PARAM_0], &name); in OHNNCompilationSetDeviceOne()
485 NAPI_ASSERT(env, name != nullptr, "OH_NNDevice_GetName Error"); in OHNNCompilationSetDeviceOne()
526 const char *name = nullptr; in OHNNCompilationSetCacheOne() local
527 OH_NNDevice_GetName(devicesID[PARAM_0], &name); in OHNNCompilationSetCacheOne()
528 NAPI_ASSERT(env, name != nullptr, "OH_NNDevice_GetAllDevicesID Error"); in OHNNCompilationSetCacheOne()
581 const char *name = nullptr; in OHNNCompilationSetPerformanceModeOne() local
582 OH_NNDevice_GetName(devicesID[PARAM_0], &name); in OHNNCompilationSetPerformanceModeOne()
583 NAPI_ASSERT(env, name != nullptr, "OH_NNDevice_GetName Error"); in OHNNCompilationSetPerformanceModeOne()
629 const char *name in OHNNCompilationSetPerformanceModeTwo() local
674 const char *name = nullptr; OHNNCompilationSetPerformanceModeThree() local
737 const char *name = nullptr; OHNNCompilationSetPriorityOne() local
791 const char *name = nullptr; OHNNCompilationEnableFloat16One() local
847 const char *name = nullptr; OHNNCompilationBuildOne() local
928 const char *name = nullptr; OHNNExecutorConstructOne() local
988 const char *name = nullptr; OHNNExecutorSetInputOne() local
1053 const char *name = nullptr; OHNNExecutorSetOutputOne() local
1125 const char *name = nullptr; OHNNExecutorGetOutputShapeOne() local
1210 const char *name = nullptr; OHNNExecutorRunOne() local
1285 const char *name = nullptr; OHNNExecutorAllocateInputMemoryOne() local
1346 const char *name = nullptr; OHNNExecutorAllocateOutputMemoryOne() local
1409 const char *name = nullptr; OHNNExecutorDestroyInputMemory() local
1458 const char *name = nullptr; OHNNExecutorDestroyOutputMemory() local
1509 const char *name = nullptr; OHNNExecutorSetInputWithMemoryOne() local
1576 const char *name = nullptr; OHNNExecutorSetOutputWithMemoryOne() local
1640 const char *name = nullptr; OHNNExecutorDestroy() local
1728 const char *name = nullptr; OHNNDeviceGetNameOne() local
1745 const char *name = nullptr; OHNNDeviceGetNameTwo() local
[all...]
/third_party/icu/icu4c/source/common/
H A Duresbund.cpp80 * Internal function, gets parts of locale name according
83 static UBool chopLocale(char *name) { in chopLocale() argument
84 char *i = uprv_strrchr(name, '_'); in chopLocale()
184 * Open a resource bundle for the exact bundle name as requested;
198 * @param name In-out parameter: On input, the locale ID to get a parent locale ID for (this is a locale's base name, without keywords); on output, the
200 * @param origName The original locale ID the caller of findFirstExisting() requested. This is the same as `name` on the first call to this function,
203 static bool getParentLocaleID(char *name, const char *origName, UResOpenType openType) { in getParentLocaleID() argument
205 if (name[uprv_strlen(name) in getParentLocaleID()
295 mayHaveParent(char *name) mayHaveParent() argument
487 setEntryName(UResourceDataEntry *res, const char *name, UErrorCode *status) setEntryName() argument
516 const char *name; init_entry() local
662 findFirstExisting(const char* path, char* name, const char* defaultLocale, UResOpenType openType, UBool *isRoot, UBool *foundParent, UBool *isDefault, UErrorCode* status) findFirstExisting() argument
742 loadParentsExceptRoot(UResourceDataEntry *&t1, char name[], int32_t nameCapacity, UBool usingUSRData, char usrDataPath[], UErrorCode *status) loadParentsExceptRoot() argument
821 char name[ULOC_FULLNAME_CAPACITY]; entryOpen() local
998 char name[ULOC_FULLNAME_CAPACITY]; entryOpenDirect() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Duresbund.cpp81 * Internal function, gets parts of locale name according
84 static UBool chopLocale(char *name) { in chopLocale() argument
85 char *i = uprv_strrchr(name, '_'); in chopLocale()
185 * Open a resource bundle for the exact bundle name as requested;
199 * @param name In-out parameter: On input, the locale ID to get a parent locale ID for (this is a locale's base name, without keywords); on output, the
201 * @param origName The original locale ID the caller of findFirstExisting() requested. This is the same as `name` on the first call to this function,
204 static bool getParentLocaleID(char *name, const char *origName, UResOpenType openType) { in getParentLocaleID() argument
206 size_t nameLen = uprv_strlen(name); in getParentLocaleID()
207 if (!nameLen || name[nameLe in getParentLocaleID()
297 mayHaveParent(char *name) mayHaveParent() argument
489 setEntryName(UResourceDataEntry *res, const char *name, UErrorCode *status) setEntryName() argument
518 const char *name; init_entry() local
664 findFirstExisting(const char* path, char* name, const char* defaultLocale, UResOpenType openType, UBool *isRoot, UBool *foundParent, UBool *isDefault, UErrorCode* status) findFirstExisting() argument
744 loadParentsExceptRoot(UResourceDataEntry *&t1, char name[], int32_t nameCapacity, UBool usingUSRData, char usrDataPath[], UErrorCode *status) loadParentsExceptRoot() argument
823 char name[ULOC_FULLNAME_CAPACITY]; entryOpen() local
1000 char name[ULOC_FULLNAME_CAPACITY]; entryOpenDirect() local
[all...]
/third_party/elfutils/src/
H A Delflint.c218 fputs (_("Missing file name.\n"), stderr); in parse_opt()
254 /* Create the full name of the file. */ in process_file()
708 const char *name = "<invalid>"; in check_symtab() local
710 name = ""; in check_symtab()
713 section [%2d] '%s': symbol %zu: invalid name value\n"), in check_symtab()
717 name = elf_strptr (ebl->elf, shdr->sh_link, sym->st_name); in check_symtab()
718 if (name == NULL) in check_symtab()
719 name = ""; in check_symtab()
729 idx, section_name (ebl, idx), cnt, name); in check_symtab()
735 xndxscnidx, section_name (ebl, xndxscnidx), cnt, name, in check_symtab()
1406 const char *name; check_one_reloc() local
2777 const char *name; section_flags_string() member
2895 const char *name; global() member
2903 add_version(const char *objname, const char *name, GElf_Versym ndx, int type) add_version() argument
3264 const char *name; check_verdef() member
3318 const char *name = elf_strptr (ebl->elf, shdr->sh_link, aux->vda_name); check_verdef() local
3489 const unsigned char *name = p + sizeof len; check_attributes() local
3628 const char *name; global() member
[all...]
/third_party/node/deps/v8/src/parsing/
H A Dparser-base.h27 #include "src/parsing/func-name-inferrer.h"
640 name(parser->impl()->NullIdentifier()), in ParsePropertyInfo()
651 // one which must occur after a property name, indicating that the in ParsePropertyKindFromToken()
652 // previous token was in fact a name and not a modifier (like the "get" in in ParsePropertyKindFromToken()
681 IdentifierT name; member
765 std::string name = ".class-field-" + std::to_string(index); in ClassFieldVariableName() local
766 return ast_value_factory->GetOneByteString(name.c_str()); in ClassFieldVariableName()
840 VariableProxy* NewRawVariable(const AstRawString* name, int pos) { in NewRawVariable() argument
842 name, NORMAL_VARIABLE, pos); in NewRawVariable()
845 VariableProxy* NewUnresolved(const AstRawString* name) { in NewUnresolved() argument
850 NewUnresolved(const AstRawString* name, int begin_pos, VariableKind kind = NORMAL_VARIABLE) NewUnresolved() argument
938 PeekContextualKeyword(const AstRawString* name) PeekContextualKeyword() argument
944 CheckContextualKeyword(const AstRawString* name) CheckContextualKeyword() argument
952 ExpectContextualKeyword(const AstRawString* name, const char* fullname = nullptr, int pos = -1) ExpectContextualKeyword() argument
1297 const AstRawString* name = decl->var()->raw_name(); CheckConflictingVarDeclarations() local
1692 IdentifierT name = impl()->GetIdentifier(); ParseAndClassifyIdentifier() local
1766 IdentifierT name; ParsePropertyOrPrivatePropertyName() local
1858 IdentifierT name = ParseAndClassifyIdentifier(Next()); ParseBindingPattern() local
1928 IdentifierT name = ParseAndClassifyIdentifier(token); ParsePrimaryExpression() local
1937 IdentifierT name = ParseAndClassifyIdentifier(token); ParsePrimaryExpression() local
2588 IdentifierT name = prop_info->name; ParseObjectPropertyDefinition() local
3643 IdentifierT name = impl()->NullIdentifier(); ParseFunctionExpression() local
4003 IdentifierT name; ParseVariableDeclarations() local
4175 IdentifierT name; ParseHoistableDeclaration() local
4246 IdentifierT name = impl()->NullIdentifier(); ParseClassDeclaration() local
4277 IdentifierT name = ParseIdentifier(); ParseNativeDeclaration() local
4660 const char* name = "arrow function"; ParseArrowFunctionLiteral() local
4674 IdentifierT name = impl()->NullIdentifier(); ParseClassExpression() local
4688 ParseClassLiteral( Scope* outer_scope, IdentifierT name, Scanner::Location class_name_location, bool name_is_strict_reserved, int class_token_pos) ParseClassLiteral() argument
4866 IdentifierT name = impl()->NullIdentifier(); ParseAsyncFunctionLiteral() local
5088 IdentifierT name = ParseIdentifier(); ParseV8Intrinsic() local
5949 const AstRawString* name = catch_info.variable->raw_name(); ParseTryStatement() local
6488 CheckClassMethodName(IdentifierT name, ParsePropertyKind type, ParseFunctionFlags flags, bool is_static, bool* has_seen_constructor) CheckClassMethodName() argument
6525 CheckClassFieldName(IdentifierT name, bool is_static) CheckClassFieldName() argument
[all...]
/third_party/libdrm/
H A Dxf86drm.c708 * card with "open by name" in drmMatchBusID()
775 * Assembles the device name from \p minor and opens it, creating the device
797 drmMsg("drmOpenDevice: node name is %s\n", buf); in drmOpenDevice()
895 * name from \p minor and opens it.
967 char name[SPECNAMELEN]; in drmGetMinorType() local
970 if (!devname_r(makedev(major, minor), S_IFCHR, name, sizeof(name))) in drmGetMinorType()
973 if (sscanf(name, "drm/%d", &id) != 1) { in drmGetMinorType()
974 // If not in /dev/drm/ we have the type in the name in drmGetMinorType()
975 if (sscanf(name, "dr in drmGetMinorType()
1093 drmOpenByName(const char *name, int type) drmOpenByName() argument
1181 drmOpen(const char *name, const char *busid) drmOpen() argument
1202 drmOpenWithType(const char *name, const char *busid, int type) drmOpenWithType() argument
3354 const char *name = drmGetMinorName(type); drmGetMinorNameForFD() local
3524 char *name; get_subsystem_type() local
3526 const char *name; get_subsystem_type() member
3748 drmGetNodeType(const char *name) drmGetNodeType() argument
4235 char path[PATH_MAX + 1], *name, *tmp_name; drmParseOFBusInfo() local
[all...]
/third_party/curl/lib/
H A Dcookie.c118 free(co->name); in freecookie()
474 * sometimes we get an IP-only host name, and that might also be a numerical
531 /* we have a <name>=<value> pair or a stand-alone word here */ in Curl_cookie_add()
541 /* trim trailing spaces and tabs after name */ in Curl_cookie_add()
574 * Check for too long individual name or contents, or too long in Curl_cookie_add()
575 * combination of name + contents. Chrome and Firefox support 4095 or in Curl_cookie_add()
581 infof(data, "oversized cookie dropped, name/val %zu + %zu bytes", in Curl_cookie_add()
588 * otherwise have to test for the prefix in both the cookie name and in Curl_cookie_add()
605 if(!co->name) { in Curl_cookie_add()
606 /* The very first name/valu in Curl_cookie_add()
[all...]
/third_party/gn/src/gn/
H A Dxcode_object.cc166 // identifier instead of a reference (i.e. identitifer and name). This
245 const char* name, in PrintProperty()
250 out << name << " = "; in PrintProperty() local
390 PBXTarget::PBXTarget(const std::string& name, in PBXTarget() argument
396 name_(name) { in PBXTarget()
399 std::make_unique<PBXShellScriptBuildPhase>(name, shell_script)); in PBXTarget()
434 PBXAggregateTarget::PBXAggregateTarget(const std::string& name, in PBXAggregateTarget() argument
438 : PBXTarget(name, shell_script, configs, attributes) {} in PBXAggregateTarget()
454 PrintProperty(out, rules, "name", name_); in Print()
516 PBXFileReference::PBXFileReference(const std::string& name, in PBXFileReference() argument
243 PrintProperty(std::ostream& out, IndentRules rules, const char* name, ValueType&& value) PrintProperty() argument
588 PBXGroup(const std::string& path, const std::string& name) PBXGroup() argument
717 PBXNativeTarget(const std::string& name, const std::string& shell_script, const std::vector<std::string>& configs, const PBXAttributes& attributes, const std::string& product_type, const std::string& product_name, const PBXFileReference* product_reference) PBXNativeTarget() argument
776 PBXProject(const std::string& name, std::vector<std::string> configs, const std::string& source_path, const PBXAttributes& attributes) PBXProject() argument
812 AddAggregateTarget(const std::string& name, const std::string& output_dir, const std::string& shell_script) AddAggregateTarget() argument
845 AddNativeTarget( const std::string& name, const std::string& type, const std::string& output_name, const std::string& output_type, const std::string& output_dir, const std::string& shell_script, const PBXAttributes& extra_attributes) AddNativeTarget() argument
974 PBXShellScriptBuildPhase( const std::string& name, const std::string& shell_script) PBXShellScriptBuildPhase() argument
1070 XCBuildConfiguration(const std::string& name, const PBXAttributes& attributes) XCBuildConfiguration() argument
[all...]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DRBManager.java31 private String currentUser; // The name of the person currently using the editor
32 private String baseClass; // The name of the base class of the active resource bundle
71 * This constructor creates an entirely blank RBManager and base Bundle. Only the base class name is defined.
138 // Starts with the base class name and ends in proper suffix (above) in RBManager()
139 // Base name is followed by . or _ (below) in RBManager()
199 o = descriptors.get("file"); if (o != null) dict.name = ((String) o); in RBManager()
237 // Grab the name and value (translation) from the line in RBManager()
301 o = descriptors.get("file"); if (o != null) dict.name = ((String) o); in RBManager()
339 // Grab the name and value (translation) from the line in RBManager()
467 public boolean editItem(BundleItem item, String name, Strin argument
509 createItem(String name, String value, String groupName, String comment, Hashtable lookups) createItem() argument
[all...]
/third_party/mesa3d/src/compiler/clc/
H A Dclc_helpers.cpp98 std::string name; member in SPIRVKernelArg
108 : funcId(fid), name(nm), vecHint(0), localSize(), localSizeHint() { } in SPIRVKernelInfo()
112 std::string name; member in SPIRVKernelInfo
148 const char *name = reinterpret_cast<const char *>(ins->words + op->offset); in parseEntryPoint() local
150 kernels.push_back(SPIRVKernelInfo(funcId, name)); in parseEntryPoint()
192 const char *name; in parseName() local
202 name = reinterpret_cast<const char *>(ins->words + op->offset); in parseName()
206 if (arg.id == id && arg.name.empty()) { in parseName()
207 arg.name = name; in parseName()
[all...]
/third_party/libinput/src/
H A Dquirks.c139 char *name; member
162 char *name; /* the [Section Name] */ member
495 section_new(const char *path, const char *name) in section_new() argument
500 xasprintf(&s->name, "%s (%s)", name, basename(path_dup)); in section_new()
513 free(s->name); in section_destroy()
514 free(s->match.name); in section_destroy()
562 s->match.name = safe_strdup(value); in parse_match()
608 s->name); in parse_match()
680 qlog_error(ctx, "Unknown key %s in %s\n", key, s->name); in parse_model()
[all...]
/third_party/python/Lib/test/
H A Dtest_pydoc.py463 # Treat illegal (non-str) name like no name
914 # The package name is still matched
1094 for name in ('str', 'str.translate', 'builtins.str',
1097 self.assertIsNotNone(pydoc.locate(name))
1100 pydoc.render_doc(name)
1102 self.fail('finding the doc of {!r} failed'.format(name))
1104 for name in ('notbuiltins', 'strrr', 'strr.translate',
1107 self.assertIsNone(pydoc.locate(name))
1108 self.assertRaises(ImportError, pydoc.render_doc, name)
[all...]

Completed in 48 milliseconds

1...<<211212213214215216217218219220>>...986