/third_party/jerryscript/tests/jerry/es2015/ |
H A D | regression-test-issue-1995.js | 15 var name = ""; variable 23 name = e.name; 26 assert(name === "TypeError");
|
H A D | regression-test-issue-1616.js | 15 var name = ""; variable 23 name = e.name; 26 assert(name === "RangeError");
|
/third_party/typescript/tests/baselines/reference/ |
H A D | dynamicRequire.js | 2 function foo(name) { 3 var s = require("t/" + name) 7 function foo(name) {
8 var s = require("t/" + name);
|
/third_party/rust/crates/cxx/macro/src/ |
H A D | expand.rs | 73 let ident = &ety.name.rust; in expand() 155 let ident = &strct.name.rust; in expand_struct() 159 let type_id = type_id(&strct.name); in expand_struct() 199 let ident = &strct.name.rust; in expand_struct_operators() 207 let link_name = mangle::operator(&strct.name, "eq"); in expand_struct_operators() 208 let local_name = format_ident!("__operator_eq_{}", strct.name.rust); in expand_struct_operators() 209 let prevent_unwind_label = format!("::{} as PartialEq>::eq", strct.name.rust); in expand_struct_operators() 220 let link_name = mangle::operator(&strct.name, "ne"); in expand_struct_operators() 221 let local_name = format_ident!("__operator_ne_{}", strct.name.rust); in expand_struct_operators() 222 let prevent_unwind_label = format!("::{} as PartialEq>::ne", strct.name in expand_struct_operators() [all...] |
/third_party/libwebsockets/lib/misc/threadpool/ |
H A D | threadpool.c | 48 char name[32]; member 91 char name[32]; member 134 task->name, ms_delta(now, task->created)); in __lws_threadpool_task_dump() 149 "run: %d%%, sync: %d%%)", task->name, task->status, in __lws_threadpool_task_dump() 163 "ran: %d%%, synced: %d%%)", task->name, task->status, in __lws_threadpool_task_dump() 183 tp->name, tp->queue_depth, tp->running_tasks, in lws_threadpool_dump() 287 tp->name, lws_wsi_tag(task_to_wsi(task))); in __lws_threadpool_reap() 405 pool->tp->name, task, task->name, lws_wsi_tag(task_to_wsi(task))); in lws_threadpool_worker_sync() 421 "wsi to sync to\n", __func__, pool->tp->name, in lws_threadpool_worker_sync() 721 char name[16]; lws_threadpool_create() local [all...] |
/third_party/lzma/CPP/7zip/UI/FileManager/ |
H A D | BrowseDialog.cpp | 72 static void MessageBox_HResError(HWND wnd, HRESULT errorCode, const wchar_t *name)
in MessageBox_HResError() argument 75 if (name)
in MessageBox_HResError() 78 s += name;
in MessageBox_HResError() 112 bool GetParentPath(const UString &path, UString &parentPrefix, UString &name);
260 UString name;
in OnInit() local 261 if (!GetParentPath(FilePath, DirPrefix, name))
in OnInit() 267 if (Reload(baseFolder, name) == S_OK)
in OnInit() 269 name.Empty();
in OnInit() 277 if (name.IsEmpty())
in OnInit() 278 name in OnInit() 463 GetParentPath(const UString &path, UString &parentPrefix, UString &name) GetParentPath() argument 638 const UString name = fs2us(fi.Name); Reload() local 744 UString name; OnCreateDir() local 877 FString prefix, name; BrowseForFile() local [all...] |
/third_party/mesa3d/src/freedreno/decode/ |
H A D | pgmdump.c | 131 char name[]; member 148 char name[1]; member 154 char name[]; member 176 char name[]; member 190 char name[]; member 202 char name[]; member 210 char name[]; member 222 char name[]; member 324 attrib->name); in dump_attribute() 339 char *name in dump_uniform() local [all...] |
/third_party/node/test/common/ |
H A D | wpt.js | 65 addResult(name, status) { 67 test: name, 70 addSubtest(name, status, message) { 74 name: sanitizeUnpairedSurrogates(name), 140 'name' in err && 141 err.name.startsWith(code.name); 255 * @param {string} mod name of the WPT module, e.g. 480 * Pretend the runner is run in `name`' [all...] |
/third_party/skia/src/ports/ |
H A D | SkFontMgr_android_parser.cpp | 8 // Despite the name and location, this is portable code. 113 const char* fFilename; // The name of the file currently being parsed. 180 const char* name = attributes[i]; 182 size_t nameLen = strlen(name); 183 if (MEMEQ("tag", name, nameLen)) { 201 } else if (MEMEQ("stylevalue", name, nameLen)) { 230 const char* name = attributes[i]; 232 size_t nameLen = strlen(name); 233 if (MEMEQ("weight", name, nameLen)) { 237 } else if (MEMEQ("style", name, nameLe [all...] |
/third_party/python/Doc/tools/extensions/ |
H A D | pyspecific.py | 210 for name, event in env.all_audit_events.items(): 214 fresh_all_audit_events[name] = event 229 for name, value in other.all_audit_events.items(): 230 if name in env.all_audit_events: 231 env.all_audit_events[name]["source"].extend(value["source"]) 233 env.all_audit_events[name] = value 244 "Raises an :ref:`auditing event <auditing>` {name} with no arguments.", 245 "Raises an :ref:`auditing event <auditing>` {name} with argument {args}.", 246 "Raises an :ref:`auditing event <auditing>` {name} with arguments {args}.", 255 name 534 name = 'pydoc-topics' global() variable in PydocTopicsBuilder [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A D | spp_client.c | 45 const char *name; in hs20_spp_validate() local 52 name = xml_node_get_localname(xctx, node); in hs20_spp_validate() 53 if (name == NULL) in hs20_spp_validate() 56 if (strcmp(expected_name, name) != 0) { in hs20_spp_validate() 57 wpa_printf(MSG_INFO, "Unexpected SOAP method name '%s' (expected '%s')", in hs20_spp_validate() 58 name, expected_name); in hs20_spp_validate() 59 write_summary(ctx, "Unexpected SOAP method name '%s' (expected '%s')", in hs20_spp_validate() 60 name, expected_name); in hs20_spp_validate() 152 const char *name; in process_update_node() local 167 name in process_update_node() 516 const char *name; hs20_spp_exec() local 628 const char *name; process_spp_post_dev_data_response() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
H A D | spp_client.c | 45 const char *name; in hs20_spp_validate() local 52 name = xml_node_get_localname(xctx, node); in hs20_spp_validate() 53 if (name == NULL) in hs20_spp_validate() 56 if (strcmp(expected_name, name) != 0) { in hs20_spp_validate() 57 wpa_printf(MSG_INFO, "Unexpected SOAP method name '%s' (expected '%s')", in hs20_spp_validate() 58 name, expected_name); in hs20_spp_validate() 59 write_summary(ctx, "Unexpected SOAP method name '%s' (expected '%s')", in hs20_spp_validate() 60 name, expected_name); in hs20_spp_validate() 152 const char *name; in process_update_node() local 167 name in process_update_node() 516 const char *name; hs20_spp_exec() local 628 const char *name; process_spp_post_dev_data_response() local [all...] |
/base/hiviewdfx/hiview/base/include/ |
H A D | plugin_factory.h | 40 static void RegisterPlugin(const std::string& name, std::shared_ptr<PluginRegistInfo> func);
41 static void UnregisterPlugin(const std::string& name);
42 static std::shared_ptr<Plugin> GetPlugin(const std::string& name);
43 static std::shared_ptr<PluginRegistInfo> GetGlobalPluginInfo(const std::string& name);
52 PluginRegister(const std::string& name, std::shared_ptr<PluginRegistInfo> fp)
in PluginRegister() argument 54 PluginFactory::RegisterPlugin(name, fp);
in PluginRegister()
|
/base/inputmethod/imf/frameworks/cj/src/ |
H A D | utils.cpp | 33 props.name = Utils::MallocCString(property.name); in InputMethodProperty2C() 44 property.name = std::string(props.name); in C2InputMethodProperty() 55 props.name = Utils::MallocCString(property.name); in InputMethodSubProperty2C()
|
/base/hiviewdfx/hiappevent/frameworks/native/ndk/src/ |
H A D | ndk_app_event_processor.cpp | 37 NdkAppEventProcessor::NdkAppEventProcessor(const std::string &name) in NdkAppEventProcessor() argument 39 config_.name = name; in NdkAppEventProcessor() 59 int NdkAppEventProcessor::SetReportEvent(const char* domain, const char* name, bool isRealTime) in SetReportEvent() argument 63 event.name = name; in SetReportEvent()
|
/base/startup/init/services/begetctl/shell/ |
H A D | shell.h | 53 char *name; member 68 char *name; member 84 char name[0]; member 97 int BShellEnvSetParam(BShellHandle handle, const char *name, const char *desc, BShellParamType type, void *value); 98 const BShellParam *BShellEnvGetParam(BShellHandle handle, const char *name); 101 const ParamInfo *BShellEnvGetReservedParam(BShellHandle handle, const char *name);
|
/base/startup/init/interfaces/innerkits/include/param/ |
H A D | init_param.h | 126 int SystemWriteParam(const char *name, const char *value);
156 int AddCompleteJob(const char *name, const char *condition, const char *cmdContent);
173 int SystemSetParameter(const char *name, const char *value);
187 int SystemReadParam(const char *name, char *value, uint32_t *len);
204 int SystemWaitParameter(const char *name, const char *value, int32_t timeout);
209 int SystemCheckParamExist(const char *name);
|
/third_party/elfutils/tests/ |
H A D | elfgetzdata.c | 74 const char *name = elf_strptr (elf, strndx, shdr->sh_name); in main() local 86 idx, name, d->d_size); in main() 91 if (name[0] == '.' && name[1] == 'z') in main() 101 idx, name, d->d_size); in main() 104 printf ("%zd: %s, NOT compressed\n", idx, name); in main()
|
/third_party/elfutils/libebl/ |
H A D | eblsectiontypename.c | 1 /* Return section type name. 47 #define KNOWNSTYPE(name) [SHT_##name] = #name in ebl_section_type_name() 77 #define KNOWNSTYPE(name) [SHT_##name - SHT_LOSUNW] = #name in ebl_section_type_name()
|
H A D | eblcorenotetypename.c | 1 /* Return note type name. 47 #define KNOWNSTYPE(name) [NT_##name] = #name in ebl_core_note_type_name() 73 #define KNOWNSTYPE(name) case NT_##name: res = #name; break in ebl_core_note_type_name()
|
/third_party/alsa-lib/src/control/ |
H A D | eld.c | 72 /* decode connected HDMI device name */ in __snd_pcm_info_eld_fixup() 78 /* no monitor name detected */ in __snd_pcm_info_eld_fixup() 102 snd_strlcpy((char *)info->name, s, sizeof(info->name)); in __snd_pcm_info_eld_fixup() 105 strncat((char *)info->name, " *", sizeof(info->name) - 1); in __snd_pcm_info_eld_fixup() 106 ((char *)info->name)[sizeof(info->name)-1] = '\0'; in __snd_pcm_info_eld_fixup()
|
/third_party/googletest/googletest/src/ |
H A D | gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 71 const std::string& name = *name_it; in VerifyRegisteredTestNames() local 72 if (tests.count(name) != 0) { in VerifyRegisteredTestNames() 73 errors << "Test " << name << " is listed more than once.\n"; in VerifyRegisteredTestNames() local 77 if (registered_tests_.count(name) != 0) { in VerifyRegisteredTestNames() 78 tests.insert(name); in VerifyRegisteredTestNames() 80 errors << "No test named " << name in VerifyRegisteredTestNames() local
|
/third_party/gn/src/gn/ |
H A D | ohos_components_unittest.cc | 22 "\"name\": \"libfoo\"" 30 "\"name\": \"libbar\"" 38 "\"name\": \"libbaz\"" 45 EXPECT_EQ("foo", com.name()); in TEST() 84 EXPECT_EQ("foo", component->name()); in TEST() 86 EXPECT_EQ("foo", component->name()); in TEST() 88 EXPECT_EQ("foo", component->name()); in TEST() 90 EXPECT_EQ("foo", component->name()); in TEST() 92 EXPECT_EQ("foo", component->name()); in TEST()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | Holiday.java | 106 //System.out.println(name + ".isOn(" + date.toString() + "):"); in isOn() 122 * This constructs a new holiday with the given name and date rules. 124 * @param name The name of this holiday. The getDisplayName method 125 * uses this string as a key to look up the holiday's name a 133 protected Holiday(String name, DateRule rule) in Holiday() argument 135 this.name = name; in Holiday() 140 * Return the name of this holiday in the language of the default <code>DISPLAY</code> locale. 149 * Return the name o 202 private String name; global() field in Holiday [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | Holiday.java | 108 //System.out.println(name + ".isOn(" + date.toString() + "):"); in isOn() 124 * This constructs a new holiday with the given name and date rules. 126 * @param name The name of this holiday. The getDisplayName method 127 * uses this string as a key to look up the holiday's name a 135 protected Holiday(String name, DateRule rule) in Holiday() argument 137 this.name = name; in Holiday() 142 * Return the name of this holiday in the language of the default <code>DISPLAY</code> locale. 151 * Return the name o 204 private String name; global() field in Holiday [all...] |