Home
last modified time | relevance | path

Searched refs:name (Results 1401 - 1425 of 24112) sorted by relevance

1...<<51525354555657585960>>...965

/third_party/vk-gl-cts/scripts/opengl/
H A Dgen_call_log_wrapper.py33 return lambda name: "get%sStr(%s)" % (group, name)
36 return lambda name: "getPointerStr(%s, %s)" % (name, size)
39 return lambda name: "getEnumPointerStr(%(name)s, %(size)s, %(nameFunc)s)" % {"name": name, "size": size, "nameFunc": ("get%sName" % group)}
42 return lambda name: "getBooleanPointerStr(%s, %s)" % (name, siz
[all...]
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A Dast.js61 constructor(name, type, value, bindToken, jinzhi) {
62 let callType = Object.prototype.toString.call(name);
64 this.constructorSis(name.name_, name.type_, name.stringValue_);
65 this.integerValue_ = name.integerValue_;
69 this.constructorSiit(name, type, value, bindToken, jinzhi);
71 this.constructorSii(name, type, value, jinzhi);
75 this.constructorSist(name, type, value, bindToken);
77 this.constructorSis(name, typ
[all...]
/foundation/resourceschedule/soc_perf/services/core/src/
H A Dsocperf_config.cpp167 if (!xmlStrcmp(rootNode->name, reinterpret_cast<const xmlChar*>("Configs"))) { in LoadConfigXmlFile()
227 if (!xmlStrcmp(child->name, reinterpret_cast<const xmlChar*>("Resource"))) { in ParseResourceXmlFile()
231 } else if (!xmlStrcmp(child->name, reinterpret_cast<const xmlChar*>("GovResource"))) { in ParseResourceXmlFile()
235 } else if (!xmlStrcmp(child->name, reinterpret_cast<const xmlChar*>("Info"))) { in ParseResourceXmlFile()
246 if (!xmlStrcmp(grandson->name, reinterpret_cast<const xmlChar*>("res"))) { in LoadResource()
271 char* name = reinterpret_cast<char*>(xmlGetProp(grandson, reinterpret_cast<const xmlChar*>("name"))); in TraversalFreqResource() local
276 if (!CheckResourceTag(id, name, pair, mode, persistMode, configFile)) { in TraversalFreqResource()
278 xmlFree(name); in TraversalFreqResource()
288 xmlFree(name); in TraversalFreqResource()
369 char* name = reinterpret_cast<char*>(xmlGetProp(grandson, reinterpret_cast<const xmlChar*>("name"))); LoadGovResource() local
479 char* name = reinterpret_cast<char*>(xmlGetProp(child, reinterpret_cast<const xmlChar*>("name"))); LoadCmd() local
628 CheckResourceTag(const char* id, const char* name, const char* pair, const char* mode, const char* persistMode, const std::string& configFile) const CheckResourceTag() argument
718 CheckGovResourceTag(const char* id, const char* name, const char* persistMode, const std::string& configFile) const CheckGovResourceTag() argument
752 CheckCmdTag(const char* id, const char* name, const std::string& configFile) const CheckCmdTag() argument
[all...]
/third_party/libwebsockets/lib/system/metrics/
H A Dmetrics.c29 lws_metrics_tag_add(lws_dll2_owner_t *owner, const char *name, const char *val) in lws_metrics_tag_add() argument
34 // lwsl_notice("%s: adding %s=%s\n", __func__, name, val); in lws_metrics_tag_add()
37 * Remove (in order to replace) any existing tag of same name in lws_metrics_tag_add()
43 if (!strcmp(name, tag->name)) { in lws_metrics_tag_add()
60 tag->name = name; in lws_metrics_tag_add()
69 lws_metrics_tag_wsi_add(struct lws *wsi, const char *name, const char *val) in lws_metrics_tag_wsi_add() argument
73 return lws_metrics_tag_add(&wsi->cal_conn.mtags_owner, name, val); in lws_metrics_tag_wsi_add()
78 lws_metrics_tag_ss_add(struct lws_ss_handle *ss, const char *name, cons argument
85 lws_metrics_tag_sspc_add(struct lws_sspc_handle *sspc, const char *name, const char *val) lws_metrics_tag_sspc_add() argument
131 lws_metrics_tag_get(lws_dll2_owner_t *owner, const char *name) lws_metrics_tag_get() argument
248 lws_metrics_check_in_policy(const char *polstring, const char *name) lws_metrics_check_in_policy() argument
279 lws_metrics_find_policy(struct lws_context *ctx, const char *name) lws_metrics_find_policy() argument
310 lws_metric_create(struct lws_context *ctx, uint8_t flags, const char *name) lws_metric_create() argument
551 lws_metrics_hist_bump_(lws_metric_pub_t *pub, const char *name) lws_metrics_hist_bump_() argument
598 lws_metrics_hist_bump_describe_wsi(struct lws *wsi, lws_metric_pub_t *pub, const char *name) lws_metrics_hist_bump_describe_wsi() argument
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dgenerator.py55 Sorts by category of the feature name string:
63 if feature.name.startswith('VKSC'):
81 """Sort key for regSortFeatures - key is the extension name."""
83 return feature.name
323 # categoryToPath - map XML 'category' to include file directory name
333 def breakName(self, name, msg):
334 """Break into debugger if this is a special name"""
340 if name in bad and True:
341 print('breakName {}: {}'.format(name, msg))
355 """The current feature name bein
[all...]
/third_party/rust/crates/env_logger/src/filter/
H A Dmod.rs118 name: Option<String>,
222 self.directives.insert(directive.name, directive.level); in parse()
236 name: None, in build()
244 .map(|(name, level)| Directive { name, level }) in build()
246 // Sort the directives by length of their name, this allows a in build()
249 let alen = a.name.as_ref().map(|a| a.len()).unwrap_or(0); in build()
250 let blen = b.name.as_ref().map(|b| b.len()).unwrap_or(0); in build()
312 let (log_level, name) = in parse_spec()
344 name in parse_spec()
[all...]
/third_party/vulkan-headers/registry/
H A Dgenerator.py55 Sorts by category of the feature name string:
63 if feature.name.startswith('VKSC'):
81 """Sort key for regSortFeatures - key is the extension name."""
83 return feature.name
323 # categoryToPath - map XML 'category' to include file directory name
333 def breakName(self, name, msg):
334 """Break into debugger if this is a special name"""
340 if name in bad and True:
341 print('breakName {}: {}'.format(name, msg))
355 """The current feature name bein
[all...]
/drivers/peripheral/power/test/unittest/mock/
H A Dmock_wakelock_name.cpp26 bool MockWakeLockName::FindWakeLockName(const std::string &name) in FindWakeLockName() argument
28 auto it = std::find(wakeLockName.begin(), wakeLockName.end(), name); in FindWakeLockName()
35 void MockWakeLockName::WriteWakeLockName(const std::string &name) in WriteWakeLockName() argument
37 auto it = std::find(wakeLockName.begin(), wakeLockName.end(), name); in WriteWakeLockName()
39 wakeLockName.emplace_back(name); in WriteWakeLockName()
43 void MockWakeLockName::WriteWakeUnlockName(const std::string &name) in WriteWakeUnlockName() argument
45 auto it = std::find(wakeLockName.begin(), wakeLockName.end(), name); in WriteWakeUnlockName()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/utils/src/
H A Dkvstore_utils.cpp28 std::string KvStoreUtils::ToBeAnonymous(const std::string &name) in ToBeAnonymous() argument
30 if (name.length() <= HEAD_SIZE) { in ToBeAnonymous()
34 if (name.length() < MIN_SIZE) { in ToBeAnonymous()
35 return (name.substr(0, HEAD_SIZE) + REPLACE_CHAIN); in ToBeAnonymous()
38 return (name.substr(0, HEAD_SIZE) + REPLACE_CHAIN + name.substr(name.length() - END_SIZE, END_SIZE)); in ToBeAnonymous()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
H A DIndicIMDescriptor.java20 private final String name; field in IndicIMDescriptor
22 protected IndicIMDescriptor(Locale locale, String name) { in IndicIMDescriptor() argument
24 this.name = name; in IndicIMDescriptor()
41 return rb.getString("DisplayName." + name); in getInputMethodDisplayName()
44 return name; in getInputMethodDisplayName()
57 return name; in toString()
/third_party/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp11 static bool MakeAutoName(const FString &name, in MakeAutoName() argument
14 path = name; in MakeAutoName()
25 FString name = path; in AutoRenamePath() local
29 name.DeleteFrom((unsigned)dotPos); in AutoRenamePath()
32 name += '_'; in AutoRenamePath()
40 if (MakeAutoName(name, extension, mid, temp)) in AutoRenamePath()
45 return !MakeAutoName(name, extension, right, path); in AutoRenamePath()
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dapi_vtxfmt_init_h.py38 self.name = 'api_vtxfmt_init_h.py'
58 re.match('VertexAttrib[1-4].*ARB', f.name)):
61 'SET_{0}(tab, NAME({0}));'.format(f.name))
63 'SET_{0}(tab, NAME_ES({0}));'.format(f.name))
65 macro = ('NAME_CALLLIST' if f.name[0:8] == 'CallList' else
66 'NAME_AE' if f.name == 'ArrayElement' else 'NAME')
68 'SET_{0}(tab, {1}({0}));'.format(f.name, macro))
/third_party/ltp/testcases/kernel/syscalls/futex/
H A Dfutex_utils.h39 char thread_state, name[1024]; in wait_for_threads() local
44 snprintf(name, sizeof(name), "/proc/%i/task/", getpid()); in wait_for_threads()
46 dir = SAFE_OPENDIR(name); in wait_for_threads()
53 snprintf(name, sizeof(name), "/proc/%i/task/%s/stat", in wait_for_threads()
56 SAFE_FILE_SCANF(name, "%*i %*s %c", &thread_state); in wait_for_threads()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dtest_xml_utils.cc23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name, in InternalGetNodesWithName() argument
25 if (node->ValueStr() == name) in InternalGetNodesWithName()
29 InternalGetNodesWithName(child, name, wanted_nodes); in InternalGetNodesWithName()
34 const std::string& name) { in GetNodesWithName()
36 InternalGetNodesWithName(node, name, wanted_nodes); in GetNodesWithName()
41 const std::string& name) { in GetAttribute()
44 if (attribute->Name() == name) { in GetAttribute()
33 GetNodesWithName(const TiXmlNode* node, const std::string& name) GetNodesWithName() argument
40 GetAttribute(const TiXmlNode* node, const std::string& name) GetAttribute() argument
/third_party/typescript/tests/baselines/reference/
H A DmatchReturnTypeInAllBranches.js8 public name: string;
9 constructor(iceCreamFlavor: string, wantsSprinkles: boolean, soundsWhenEating: string, name: string) {
14 this.name = name;
41 function IceCreamMonster(iceCreamFlavor, wantsSprinkles, soundsWhenEating, name) {
46 this.name = name;
H A DobjectLiteralContextualTyping.js3 // the type of the property with a matching name in the contextual type, if any, or otherwise
8 name: string;
15 var x = foo({ name: "Sprocket" });
18 var y = foo({ name: "Sprocket", description: "Bumpy wheel" });
21 var z = foo({ name: "Sprocket", description: false });
35 // the type of the property with a matching name in the contextual type, if any, or otherwise
38 var x = foo({ name: "Sprocket" });
40 var y = foo({ name: "Sprocket", description: "Bumpy wheel" });
42 var z = foo({ name: "Sprocket", description: false });
/third_party/protobuf/js/experimental/runtime/kernel/
H A Dsint64_test_pairs.js13 * @return {!Array<{name: string, longValue: !Int64, bufferDecoder:
19 name: 'zero',
24 name: 'one ',
29 name: 'minus one',
34 name: 'two',
39 name: 'minus two',
44 name: 'min value',
51 name: 'max value',
/third_party/mesa3d/src/intel/tools/
H A Daubinator_viewer_decoder.cpp76 if (ctx->decode_cfg->field_filter.PassFilter(iter.name)) { in aub_viewer_print_group()
78 ImGui::Text("%s: ", iter.name); ImGui::SameLine(); in aub_viewer_print_group()
81 ImGui::Text("%s: %s", iter.name, iter.value); in aub_viewer_print_group()
172 if (strcmp(iter.name, "Surface State Base Address") == 0) { in handle_state_base_address()
174 } else if (strcmp(iter.name, "Dynamic State Base Address") == 0) { in handle_state_base_address()
176 } else if (strcmp(iter.name, "Instruction Base Address") == 0) { in handle_state_base_address()
178 } else if (strcmp(iter.name, "Surface State Base Address Modify Enable") == 0) { in handle_state_base_address()
180 } else if (strcmp(iter.name, "Dynamic State Base Address Modify Enable") == 0) { in handle_state_base_address()
182 } else if (strcmp(iter.name, "Instruction Base Address Modify Enable") == 0) { in handle_state_base_address()
301 if (strcmp(iter.name, "Interfac in handle_media_interface_descriptor_load()
[all...]
/third_party/python/Lib/
H A Dshutil.py35 _WINDOWS = os.name == 'nt'
37 if os.name == 'posix':
99 err.filename = fsrc.name
100 err.filename2 = fdst.name
147 err.filename = fsrc.name
148 err.filename2 = fdst.name
327 for name in names:
329 value = os.getxattr(src, name, follow_symlinks=follow_symlinks)
330 os.setxattr(dst, name, value, follow_symlinks=follow_symlinks)
360 def lookup(name)
[all...]
/foundation/bundlemanager/distributed_bundle_framework/services/dbms/test/unittest/dbms_services_kit_test/
H A Ddbms_services_kit_test.cpp319 * @tc.name: test GetRemoteAbilityInfo
329 ElementName name; in HWTEST_F() local
331 auto ret = distributedBms->GetRemoteAbilityInfo(name, info); in HWTEST_F()
338 * @tc.name: test GetRemoteAbilityInfo
348 ElementName name; in HWTEST_F() local
350 auto ret = distributedBms->GetRemoteAbilityInfo(name, "", info); in HWTEST_F()
357 * @tc.name: test GetRemoteAbilityInfo
367 ElementName name; in HWTEST_F() local
369 auto ret = distributedBms->GetRemoteAbilityInfo(name, "", info); in HWTEST_F()
376 * @tc.name
386 std::vector<ElementName> name; HWTEST_F() local
405 std::vector<ElementName> name; HWTEST_F() local
424 ElementName name; HWTEST_F() local
448 ElementName name; HWTEST_F() local
473 ElementName name; HWTEST_F() local
503 ElementName name; HWTEST_F() local
527 std::vector<ElementName> name; HWTEST_F() local
550 ElementName name; HWTEST_F() local
579 ElementName name; HWTEST_F() local
607 ElementName name; HWTEST_F() local
626 ElementName name; HWTEST_F() local
646 ElementName name; HWTEST_F() local
667 ElementName name; HWTEST_F() local
738 ElementName name; HWTEST_F() local
759 ElementName name; HWTEST_F() local
781 ElementName name; HWTEST_F() local
805 ElementName name; HWTEST_F() local
1566 ElementName name; HWTEST_F() local
1586 ElementName name; HWTEST_F() local
1624 ElementName name; HWTEST_F() local
1646 ElementName name; HWTEST_F() local
[all...]
/device/soc/hisilicon/common/platform/hieth-sf/include/internal/
H A Dhieth_pri.h186 #define UD_REG_NAME(name) ((ld->port == UP_PORT) ? U_##name : D_##name)
187 #define UD_BIT_NAME(name) ((ld->port == UP_PORT) ? name##_U : name##_D)
188 #define UD_PHY_NAME(name) ((ld->port == UP_PORT) ? name##_U : name##_D)
190 #define UD_BIT(port, name) (((por
[all...]
/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast_fd_type.h32 void EmitCWriteVar(const std::string &parcelName, const std::string &name, const std::string &ecName,
35 void EmitCProxyReadVar(const std::string &parcelName, const std::string &name, bool isInnerType,
39 void EmitCStubReadVar(const std::string &parcelName, const std::string &name, const std::string &ecName,
42 void EmitCppWriteVar(const std::string &parcelName, const std::string &name, StringBuilder &sb,
45 void EmitCppReadVar(const std::string &parcelName, const std::string &name, StringBuilder &sb,
48 void EmitCMarshalling(const std::string &name, StringBuilder &sb, const std::string &prefix) const override;
50 void EmitCUnMarshalling(const std::string &name, const std::string &gotoLabel, StringBuilder &sb,
53 void EmitCppMarshalling(const std::string &parcelName, const std::string &name, StringBuilder &sb,
56 void EmitCppUnMarshalling(const std::string &parcelName, const std::string &name, StringBuilder &sb,
59 void EmitJavaWriteVar(const std::string &parcelName, const std::string &name, StringBuilde
[all...]
/foundation/ability/idl_tool/idl_tool_2/codegen/HDI/type/
H A Dhdi_fd_type_emitter.h33 void EmitCWriteVar(TypeMode mode, const std::string &name, const std::string &gotoLabel,
36 void EmitCProxyReadVar(const std::string &name, bool isInnerType, const std::string &gotoLabel, StringBuilder &sb,
39 void EmitCStubReadVar(const std::string &name, const std::string &gotoLabel, StringBuilder &sb,
42 void EmitCppWriteVar(const std::string &parcelName, const std::string &name, StringBuilder &sb,
45 void EmitCppReadVar(const std::string &name, StringBuilder &sb, const std::string &prefix,
48 void EmitCMarshalling(const std::string &name, StringBuilder &sb, const std::string &prefix) const override;
50 void EmitCUnMarshalling(const std::string &name, const std::string &gotoLabel, StringBuilder &sb,
53 void EmitCppMarshalling(const std::string &parcelName, const std::string &name, StringBuilder &sb,
56 void EmitCppUnMarshalling(const std::string &parcelName, const std::string &name, StringBuilder &sb,
59 void EmitJavaWriteVar(const std::string &parcelName, const std::string &name, StringBuilde
[all...]
/foundation/distributedhardware/device_manager/utils/src/timer/lite/
H A Ddm_timer.cpp29 Timer::Timer(std::string name, int32_t time, TimerCallback callback) in Timer() argument
30 : timerName_(name), expire_(steadyClock::now()), state_(true), timeOut_(time), callback_(callback) {}; in Timer()
46 int32_t DmTimer::StartTimer(std::string name, int32_t timeOut, TimerCallback callback) in StartTimer() argument
48 LOGI("DmTimer StartTimer %{public}s", name.c_str()); in StartTimer()
49 if (name.empty() || timeOut <= MIN_TIME_OUT || timeOut > MAX_TIME_OUT || callback == nullptr) { in StartTimer()
54 std::shared_ptr<Timer> timer = std::make_shared<Timer>(name, timeOut, callback); in StartTimer()
81 LOGI("DmTimer DeleteTimer name %{public}s", timerName.c_str()); in DeleteTimer()
96 LOGI("DmTimer DeleteAll timer.name = %{public}s ", iter->timerName_.c_str()); in DeleteAll()
120 std::string name = timerQueue_.top()->timerName_; in TimerRunning()
121 LOGI("DmTimer TimerRunning timer.name in TimerRunning()
148 DeleteVector(std::string name) DeleteVector() argument
[all...]
/foundation/distributeddatamgr/preferences/frameworks/native/platform/src/
H A Dpreferences_dfx_adapter.cpp81 { .name = "BUNDLE_NAME", in ReportDbFault()
85 { .name = "MODULE_NAME", in ReportDbFault()
89 { .name = "STORE_TYPE", in ReportDbFault()
93 { .name = "STORE_NAME", in ReportDbFault()
97 { .name = "SECURITY_LEVEL", .t = HISYSEVENT_UINT32, .v = { .ui32 = 0u }, .arraySize = 0 }, in ReportDbFault()
98 { .name = "PATH_AREA", .t = HISYSEVENT_UINT32, .v = { .ui32 = 0u }, .arraySize = 0 }, in ReportDbFault()
99 { .name = "ENCRYPT_STATUS", .t = HISYSEVENT_UINT32, .v = { .ui32 = 0u }, .arraySize = 0 }, in ReportDbFault()
100 { .name = "INTERGITY_CHECK", .t = HISYSEVENT_UINT32, .v = { .ui32 = 0u }, .arraySize = 0 }, in ReportDbFault()
101 { .name = "ERROR_CODE", .t = HISYSEVENT_UINT32, .v = { .ui32 = reportParam.errCode }, .arraySize = 0 }, in ReportDbFault()
102 { .name in ReportDbFault()
[all...]

Completed in 16 milliseconds

1...<<51525354555657585960>>...965