/third_party/python/Lib/test/ |
H A D | test__opcode.py | 21 for name, code in filter(lambda item: item[0] not in dis.deoptmap, dis.opmap.items()): 22 with self.subTest(opname=name): 50 for name, code in filter(lambda item: item[0] not in dis.deoptmap, dis.opmap.items()): 51 with self.subTest(opname=name):
|
/third_party/pulseaudio/src/tests/ |
H A D | extended-test.c | 124 char name[64]; in context_state_callback() local 135 snprintf(name, sizeof(name), "stream #%i", i); in context_state_callback() 137 streams[i] = pa_stream_new_extended(c, name, formats, 1, NULL); in context_state_callback()
|
H A D | sync-playback.c | 130 char name[64]; in context_state_callback() local 134 snprintf(name, sizeof(name), "stream #%i", i); in context_state_callback() 136 streams[i] = pa_stream_new(c, name, &sample_spec, NULL); in context_state_callback()
|
/third_party/python/Lib/html/ |
H A D | entities.py | 6 # maps the HTML entity name to the Unicode code point 2499 # maps the Unicode code point to the HTML entity name 2502 # maps the HTML entity name to the character 2506 for (name, codepoint) in name2codepoint.items(): 2507 codepoint2name[codepoint] = name 2508 entitydefs[name] = chr(codepoint) 2510 del name, codepoint
|
/third_party/python/Lib/test/support/ |
H A D | socket_helper.py | 224 captured_errnos = [getattr(errno, name, num) 225 for (name, num) in default_errnos] 226 gai_errnos = [getattr(socket, name, num) 227 for (name, num) in default_gai_errnos]
|
/third_party/openssl/crypto/bio/ |
H A D | bio_meth.c | 36 BIO_METHOD *BIO_meth_new(int type, const char *name) in BIO_meth_new() argument 41 || (biom->name = OPENSSL_strdup(name)) == NULL) { in BIO_meth_new() 53 OPENSSL_free(biom->name); in BIO_meth_free()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/amber/ |
H A D | vktAmberTestCaseUtil.cpp | 122 // {"filename","test name","description"[,requirement[,requirement[,requirement..]]]}[,] in parse() 128 // {"testname.amber","test name","test description"}, in parse() 193 const char* name, in createAmberTestCase() 199 return createAmberTestCase(testCtx, name, "", category, filename, requirements, imageRequirements, bufferRequirements); in createAmberTestCase() 203 const char* name, in createAmberTestCase() 218 AmberTestCase *testCase = new AmberTestCase(testCtx, name, description, readFilename); in createAmberTestCase() 192 createAmberTestCase(tcu::TestContext& testCtx, const char* name, const char* category, const std::string& filename, const std::vector<std::string> requirements, const std::vector<vk::VkImageCreateInfo> imageRequirements, const std::vector<BufferRequirement> bufferRequirements) createAmberTestCase() argument 202 createAmberTestCase(tcu::TestContext& testCtx, const char* name, const char* description, const char* category, const std::string& filename, const std::vector<std::string> requirements, const std::vector<vk::VkImageCreateInfo> imageRequirements, const std::vector<BufferRequirement> bufferRequirements) createAmberTestCase() argument
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
H A D | RemoveInactiveInterfaceVariables.cpp | 65 bool IsVariableActive(const std::vector<Variable> &mVars, const ImmutableString &name) in IsVariableActive() argument 69 if (name == var.name) in IsVariableActive() 116 !IsVariableActive(mInterfaceBlocks, type.getInterfaceBlock()->name()); in visitDeclaration()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
H A D | esextcGeometryShaderInput.hpp | 71 GeometryShader_gl_in_ArrayContentsTest(Context& context, const ExtParameters& extParams, const char* name, 135 GeometryShader_gl_in_ArrayLengthTest(Context& context, const ExtParameters& extParams, const char* name, 271 GeometryShader_gl_PointSize_ValueTest(Context& context, const ExtParameters& extParams, const char* name, 338 GeometryShader_gl_Position_ValueTest(Context& context, const ExtParameters& extParams, const char* name,
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
H A D | ShCompile_test.cpp | 180 const auto localeExists = [](const std::string name) { in TEST_F() 181 return bool(setlocale(LC_ALL, name.c_str())); in TEST_F() 220 << "float formatted incorrectly with locale (" << localizedLoc.name() << ") set"; in TEST_F() 223 << "different output with locale (" << localizedLoc.name() << ") set"; in TEST_F()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | glmark2Benchmark.cpp | 32 const char *name; member 88 os << static_cast<const PlatformParameters &>(params) << "_" << params.info.name; in operator <<() 111 std::string story = GetParam().info.name; in GLMark2Benchmark() 127 const char *benchmarkName = benchmarkInfo.name; in run()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | objects.h | 38 const char *name; member 48 const char *OBJ_NAME_get(const char *name, int type); 49 int OBJ_NAME_add(const char *name, int type, const char *data); 50 int OBJ_NAME_remove(const char *name, int type);
|
/third_party/openssl/crypto/x509/ |
H A D | v3_ist.c | 19 * Issuer Sign Tool (1.2.643.100.112) The name of the tool used to signs the subject (ASN1_SEQUENCE) 51 if (strcmp(cnf->name, "signTool") == 0) { 59 } else if (strcmp(cnf->name, "cATool") == 0) { 67 } else if (strcmp(cnf->name, "signToolCert") == 0) { 75 } else if (strcmp(cnf->name, "cAToolCert") == 0) {
|
/third_party/openssl/fuzz/ |
H A D | cmp.c | 53 X509_NAME *name = X509_NAME_new(); in cmp_client_process_response() local 63 || name == NULL || !X509_set_issuer_name(ctx->oldCert, name) in cmp_client_process_response() 98 X509_NAME_free(name); in cmp_client_process_response()
|
/third_party/openssl/ohos_lite/ |
H A D | e_os.h | 113 # define HAS_LFN_SUPPORT(name) (pathconf((name), _PC_NAME_MAX) > 12) 341 struct hostent *gethostbyname(const char *name); 343 struct servent *getservbyname(const char *name, const char *proto);
|
/third_party/skia/third_party/externals/icu/source/tools/icuinfo/ |
H A D | icuinfo.cpp | 10 * file name: icuinfo.cpp 173 const char *name = uplug_getPlugName(plug); in cmd_listplugins() local 183 name!=NULL?(*name?name:"this plugin did not call uplug_setPlugName()"):"(null)" in cmd_listplugins()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/scripts/ |
H A D | dsp_timing.py | 82 name, var = line.partition("=")[::2] 83 myvars[name.strip()] = var 90 name, var = line.partition("=")[::2] 91 myvars[name.strip()] = var
|
/third_party/skia/src/sksl/dsl/ |
H A D | DSLFunction.cpp | 24 void DSLFunction::init(DSLModifiers modifiers, const DSLType& returnType, skstd::string_view name, in init() argument 59 name == "main" ? name : DSLWriter::Name(name), in init()
|
/third_party/skia/src/sksl/lex/ |
H A D | Main.cpp | 199 std::string name, delimiter, pattern; in process() local 200 if (split >> name >> delimiter >> pattern) { in process() 202 SkASSERT(name != ""); in process() 205 tokens.push_back(name); in process()
|
/third_party/optimized-routines/string/test/ |
H A D | strncmp.c | 20 const char *name; member 92 fun->name, s1align, s2align, maxlen, len, diffpos, r); in test() 104 for (int i = 0; funtab[i].name; i++) in main() 134 printf ("%s %s\n", err_count ? "FAIL" : pass, funtab[i].name); in main()
|
H A D | strcmp.c | 20 const char *name; member 90 ERR ("%s(align %d, align %d, %d) failed, returned %d\n", fun->name, in test() 103 for (int i = 0; funtab[i].name; i++) in main() 127 printf ("%s %s\n", err_count ? "FAIL" : pass, funtab[i].name); in main()
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | zutil.h | 96 # define F_OPEN(name, mode) \ 97 ft_fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512") 143 # define F_OPEN(name, mode) ft_fopen((name), (mode))
|
/third_party/pulseaudio/src/modules/ |
H A D | module-position-event-sounds.c | 51 const char *name; member 137 pa_sink_input_new_data_add_volume_factor_sink(data, u->name, &v); in sink_input_fixate_hook_callback() 157 u->name = m->name; in pa__init()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | client.c | 122 void pa_client_set_name(pa_client *c, const char *name) { in pa_client_set_name() argument 124 pa_assert(name); in pa_client_set_name() 126 pa_log_info("Client %u changed name from \"%s\" to \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME)), name); in pa_client_set_name() 127 pa_proplist_sets(c->proplist, PA_PROP_APPLICATION_NAME, name); in pa_client_set_name()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/legacy/ |
H A D | LTOModule.h | 41 StringRef name; member 87 /// Create a MemoryBuffer from a memory range with an optional name. 89 makeBuffer(const void *mem, size_t length, StringRef name = ""); 144 /// Get the name of the symbol at the specified index. 147 return _symbols[index].name; in getSymbolName() 210 bool objcClassNameFromExpression(const Constant *c, std::string &name);
|