/third_party/node/lib/internal/source_map/ |
H A D | prepare_stack_trace.js | 48 errorString = `${error.name} [${error.code}]: ${error.message}`; 83 const name = getOriginalSymbolName(sm, trace, i); 84 // Construct call site name based on: v8.dev/docs/stack-trace-api: 89 // The original call site may have a different symbol name 91 const prefix = (name && name !== originalName) ? 92 `${name}` : 94 const hasName = !!(name || originalName); 112 // Transpilers may have removed the original symbol name used in the stack 115 // First check for a symbol name associate [all...] |
/third_party/node/test/fixtures/wpt/wasm/jsapi/ |
H A D | assertions.js | 1 function assert_function_name(fn, name, description) { 2 const propdesc = Object.getOwnPropertyDescriptor(fn, "name"); 3 assert_equals(typeof propdesc, "object", `${description} should have name property`); 4 assert_false(propdesc.writable, "writable", `${description} name should not be writable`); 5 assert_false(propdesc.enumerable, "enumerable", `${description} name should not be enumerable`); 6 assert_true(propdesc.configurable, "configurable", `${description} name should be configurable`); 7 assert_equals(propdesc.value, name, `${description} name should be ${name}`); 19 function assert_exported_function(fn, { name, lengt [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | MSVSUtil.py | 48 def _SuffixName(name, suffix): 52 name: name of the target (foo#target) 55 Target name with suffix added (foo_suffix#target) 57 parts = name.rsplit("#", 1) 62 def _ShardName(name, number): 66 name: name of the target (foo#target) 69 Target name with shard added (foo_1#target) 71 return _SuffixName(name, st [all...] |
/third_party/node/test/fixtures/wpt/resources/ |
H A D | sriharness.js | 11 var SRIScriptTest = function(pass, name, src, integrityValue, crossoriginValue, nonce, integrityValueAfterPrepare) { 13 this.name = "Script: " + name; 22 var test = async_test(this.name); 96 const SRIPreloadTest = (preload_sri_success, subresource_sri_success, name, 99 const test = async_test(name); 165 var SRIStyleTest = function(queue, pass, name, attrs, customCallback, altPassValue) { 167 this.name = "Style: " + name; 172 this.test = async_test(this.name); [all...] |
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
H A D | role.js | 85 const { name, terminating, paths, pathHashPrefixes } = opts; 86 this.name = name; 99 this.name === other.name && 118 name: this.name, 130 const { keyids, threshold, name, terminating, paths, path_hash_prefixes, ...rest } = data; 137 if (typeof name !== 'string') { 138 throw new TypeError('name mus [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | MSVSUtil.py | 48 def _SuffixName(name, suffix): 52 name: name of the target (foo#target) 55 Target name with suffix added (foo_suffix#target) 57 parts = name.rsplit("#", 1) 62 def _ShardName(name, number): 66 name: name of the target (foo#target) 69 Target name with shard added (foo_1#target) 71 return _SuffixName(name, st [all...] |
/third_party/node/deps/npm/node_modules/npm-pick-manifest/lib/ |
H A D | index.js | 40 const { name, time: verTimes } = packument 72 throw Object.assign(new Error(`No avoidable versions for ${name}`), { 74 name, 88 const spec = npa.resolve(name, wanted || defaultTag) 140 throw Object.assign(new Error(`No versions available for ${name}`), { 142 name, 198 const { name } = packument 199 const pckg = `${name}@${wanted}` + 211 type: npa.resolve(packument.name, wanted).type, 214 name, [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | strings-storage.cc | 96 const char* StringsStorage::GetName(Name name) { in GetName() argument 97 if (name.IsString()) { in GetName() 98 String str = String::cast(name); in GetName() 104 } else if (name.IsSymbol()) { in GetName() 105 return GetSymbol(Symbol::cast(name)); in GetName() 114 const char* StringsStorage::GetConsName(const char* prefix, Name name) { in GetConsName() argument 115 if (name.IsString()) { in GetConsName() 116 String str = String::cast(name); in GetConsName() 127 } else if (name.IsSymbol()) { in GetConsName() 128 return GetSymbol(Symbol::cast(name)); in GetConsName() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_struct.c | 49 const char *name) in lp_build_struct_get_ptr() 59 lp_build_name(member_ptr, "%s.%s_ptr", LLVMGetValueName(ptr), name); in lp_build_struct_get_ptr() 67 const char *name) in lp_build_struct_get() 73 member_ptr = lp_build_struct_get_ptr(gallivm, ptr, member, name); in lp_build_struct_get() 75 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), name); in lp_build_struct_get() 84 const char *name) in lp_build_struct_get_ptr2() 94 lp_build_name(member_ptr, "%s.%s_ptr", LLVMGetValueName(ptr), name); in lp_build_struct_get_ptr2() 103 const char *name) in lp_build_struct_get2() 109 member_ptr = lp_build_struct_get_ptr2(gallivm, ptr_type, ptr, member, name); in lp_build_struct_get2() 111 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), name); in lp_build_struct_get2() 46 lp_build_struct_get_ptr(struct gallivm_state *gallivm, LLVMValueRef ptr, unsigned member, const char *name) lp_build_struct_get_ptr() argument 64 lp_build_struct_get(struct gallivm_state *gallivm, LLVMValueRef ptr, unsigned member, const char *name) lp_build_struct_get() argument 80 lp_build_struct_get_ptr2(struct gallivm_state *gallivm, LLVMTypeRef ptr_type, LLVMValueRef ptr, unsigned member, const char *name) lp_build_struct_get_ptr2() argument 99 lp_build_struct_get2(struct gallivm_state *gallivm, LLVMTypeRef ptr_type, LLVMValueRef ptr, unsigned member, const char *name) lp_build_struct_get2() argument [all...] |
/third_party/pulseaudio/src/modules/ |
H A D | module-lirc.c | 42 PA_MODULE_USAGE("config=<config file> sink=<sink name> appname=<lirc application name> volume_limit=<volume limit> volume_step=<volume change step>"); 71 char *name = NULL, *code = NULL; in io_callback() local 94 while (lirc_code2char(u->config, code, &name) == 0 && name) { in io_callback() 104 pa_log_info("Translated IR code '%s'", name); in io_callback() 106 if (strcasecmp(name, "volume-up") == 0) in io_callback() 108 else if (strcasecmp(name, "volume-down") == 0) in io_callback() 110 else if (strcasecmp(name, "mute") == 0) in io_callback() 112 else if (strcasecmp(name, "mut in io_callback() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmEmptyStructTests.cpp | 122 std::string name; in addCopyingComputeGroup() member 137 : name (name_) in addCopyingComputeGroup() 180 std::string name; in addCopyingComputeGroup() member 184 : name (name_) in addCopyingComputeGroup() 207 std::string name = copyingMethod.name + "_" + bufferType.name; in addCopyingComputeGroup() local 226 group->addChild(new SpvAsmComputeShaderCase(group->getTestContext(), name.c_str(), spec)); in addCopyingComputeGroup() 488 std::string name; in addFunctionArgumentReturnValueGroup() member 555 testCtx, variableDefinition.name in addFunctionArgumentReturnValueGroup() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/ |
H A D | vktGeometryInputGeometryShaderTests.cpp | 64 const char* name); 68 const char* name, 76 const char* name) in GeometryInputTestInstance() 77 : GeometryExpanderRenderTestInstance (context, primitiveType, name) in GeometryInputTestInstance() 84 const char* name, in GeometryInputTestInstance() 86 : GeometryExpanderRenderTestInstance (context, primitiveType, name) in GeometryInputTestInstance() 136 : TestCase (testCtx, inputPrimitives.name, inputPrimitives.name) in GeometryExpanderRenderTest() 290 const string name = "vertex_count_" + de::toString(vertexCount); in createInputGeometryShaderTests() local 291 const PrimitiveTestSpec primitives = { VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY, name in createInputGeometryShaderTests() 74 GeometryInputTestInstance(Context& context, const VkPrimitiveTopology primitiveType, const char* name) GeometryInputTestInstance() argument 82 GeometryInputTestInstance(Context& context, const VkPrimitiveTopology primitiveType, const char* name, const int numDrawVertices) GeometryInputTestInstance() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | CLKernel.cpp | 23 cl_int Kernel::getInfo(KernelInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const in getInfo() argument 30 switch (name) in getInfo() 84 KernelWorkGroupInfo name, in getWorkGroupInfo() 107 switch (name) in getWorkGroupInfo() 158 KernelArgInfo name, in getArgInfo() 167 switch (name) in getArgInfo() 186 copyValue = info.name.c_str(); in getArgInfo() 187 copySize = info.name.length() + 1u; in getArgInfo() 218 Kernel::Kernel(Program &program, const char *name, cl_int &errorCode) in Kernel() argument 220 mImpl(program.getImpl().createKernel(*this, name, errorCod in Kernel() 83 getWorkGroupInfo(cl_device_id device, KernelWorkGroupInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const getWorkGroupInfo() argument 157 getArgInfo(cl_uint argIndex, KernelArgInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const getArgInfo() argument [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcUniformBlockCase.hpp | 146 StructMember(const char* name, const VarType& type, deUint32 flags) : m_name(name), m_type(type), m_flags(flags) in StructMember() argument 207 void addMember(const char* name, const VarType& type, deUint32 flags = 0); 217 Uniform(const char* name, const VarType& type, deUint32 flags = 0); 267 void setInstanceName(const char* name) in setInstanceName() argument 269 m_instanceName = name; in setInstanceName() 315 StructType& allocStruct(const char* name); 316 const StructType* findStruct(const char* name) const; 319 UniformBlock& allocBlock(const char* name); 350 UniformBlockCase(Context& context, const char* name, cons [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | parse_dependency.py | 12 # returning a boolean result. isSupported takes an extension or version name 58 def markupPassthrough(name): 59 """Pass a name (leaf or operator) through without applying markup""" 60 return name 62 def leafMarkupAsciidoc(name): 63 """Markup a leaf name as an asciidoc link to an API version or extension 66 - name - version or extension name""" 68 return conventions.formatVersionOrExtension(name) 70 def leafMarkupC(name) [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ |
H A D | PassSupport.h | 33 #define INITIALIZE_PASS(passName, arg, name, cfg, analysis) \ 36 name, arg, &passName::ID, \ 47 #define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis) \ 54 #define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis) \ 56 name, arg, &passName::ID, \ 114 /// and may still be "required" specifically by name. 118 /// a nice name with the interface. 135 #define INITIALIZE_ANALYSIS_GROUP(agName, name, defaultPass) \ 138 PassInfo *AI = new PassInfo(name, &agName::ID); \ 149 #define INITIALIZE_AG_PASS(passName, agName, arg, name, cf [all...] |
/third_party/toybox/toys/pending/ |
H A D | host.c | 15 Perform DNS lookup on NAME, which can be a domain name to lookup, 42 const char *name; member 49 [2] = { "NS", "name server", PL_NAME }, 53 [12] = { "PTR", "domain name pointer", PL_NAME }, 77 char *name, *nsname, plname[640], ptrbuf[128]; in host_main() local 80 name = *toys.optargs; in host_main() 84 if (!getaddrinfo(name, 0, &iplit_hints, &ai)) { in host_main() 102 name = ptrbuf; in host_main() 110 if (rrt[i].name && !strcasecmp(TT.type_str, rrt[i].name)) { in host_main() [all...] |
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_name_resolver.cc | 15 // * Neither the name of Google Inc. nor the names of its 45 // A suffix that will be appended to the file's outer class name if the name 49 // Strip package name from a descriptor's full name. 51 // Full name : foo.Bar.Baz 52 // Package name: foo 59 // Strip package name in StripPackageName() 64 // Get the name of a message's Java class without package name prefi [all...] |
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsUniformBlockCase.hpp | 128 StructMember (const char* name, const VarType& type, deUint32 flags) : m_name(name), m_type(type), m_flags(flags) {} in StructMember() argument 157 void addMember (const char* name, const VarType& type, deUint32 flags = 0); 167 Uniform (const char* name, const VarType& type, deUint32 flags = 0); 193 void setInstanceName (const char* name) { m_instanceName = name; } in setInstanceName() argument 217 StructType& allocStruct (const char* name); 218 const StructType* findStruct (const char* name) const; 221 UniformBlock& allocBlock (const char* name); 246 UniformBlockCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, cons [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmEmptyStructTests.cpp | 122 std::string name; in addCopyingComputeGroup() member 137 : name (name_) in addCopyingComputeGroup() 180 std::string name; in addCopyingComputeGroup() member 184 : name (name_) in addCopyingComputeGroup() 207 std::string name = copyingMethod.name + "_" + bufferType.name; in addCopyingComputeGroup() local 226 group->addChild(new SpvAsmComputeShaderCase(group->getTestContext(), name.c_str(), "", spec)); in addCopyingComputeGroup() 488 std::string name; in addFunctionArgumentReturnValueGroup() member 555 testCtx, variableDefinition.name in addFunctionArgumentReturnValueGroup() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/ |
H A D | addinterface.cpp | 107 TCHAR name[10]; in addRegistryInterface() local 119 TCHAR name[255]; in addRegistryInterface() local 123 ret = RegEnumKeyEx(hk, i, name, &namelen, NULL, NULL, NULL, in addRegistryInterface() 134 name[namelen] = '\0'; in addRegistryInterface() 137 QString s((QChar *) name, namelen); in addRegistryInterface() 139 QString s(name); in addRegistryInterface() 149 wsprintf(name, L"%04d", id); in addRegistryInterface() 151 os_snprintf(name, sizeof(name), "%04d", id); in addRegistryInterface() 153 ret = RegCreateKeyEx(hk, name, in addRegistryInterface() [all...] |
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
H A D | vksIPC.cpp | 61 bool ok = fileStore.Set(req.name, req.data); in ProcessPacketsOnServer() 185 bool Parent::SetFile (const string& name, const std::vector<u8>& content) in SetFile() argument 187 return impl->fileStore.Set(name, content); in SetFile() 190 vector<u8> Parent::GetFile (const string& name) in GetFile() argument 193 bool result = impl->fileStore.Get(name, content, false); in GetFile() 219 bool Child::SetFile (const string& name, const std::vector<u8>& content) in SetFile() argument 222 request.name = name; in SetFile() 229 std::vector<u8> Child::GetFile (const string& name) in GetFile() argument 232 request.path = name; in GetFile() [all...] |
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fBufferObjectQueryTests.cpp | 80 virtual void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) = DE_NULL; 106 void verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference); 114 void GetBufferParameterIVerifier::verifyInteger (tcu::TestContext& testCtx, GLenum target, GLenum name, GLint reference) in verifyInteger() argument 119 glGetBufferParameteriv(target, name, &state); in verifyInteger() 145 BufferCase (Context& context, BufferParamVerifier* verifier, const char* name, const char* description) in BufferCase() argument 146 : ApiCase (context, name, description) in BufferCase() 186 BufferSizeCase (Context& context, BufferParamVerifier* verifier, const char* name, const char* description) in BufferSizeCase() argument 187 : BufferCase(context, verifier, name, description) in BufferSizeCase() 213 BufferUsageCase (Context& context, BufferParamVerifier* verifier, const char* name, const char* description) in BufferUsageCase() argument 214 : BufferCase(context, verifier, name, descriptio in BufferUsageCase() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/ |
H A D | addinterface.cpp | 107 TCHAR name[10]; in addRegistryInterface() local 119 TCHAR name[255]; in addRegistryInterface() local 123 ret = RegEnumKeyEx(hk, i, name, &namelen, NULL, NULL, NULL, in addRegistryInterface() 134 name[namelen] = '\0'; in addRegistryInterface() 137 QString s((QChar *) name, namelen); in addRegistryInterface() 139 QString s(name); in addRegistryInterface() 149 wsprintf(name, L"%04d", id); in addRegistryInterface() 151 os_snprintf(name, sizeof(name), "%04d", id); in addRegistryInterface() 153 ret = RegCreateKeyEx(hk, name, in addRegistryInterface() [all...] |
/third_party/vulkan-headers/registry/ |
H A D | parse_dependency.py | 12 # returning a boolean result. isSupported takes an extension or version name 58 def markupPassthrough(name): 59 """Pass a name (leaf or operator) through without applying markup""" 60 return name 62 def leafMarkupAsciidoc(name): 63 """Markup a leaf name as an asciidoc link to an API version or extension 66 - name - version or extension name""" 68 return conventions.formatVersionOrExtension(name) 70 def leafMarkupC(name) [all...] |