Home
last modified time | relevance | path

Searched refs:name (Results 6726 - 6750 of 59456) sorted by relevance

1...<<261262263264265266267268269270>>...2379

/third_party/node/deps/openssl/openssl/apps/lib/
H A Dengine.c167 const EVP_MD *get_digest_from_engine(const char *name) in get_digest_from_engine() argument
172 eng = ENGINE_get_digest_engine(OBJ_sn2nid(name)); in get_digest_from_engine()
175 return EVP_get_digestbyname(name); in get_digest_from_engine()
181 const EVP_CIPHER *get_cipher_from_engine(const char *name) in get_cipher_from_engine() argument
186 eng = ENGINE_get_cipher_engine(OBJ_sn2nid(name)); in get_cipher_from_engine()
189 return EVP_get_cipherbyname(name); in get_cipher_from_engine()
/third_party/node/deps/undici/src/lib/cookies/
H A Dparse.js24 let name = ''
29 // 1. The name-value-pair string consists of the characters up to,
40 // 1. The name-value-pair string consists of all the characters
46 // 3. If the name-value-pair string lacks a %x3D ("=") character, then
47 // the name string is empty, and the value string is the value of
48 // name-value-pair.
52 // Otherwise, the name string consists of the characters up to, but
57 name = collectASequenceOfCodePointsFast(
65 // 4. Remove any leading or trailing WSP characters from the name
67 name
[all...]
H A Dindex.js10 * @property {string} name
39 const [name, ...value] = piece.split('=')
41 out[name.trim()] = value.join('=')
49 * @param {string} name
53 function deleteCookie (headers, name, attributes) {
58 name = webidl.converters.DOMString(name)
64 name,
86 // In older versions of undici, cookies is a list of name:value.
125 key: 'name'
[all...]
/third_party/rust/crates/clap/src/builder/
H A Dstyled_str.rs247 fn from(name: std::string::String) -> Self { in from()
249 styled.none(name); in from()
255 fn from(name: &'_ std::string::String) -> Self { in from()
257 styled.none(name);
263 fn from(name: &'static str) -> Self { in from()
265 styled.none(name);
271 fn from(name: &'_ &'static str) -> Self { in from()
272 StyledStr::from(*name) in from()
/third_party/pulseaudio/src/pulsecore/
H A Dparseaddr.c78 int pa_parse_address(const char *name, pa_parsed_address *ret_p) { in pa_parse_address() argument
81 pa_assert(name); in pa_parse_address()
87 if (*name == '{') { in pa_parse_address()
97 if (!pa_startswith(name, pfx)) { in pa_parse_address()
103 p = name + strlen(pfx); in pa_parse_address()
106 p = name; in pa_parse_address()
/third_party/pulseaudio/src/pulse/
H A Dcontext.h167 typedef void (*pa_context_event_cb_t)(pa_context *c, const char *name, pa_proplist *p, void *userdata);
170 * and an application name. It is recommended to use pa_context_new_with_proplist()
172 pa_context *pa_context_new(pa_mainloop_api *mainloop, const char *name);
175 * and an application name, and specify the initial client property
177 pa_context *pa_context_new_with_proplist(pa_mainloop_api *mainloop, const char *name, const pa_proplist *proplist);
223 /** Set the name of the default sink. */
224 pa_operation* pa_context_set_default_sink(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
226 /** Set the name of the default source. */
227 pa_operation* pa_context_set_default_source(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
232 /** Set a different application name fo
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_build_scripts.py40 for name in expected:
41 self.assertIn(name, built)
73 def write_script(self, dir, name, text):
74 f = open(os.path.join(dir, name), "w")
95 # failed when writing the name of the executable
105 for name in expected:
106 self.assertIn(name, built)
/third_party/openssl/apps/lib/
H A Dengine.c167 const EVP_MD *get_digest_from_engine(const char *name) in get_digest_from_engine() argument
172 eng = ENGINE_get_digest_engine(OBJ_sn2nid(name)); in get_digest_from_engine()
175 return EVP_get_digestbyname(name); in get_digest_from_engine()
181 const EVP_CIPHER *get_cipher_from_engine(const char *name) in get_cipher_from_engine() argument
186 eng = ENGINE_get_cipher_engine(OBJ_sn2nid(name)); in get_cipher_from_engine()
189 return EVP_get_cipherbyname(name); in get_cipher_from_engine()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesShaderIntrinsicsStorage.hpp37 const std::string& name, in SparseShaderIntrinsicsCaseStorage()
43 : SparseShaderIntrinsicsCaseBase(testCtx, name, function, imageType, imageSize, format, operand) {} in SparseShaderIntrinsicsCaseStorage()
61 const std::string& name, in SparseCaseOpImageSparseFetch()
67 : SparseShaderIntrinsicsCaseStorage (testCtx, name, function, imageType, imageSize, format, operand) {} in SparseCaseOpImageSparseFetch()
85 const std::string& name, in SparseCaseOpImageSparseRead()
91 : SparseShaderIntrinsicsCaseStorage (testCtx, name, function, imageType, imageSize, format, operand) {} in SparseCaseOpImageSparseRead()
36 SparseShaderIntrinsicsCaseStorage(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const vk::VkFormat format, const std::string& operand) SparseShaderIntrinsicsCaseStorage() argument
60 SparseCaseOpImageSparseFetch(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const vk::VkFormat format, const std::string& operand) SparseCaseOpImageSparseFetch() argument
84 SparseCaseOpImageSparseRead(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const vk::VkFormat format, const std::string& operand) SparseCaseOpImageSparseRead() argument
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/
H A DEmulateFragColorData.cpp48 const char *name = ""; variable
54 name = "webgl_FragColor";
57 name = "webgl_FragData";
60 name = "webgl_SecondaryFragColor";
64 name = "webgl_SecondaryFragData";
81 TVariable *replacementVar = new TVariable(mSymbolTable, ImmutableString(name), outputType,
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dhostsyncgenerator.py32 def makeParameterName(self, name):
33 return 'pname:' + name
35 def makeFLink(self, name):
36 return 'flink:' + name
42 - basename - base name of the file
72 protoname = cmd.find('proto/name').text
137 def genCmd(self, cmdinfo, name, alias):
139 OutputGenerator.genCmd(self, cmdinfo, name, alias)
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dattributes.py11 r"(?P<name>[\w]+)(?P<brackets>\[\])?(?P<delim>\.|::|->)?")
15 return [name for name, _, _ in _PARAM_REF_NAME_RE.findall(val)]
19 """Turn the "name[].member[]" notation into plain English."""
22 for name, brackets, delim in reversed(matches):
24 name = make_param_name(name)
30 parts.append(name)
59 # Must be another param name.
/third_party/vk-gl-cts/executor/
H A DxeTestCase.hpp76 TestNode (TestGroup* parent, TestNodeType nodeType, const char* name);
100 TestGroup* createGroup (const char* name);
101 TestCase* createCase (TestCaseType caseType, const char* name);
104 TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name);
127 static TestCase* createAsChild (TestGroup* parent, TestCaseType caseType, const char* name);
130 TestCase (TestGroup* parent, TestCaseType caseType, const char* name);
H A DxeTestCaseListParser.cpp38 const char* name; in getTestCaseType() member
50 if (deStringEqual(caseType, s_caseTypeMap[ndx].name)) in getTestCaseType()
104 const char* name = m_xmlParser.hasAttribute("Name") ? m_xmlParser.getAttribute("Name") : DE_NULL; in parse() local
108 XE_CHECK_MSG(name && description && caseType, "Missing attribute in <TestCase>"); in parse()
112 TestNode* node = isGroup ? static_cast<TestNode*>(static_cast<TestGroup*>(parent)->createGroup(name)) in parse()
113 : static_cast<TestNode*>(static_cast<TestGroup*>(parent)->createCase(getTestCaseType(caseType), name)); in parse()
/third_party/skia/src/core/
H A DSkFontDescriptor.h77 void setFamilyName(const char* name) { fFamilyName.set(name); } in setFamilyName() argument
78 void setFullName(const char* name) { fFullName.set(name); } in setFullName() argument
79 void setPostscriptName(const char* name) { fPostscriptName.set(name); } in setPostscriptName() argument
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkDeviceMemoryExternalMac.hpp99 // Create shared memory region with shm_open() and a randomly-generated region name.
104 char name[kPrefixSize + kRandomSize + 1u]; variable
105 memcpy(name, kPrefix, kPrefixSize);
114 name[kPrefixSize + pos] = '0' + (r % 8);
116 name[kPrefixSize + kRandomSize] = '\0';
118 fd = shm_open(name, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW, 0600);
129 // Unlink the name since it's not needed anymore.
132 if(shm_unlink(name) == -1)
/third_party/skia/src/ports/
H A DSkFontMgr_custom_directory.cpp50 SkString name; in load_directory_fonts() local
52 while (iter.next(&name, false)) { in load_directory_fonts()
53 SkString filename(SkOSPath::Join(directory.c_str(), name.c_str())); in load_directory_fonts()
90 while (dirIter.next(&name, true)) { in load_directory_fonts()
91 if (name.startsWith(".")) { in load_directory_fonts()
94 SkString dirname(SkOSPath::Join(directory.c_str(), name.c_str())); in load_directory_fonts()
/third_party/skia/src/sksl/ir/
H A DSkSLVariable.h45 Variable(int line, const Modifiers* modifiers, skstd::string_view name, const Type* type, in Variable() argument
47 : INHERITED(line, kSymbolKind, name, type) in Variable()
55 const Modifiers& modifiers, const Type* baseType, skstd::string_view name, bool isArray,
59 const Modifiers& modifiers, const Type* baseType, skstd::string_view name, bool isArray,
106 return this->modifiers().description() + this->type().name() + " " + this->name();
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/
H A Dstreamname.py25 """Verifies that a given stream name is valid.
28 v (str): The stream name string.
32 ValueError if the stream name is invalid.
38 raise ValueError('Invalid stream name: %r' % v)
56 """Given a string, mutate it into a valid segment name.
58 This operates by replacing invalid segment name characters with underscores
94 """Given a string, mutate it into a valid stream name.
96 This operates by replacing invalid stream name characters with underscores (_)
103 See _STREAM_NAME_RE for a description of a valid stream name.
115 class StreamPath(collections.namedtuple('_StreamPath', ('prefix', 'name')))
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dgenerate_font_list_cc.py72 parser.add_argument('--name',
74 help='base name of the generated test files')
105 + args.name.upper() + '_H_')
107 h_file_name = args.destination + args.name + '.h'
115 h_file.write(Template('namespace $name {\n').substitute(name=args.name))
121 h_file.write(Template('\n} // namespace $name\n').substitute(name=args.name))
[all...]
/third_party/python/Lib/distutils/command/
H A Dbuild_clib.py108 # 'define' option is a list of (name,value) tuples
109 for (name,value) in self.define:
110 self.compiler.define_macro(name, value)
137 name, build_info = lib
139 if not isinstance(name, str):
142 "must be a string (the library name)")
144 if '/' in name or (os.sep != '/' and os.sep in name):
145 raise DistutilsSetupError("bad library name '%s': "
/third_party/python/Modules/_multiprocessing/clinic/
H A Dmultiprocessing.c.h105 "sem_unlink($module, name, /)\n"
113 _multiprocessing_sem_unlink_impl(PyObject *module, const char *name);
119 const char *name; in _multiprocessing_sem_unlink() local
126 name = PyUnicode_AsUTF8AndSize(arg, &name_length); in _multiprocessing_sem_unlink()
127 if (name == NULL) { in _multiprocessing_sem_unlink()
130 if (strlen(name) != (size_t)name_length) { in _multiprocessing_sem_unlink()
134 return_value = _multiprocessing_sem_unlink_impl(module, name); in _multiprocessing_sem_unlink()
/third_party/skia/tools/skqp/
H A Dmake_skqp_model.cpp75 SkString name; in main() local
76 while (iter.next(&name)) { in main()
77 name.prependf("%s/", src_dir); in main()
78 SkBitmap bm = decode_to_srgb_8888_unpremul(name.c_str()); in main()
80 SkDebugf("'%s' failed to decode.\n", name.c_str()); in main()
84 SkDebugf("'%s' has unmatched dimensions.\n", name.c_str()); in main()
/third_party/typescript/tests/baselines/reference/tsbuild/moduleSpecifiers/
H A Dsynthesized-module-specifiers-across-projects-resolve-correctly.js46 name: 'Default dog',
58 export const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };
93 name: string;
167 name: 'Default dog',
187 export const LASSIE_CONFIG = { name: 'Lassie' };
206 {"program":{"fileNames":["../../lib/lib.es2022.full.d.ts","../src-types/dogconfig.d.ts","../src-types/index.d.ts","./dogconfig.ts","./dog.ts","./lassie/lassieconfig.ts","./lassie/lassiedog.ts","./index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n","impliedFormat":99},{"version":"-5608794531-export * from './dogconfig.js';\r\n","impliedFormat":99},{"version":"1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n","signature":"17588480778-import { DogConfig } from 'src-types';\r\nexport declare const DOG_CONFIG: DogConfig;\r\n","impliedFormat":99},{"version":"6091345804-import { DogConfig } from 'src-types';\nimport { DOG_CONFIG } from './dogconfig.js';\n\nexport abstract class Dog {\n\n public static getCapabilities(): DogConfig {\n return DOG_CONFIG;\n }\n}\n","signature":"22128633249-import { DogConfig } from 'src-types';\r\nexport declare abstract class Dog {\r\n static getCapabilities(): DogConfig;\r\n}\r\n","impliedFormat":99},{"version":"4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n","signature":"8131483665-import { DogConfig } from 'src-types';\r\nexport declare const LASSIE_CONFIG: DogConfig;\r\n","impliedFormat":99},{"version":"-32303727812-import { Dog } from '../dog.js';\nimport { LASSIE_CONFIG } from './lassieconfig.js';\n\nexport class LassieDog extends Dog {\n protected static getDogConfig = () => LASSIE_CONFIG;\n}\n","signature":"-20244062422-import { Dog } from '../dog.js';\r\nexport declare class LassieDog extends Dog {\r\n protected static getDogConfig: () => import(\"../index.js\").DogConfig;\r\n}\r\n","impliedFormat":99},{"version":"-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n","signature":"-16783836862-export * from 'src-types';\r\nexport * from './lassie/lassiedog.js';\r\n","impliedFormat":99}],"options":{"composite":true,"declaration":true,"module":100},"fileIdsList":[[3,4],[3],[3,7],[5,6],[2],[5,8]],"referencedMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"exportedModulesMap":[[5,2],[4,2],[8,3],[6,2],[7,6],[3,5]],"semanticDiagnosticsPerFile":[1,5,4,8,6,7,2,3],"latestChangedDtsFile":"./index.d.ts"},"version":"FakeTSVersion"}
253 "version": "-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n",
254 "signature": "-2632060142-export interface DogConfig {\r\n name
[all...]
/third_party/toybox/toys/other/
H A Dacpi.c32 static int read_int_at(int dirfd, char *name) in read_int_at() argument
37 if ((fd = openat(dirfd, name, O_RDONLY)) < 0) return -1; in read_int_at()
38 if (!fscanf(fil = xfdopen(fd, "r"), "%d", &ret)) perror_exit_raw(name); in read_int_at()
50 if (tree->name[0]=='.') return 0; in acpi_callback()
89 if (*tree->name=='.') return 0; in temp_callback()
115 if (*tree->name == '.') return 0; in cool_callback()

Completed in 17 milliseconds

1...<<261262263264265266267268269270>>...2379