Home
last modified time | relevance | path

Searched refs:name (Results 6751 - 6775 of 22614) sorted by relevance

1...<<271272273274275276277278279280>>...905

/third_party/python/Lib/test/
H A Dtest__opcode.py21 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 Dextended-test.c124 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 Dsync-playback.c130 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 Dentities.py6 # 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 Dsocket_helper.py224 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 Dbio_meth.c36 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 DvktAmberTestCaseUtil.cpp122 // {"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 DRemoveInactiveInterfaceVariables.cpp65 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 DesextcGeometryShaderInput.hpp71 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 DShCompile_test.cpp180 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 Dglmark2Benchmark.cpp32 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 Dobjects.h38 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 Dv3_ist.c19 * 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 Dcmp.c53 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 De_os.h113 # 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 Dicuinfo.cpp10 * 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 Ddsp_timing.py82 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 DDSLFunction.cpp24 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 DMain.cpp199 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 Dstrncmp.c20 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 Dstrcmp.c20 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 Dzutil.h96 # 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 Dmodule-position-event-sounds.c51 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 Dclient.c122 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 DLTOModule.h41 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);

Completed in 18 milliseconds

1...<<271272273274275276277278279280>>...905