Home
last modified time | relevance | path

Searched refs:names (Results 526 - 550 of 2013) sorted by relevance

1...<<21222324252627282930>>...81

/third_party/node/deps/openssl/openssl/providers/fips/
H A Dfipsprov.c19 #include "prov/names.h"
220 * For the algorithm names, we use the following formula for our primary
221 * names:
239 * We add diverse other names where applicable, such as the names that
240 * NIST uses, or that are used for ASN.1 OBJECT IDENTIFIERs, or names
244 /* Our primary name:NiST name[:our older names] */
276 /* Our primary name[:ASN.1 OID name][:our older names] */
527 * internal name. This is how symbol names are treated by default
529 * of libfips, and we build our libraries with mixed case symbol names,
[all...]
/third_party/openssl/providers/fips/
H A Dfipsprov.c19 #include "prov/names.h"
220 * For the algorithm names, we use the following formula for our primary
221 * names:
239 * We add diverse other names where applicable, such as the names that
240 * NIST uses, or that are used for ASN.1 OBJECT IDENTIFIERs, or names
244 /* Our primary name:NiST name[:our older names] */
276 /* Our primary name[:ASN.1 OID name][:our older names] */
527 * internal name. This is how symbol names are treated by default
529 * of libfips, and we build our libraries with mixed case symbol names,
[all...]
/third_party/python/Lib/test/
H A Dtest_generators.py118 # check generator names
124 # modify generator names
130 # generator names must be a string and cannot be deleted
136 # modify names of the function creating the generator
512 names = []
519 names.append(name)
522 self.assertEqual(names, expected)
1014 >>> names = "ABCDEFGHIJKLM"
1015 >>> sets = [disjointSet(name) for name in names]
H A Dtest_ast.py367 ast.Import(names=[ast.alias(name='builtins', lineno=1, col_offset=0)], lineno=1, col_offset=0),
368 ast.Import(names=[ast.alias(name='traceback', lineno=0, col_offset=0)], lineno=0, col_offset=1)
392 self.assertEqual(len(im.names), 1)
393 alias = im.names[0]
402 alias = im.names[0]
411 alias = im.names[0]
420 alias = im.names[0]
1240 names=[ast.alias(name='sleep')],
1250 names=[ast.alias(name='sleep',
1492 self.stmt(ast.Import([]), "empty names o
[all...]
/third_party/spirv-tools/test/opt/
H A Dlocal_ssa_elim_test.cpp290 const std::string names = in TEST_F() local
405 SinglePassRunAndCheck<SSARewritePass>(predefs + names + predefs2 + before, in TEST_F()
406 predefs + names + predefs2 + after, in TEST_F()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineCreationCacheControlTests.cpp476 const vector<const char*>& names) in createShaderModules()
479 output.reserve(names.size()); in createShaderModules()
481 for (const auto& name : names) in createShaderModules()
473 createShaderModules(const DeviceInterface& vk, VkDevice device, const BinaryCollection& collection, const vector<const char*>& names) createShaderModules() argument
/third_party/jinja2/
H A Dparser.py301 # to jinja. we do not support hyphens in block names, so let's
305 "Block names in Jinja have to be valid Python identifiers and may not"
366 node.names = []
379 if node.names:
387 "names starting with an underline can not be imported",
393 node.names.append((target.name, alias.name))
395 node.names.append(target.name)
483 by setting `with_tuple` to `False`. If only assignments to names are
693 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/mesa3d/src/gallium/frontends/clover/spirv/
H A Dinvocation.cpp158 std::unordered_map<SpvId, std::string> names; in create_binary_from_spirv() local
170 names.emplace(get<SpvId>(inst, 1), in create_binary_from_spirv()
176 // SPIRV-LLVM-Translator stores param type names as OpStrings in create_binary_from_spirv()
483 auto name_it = names.find(id); in create_binary_from_spirv()
484 if (name_it != names.end()) in create_binary_from_spirv()
/third_party/node/deps/v8/third_party/jinja2/
H A Dparser.py264 # to jinja. we do not support hyphens in block names, so let's
268 "Block names in Jinja have to be valid Python "
315 node.names = []
328 if node.names:
336 "names starting with an underline can not be imported",
342 node.names.append((target.name, alias.name))
344 node.names.append(target.name)
415 by setting `with_tuple` to `False`. If only assignments to names are
615 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/node/tools/inspector_protocol/jinja2/
H A Dparser.py261 # to jinja. we do not support hyphens in block names, so let's
264 self.fail('Block names in Jinja have to be valid Python '
308 node.names = []
319 if node.names:
326 self.fail('names starting with an underline can not '
331 node.names.append((target.name, alias.name))
333 node.names.append(target.name)
401 by setting `with_tuple` to `False`. If only assignments to names are
594 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/node/deps/v8/src/inspector/
H A Dv8-runtime-agent-impl.cc14 * * Neither the name of Google Inc. nor the names of its
672 v8::PersistentValueVector<v8::String> names(m_inspector->isolate()); in globalLexicalScopeNames()
673 v8::debug::GlobalLexicalScopeNames(scope.context(), &names); in globalLexicalScopeNames()
675 for (size_t i = 0; i < names.Size(); ++i) { in globalLexicalScopeNames()
677 toProtocolString(m_inspector->isolate(), names.Get(i))); in globalLexicalScopeNames()
/third_party/node/deps/v8/src/objects/
H A Dsource-text-module.cc136 int cell_index, Handle<FixedArray> names) { in CreateExport()
137 DCHECK_LT(0, names->length()); in CreateExport()
143 for (int i = 0, n = names->length(); i < n; ++i) { in CreateExport()
144 Handle<String> name(String::cast(names->get(i)), isolate); in CreateExport()
134 CreateExport(Isolate* isolate, Handle<SourceTextModule> module, int cell_index, Handle<FixedArray> names) CreateExport() argument
/third_party/node/deps/openssl/openssl/apps/
H A Docsp.c66 STACK_OF(OPENSSL_STRING) *names,
967 STACK_OF(OPENSSL_STRING) *names, in print_ocsp_summary()
977 if (req == NULL || !sk_OPENSSL_STRING_num(names)) in print_ocsp_summary()
985 name = sk_OPENSSL_STRING_value(names, i); in print_ocsp_summary()
966 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) print_ocsp_summary() argument
/third_party/python/Lib/
H A Dshutil.py322 names = os.listxattr(src, follow_symlinks=follow_symlinks)
327 for name in names:
345 unaffected. `src` and `dst` are path-like objects or path names given as
445 def _ignore_patterns(path, names):
448 ignored_names.extend(fnmatch.filter(names, pattern))
537 being visited by copytree(), and `names` which is the list of
540 callable(src, names) -> ignored_names
544 list of names relative to the `src` directory that should
1365 user and group can be the uid/gid or the user/group names, and in that case,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDitheringTests.cpp1103 const std::string names[] = { "Less", "Greater", "Equal" }; in createRenderPassDitheringTests() local
1131 depthStencilTests->addChild(new DitheringTest(testCtx, "stencil" + names[j] + "_depth" + names[k] + "_op" + names[l] + "_" + formatName, testParams)); in createRenderPassDitheringTests()
/third_party/skia/third_party/externals/jinja2/
H A Dparser.py264 # to jinja. we do not support hyphens in block names, so let's
268 "Block names in Jinja have to be valid Python "
315 node.names = []
328 if node.names:
336 "names starting with an underline can not be imported",
342 node.names.append((target.name, alias.name))
344 node.names.append(target.name)
415 by setting `with_tuple` to `False`. If only assignments to names are
615 only names and literals are parsed. The `no_condexpr` parameter is
/third_party/openssl/apps/
H A Docsp.c66 STACK_OF(OPENSSL_STRING) *names,
967 STACK_OF(OPENSSL_STRING) *names, in print_ocsp_summary()
977 if (req == NULL || !sk_OPENSSL_STRING_num(names)) in print_ocsp_summary()
985 name = sk_OPENSSL_STRING_value(names, i); in print_ocsp_summary()
966 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) print_ocsp_summary() argument
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dsfobjs.c155 rec = face->name_table.names; in FT_LOCAL_DEF()
223 /* we will thus favor names encoded in Windows formats if available */ in FT_LOCAL_DEF()
229 rec = face->name_table.names + found_win; in FT_LOCAL_DEF()
242 /* means UTF-16 encoded names (UCS-4 values are only used within */ in FT_LOCAL_DEF()
253 rec = face->name_table.names + found_apple; in FT_LOCAL_DEF()
258 rec = face->name_table.names + found_unicode; in FT_LOCAL_DEF()
1405 /* destroy the postscript names table if it is loaded */ in sfnt_done_face()
/third_party/python/Python/
H A Dast.c893 ret = validate_nonempty_seq(stmt->v.Import.names, "names", "Import"); in validate_stmt()
900 ret = validate_nonempty_seq(stmt->v.ImportFrom.names, "names", "ImportFrom"); in validate_stmt()
903 ret = validate_nonempty_seq(stmt->v.Global.names, "names", "Global"); in validate_stmt()
906 ret = validate_nonempty_seq(stmt->v.Nonlocal.names, "names", "Nonlocal"); in validate_stmt()
H A Dsysmodule.c1568 sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag
2078 PyObject *names = PyTuple_New(len); in list_stdlib_module_names() local
2079 if (names == NULL) { in list_stdlib_module_names()
2086 Py_DECREF(names); in list_stdlib_module_names()
2089 PyTuple_SET_ITEM(names, i, name); in list_stdlib_module_names()
2093 "(O)", names); in list_stdlib_module_names()
2094 Py_DECREF(names); in list_stdlib_module_names()
2445 builtin_module_names -- tuple of module names built into this interpreter\n\
H A Dmarshal.c1362 PyObject *names = NULL; in r_object() local
1401 names = r_object(p); in r_object()
1402 if (names == NULL) in r_object()
1440 .names = names, in r_object()
1468 Py_XDECREF(names); in r_object()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassDitheringTests.cpp1104 const std::string names[] = { "Less", "Greater", "Equal" }; in createRenderPassDitheringTests() local
1132 depthStencilTests->addChild(new DitheringTest(testCtx, "stencil" + names[j] + "_depth" + names[k] + "_op" + names[l] + "_" + formatName, "", testParams)); in createRenderPassDitheringTests()
/third_party/backends/backend/
H A Dmustek_pp_cis.c271 static const char* names[4] = { "ASIC", "SCAN_VAL", "MOTOR", "BANK_COUNT" }; in Mustek_PP_1015_reg_r_name() local
272 return names[id & 0x03]; in Mustek_PP_1015_reg_r_name()
278 static const char* names[4] = { "????", "MOTOR_HOME", "????", "MOTOR_BUSY" }; in Mustek_PP_1015_bit_name() local
279 return names[id & 0x03]; in Mustek_PP_1015_bit_name()
285 static const char* names[4][4] = in Mustek_PP_1015_reg_w_name() local
292 return names[(id & 0x30) >> 4][id & 0x03]; in Mustek_PP_1015_reg_w_name()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcldrtest.c964 // log_verbose("skipping test for %s, some month and country names known to use aux exemplars\n", currLoc); in VerifyTranslation()
989 UResourceBundle* names = ures_getByKeyWithFallback(greg, "dayNames", NULL, &errorCode); in VerifyTranslation() local
990 UResourceBundle* format = ures_getByKeyWithFallback(names, "format", NULL, &errorCode); in VerifyTranslation()
1004 log_knownIssue("cldrbug:8899", "lrc and mzn locales don't have translated day names")) { in VerifyTranslation()
1008 log_knownIssue("cldrbug:14995", "mai/sd_Deva day names use chars not in exemplars")) { in VerifyTranslation()
1012 log_knownIssue("cldrbug:15355", "ks_Deva day names use chars not in exemplars")) { in VerifyTranslation()
1030 ures_close(names); in VerifyTranslation()
1032 names = ures_getByKeyWithFallback(greg, "monthNames", NULL, &errorCode); in VerifyTranslation()
1033 format = ures_getByKeyWithFallback(names,"format", NULL, &errorCode); in VerifyTranslation()
1045 log_knownIssue("cldrbug:14995", "sd_Deva month names us in VerifyTranslation()
[all...]
/third_party/python/Modules/
H A D_elementtree.c3053 PyObject *names; member
3081 /* look the 'raw' name up in the names dictionary */ in makeuniversal()
3086 value = PyDict_GetItemWithError(self->names, key); in makeuniversal()
3129 /* add to names dictionary */ in makeuniversal()
3130 if (PyDict_SetItem(self->names, key, value) < 0) { in makeuniversal()
3602 self->target = self->entity = self->names = NULL; in xmlparser_new()
3641 self->names = PyDict_New(); in _elementtree_XMLParser___init___impl()
3642 if (!self->names) { in _elementtree_XMLParser___init___impl()
3650 Py_CLEAR(self->names); in _elementtree_XMLParser___init___impl()
3666 Py_CLEAR(self->names); in _elementtree_XMLParser___init___impl()
[all...]

Completed in 51 milliseconds

1...<<21222324252627282930>>...81