Home
last modified time | relevance | path

Searched refs:name (Results 7651 - 7675 of 17671) sorted by relevance

1...<<301302303304305306307308309310>>...707

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemCopyImageToBufferTests.cpp83 const std::string& name, in CopyImageToBufferTestCase()
89 : TestCase (testCtx, name) in CopyImageToBufferTestCase()
390 const std::string name = "copy_" + de::toString(ndx + 1) + (pipelineProtectedAccess[ppa] ? "_protected_access" : "");; in createCopyImageToFloatBufferTests() local
391 copyStaticTests->addChild(new CopyImageToBufferTestCase<tcu::Vec4>(testCtx, name.c_str(), testData[ndx].fillValue, testData[ndx].data, cmdBufferType, vk::VK_FORMAT_R32G32B32A32_SFLOAT, pipelineProtectedAccess[ppa])); in createCopyImageToFloatBufferTests()
402 const std::string name = "copy_" + de::toString(ndx + 1) + (pipelineProtectedAccess[ppa] ? "_protected_access" : ""); in createCopyImageToFloatBufferTests() local
421 copyRandomTests->addChild(new CopyImageToBufferTestCase<tcu::Vec4>(testCtx, name.c_str(), clearValue.color, data, cmdBufferType, vk::VK_FORMAT_R32G32B32A32_SFLOAT, pipelineProtectedAccess[ppa])); in createCopyImageToFloatBufferTests()
82 CopyImageToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, vk::VkClearColorValue fillValue, ValidationData<T> data, CmdBufferType cmdBufferType, vk::VkFormat format, bool pipelineProtectedAccess) CopyImageToBufferTestCase() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsBuiltinMaskVarTests.cpp1396 const string name = getTestName(testType); in createSubgroupsBuiltinMaskVarTests() local
1407 addFunctionCaseWithPrograms(graphicGroup.get(), name, supportedCheck, initPrograms, test, caseDef); in createSubgroupsBuiltinMaskVarTests()
1420 addFunctionCaseWithPrograms(raytracingGroup.get(), name, supportedCheck, initPrograms, test, caseDef); in createSubgroupsBuiltinMaskVarTests()
1427 const string testName = name + (requiredSubgroupSize ? "_requiredsubgroupsize" : ""); in createSubgroupsBuiltinMaskVarTests()
1445 const string testName = name + (requiredSubgroupSize ? "_requiredsubgroupsize" : "") + "_" + getShaderStageName(stage); in createSubgroupsBuiltinMaskVarTests()
1468 const string testName = name + + "_" + getShaderStageName(caseDef.shaderStage); in createSubgroupsBuiltinMaskVarTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationGeometryGridRenderTests.cpp84 GridRenderTestCase (tcu::TestContext& testCtx, const std::string& name, const Flags flags);
94 GridRenderTestCase::GridRenderTestCase (tcu::TestContext& testCtx, const std::string& name, const Flags flags) in GridRenderTestCase() argument
95 : TestCase (testCtx, name) in GridRenderTestCase()
673 const char* name; member
708 group->addChild(new GridRenderTestCase(testCtx, cases[ndx].name, cases[ndx].flags)); in createGeometryGridRenderLimitsTests()
738 group->addChild(new GridRenderTestCase(testCtx, cases[ndx].name, cases[ndx].flags)); in createGeometryGridRenderScatterTests()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
H A DRewriteStructSamplers.cpp232 // Iterate once and build the name of the sampler. in RewriteModifiedStructFieldSelectionExpression()
243 // When indexed into a struct, get the field name instead and construct the sampler in RewriteModifiedStructFieldSelectionExpression()
244 // name. in RewriteModifiedStructFieldSelectionExpression()
251 // If left is a symbol, we have reached the end of the chain. Use the struct name in RewriteModifiedStructFieldSelectionExpression()
252 // to finish building the name of the sampler. in RewriteModifiedStructFieldSelectionExpression()
253 samplerName.insert(0, baseUniform->variable().name().data()); in RewriteModifiedStructFieldSelectionExpression()
468 new TField(newType, field->name(), field->line(), field->symbolType()); in stripStructSpecifierSamplers()
479 // Declare a new struct with the same name and the new fields. in stripStructSpecifierSamplers()
481 new TStructure(mSymbolTable, structure->name(), newFieldList, structure->symbolType()); in stripStructSpecifierSamplers()
522 extractFieldSamplers(variable.name() in extractStructSamplerUniforms()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DContext_gles_2_0_autogen.h16 void bindAttribLocation(ShaderProgramID programPacked, GLuint index, const GLchar *name); \
81 GLsizei *length, GLint *size, GLenum *type, GLchar *name); \
83 GLsizei *length, GLint *size, GLenum *type, GLchar *name); \
86 GLint getAttribLocation(ShaderProgramID programPacked, const GLchar *name); \
105 const GLubyte *getString(GLenum name); \
108 GLint getUniformLocation(ShaderProgramID programPacked, const GLchar *name); \
H A DProgramExecutable.h78 ASSERT(parent.isShaderIOBlock || !parent.name.empty()); in TransformFeedbackVarying()
79 if (!parent.name.empty()) in TransformFeedbackVarying()
81 name = parent.name + "." + name; in TransformFeedbackVarying()
91 fullNameStr << name; in nameWithArrayIndex() local
/third_party/vk-gl-cts/external/amber/src/src/amberscript/
H A Dparser_shader_test.cc57 EXPECT_EQ("1: invalid token when looking for shader name", r.Error()); in TEST_F()
70 const char* name; member
78 "SHADER " + std::string(test_data.name) + " my_shader PASSTHROUGH"; in TEST_P()
336 const char* name; member
350 std::string in = "SHADER " + std::string(test_data.name) + in TEST_P()
384 const char* name; member
398 std::string in = "SHADER vertex my_shader " + std::string(test_data.name) + in TEST_P()
437 EXPECT_EQ("7: duplicate shader name provided", r.Error()); in TEST_F()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DUniformsPerf.cpp355 std::string name = GetUniformLocationName(i, true); in initShaders() local
356 GLint location = glGetUniformLocation(mPrograms[0], name.c_str()); in initShaders()
358 ASSERT_EQ(location, glGetUniformLocation(mPrograms[1], name.c_str())); in initShaders()
363 std::string name = GetUniformLocationName(i, false); in initShaders() local
364 GLint location = glGetUniformLocation(mPrograms[0], name.c_str()); in initShaders()
366 ASSERT_EQ(location, glGetUniformLocation(mPrograms[1], name.c_str())); in initShaders()
/third_party/skia/third_party/externals/spirv-tools/source/
H A Ddisassemble.cpp153 // line as the tool name. in HandleHeader()
260 stream_ << ext_inst->name; in EmitOperand()
275 stream_ << opcode_desc->name; in EmitOperand()
337 stream_ << entry->name; in EmitOperand()
356 stream_ << entry->name; in EmitOperand()
368 // set bit, emit the name of that bit. Separate multiple names with '|'.
379 stream_ << entry->name;
384 // An operand value of 0 was provided, so represent it by the name
388 stream_ << entry->name;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Ddisassemble.cpp153 // line as the tool name. in HandleHeader()
260 stream_ << ext_inst->name; in EmitOperand()
275 stream_ << opcode_desc->name; in EmitOperand()
337 stream_ << entry->name; in EmitOperand()
356 stream_ << entry->name; in EmitOperand()
368 // set bit, emit the name of that bit. Separate multiple names with '|'.
379 stream_ << entry->name;
384 // An operand value of 0 was provided, so represent it by the name
388 stream_ << entry->name;
/third_party/skia/third_party/externals/libpng/contrib/tools/
H A Dgenpng.c87 const char *name; member
118 if (strcmp(colors[icolor].name, arg) == 0) in color_of()
631 const char *name; member
658 for (i=0; i<shape_count; ++i) if (strcmp(shape_defs[i].name, arg) == 0) in shape_of()
670 fprintf(stderr, "genpng: %s: not a valid shape name\n", arg); in shape_of()
689 read_wh(const char *name, const char *str) in read_wh() argument
698 fprintf(stderr, "genpng: %s: invalid number %s\n", name, str); in read_wh()
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
H A Dapplicationlayer.c93 if(strcmp(":method",iterator->name) == 0) in spdy_handler_new_stream()
99 else if(strcmp(":path",iterator->name) == 0) in spdy_handler_new_stream()
105 else if(strcmp(":version",iterator->name) == 0) in spdy_handler_new_stream()
111 else if(strcmp(":host",iterator->name) == 0) in spdy_handler_new_stream()
118 else if(strcmp(":scheme",iterator->name) == 0) in spdy_handler_new_stream()
126 if (SPDY_YES != SPDY_name_value_add(headers,iterator->name,iterator->value[i])) in spdy_handler_new_stream()
/third_party/skia/tests/
H A DPathOpsConicIntersectionTest.cpp73 static void writePng(const SkConic& c, const SkConic ch[2], const char* name) { in writePng() argument
112 filename.appendf("%s.png", name); in writePng()
116 static void writeDPng(const SkDConic& dC, const char* name) { in writeDPng() argument
153 filename.appendf("%s.png", name); in writeDPng()
158 static void chopBothWays(const SkDConic& dConic, double t, const char* name) { in chopBothWays() argument
176 writePng(conic, chopped, name); in chopBothWays()
/third_party/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp152 const char* name; in get_string() local
153 if (FcPatternGetString(pattern, field, index, (FcChar8**)&name) != FcResultMatch) { in get_string()
154 name = nullptr; in get_string()
156 return name; in get_string()
188 // Match the font name against a whilelist of fonts, returning the equivalence
211 const char name[40]; in GetFontEquivClass() member
321 if (strcasecmp(kFontEquivMap[i].name, fontname) == 0) in GetFontEquivClass()
607 // and lets WebKit know to try the next CSS family name. However, fontconfig
612 // record two strings: the family name after config processing and the
613 // family name afte
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-remap-sink.c39 "sink_name=<name for the sink> "
41 "master=<name of sink to remap> "
323 pa_proplist_setf(pl, PA_PROP_DEVICE_DESCRIPTION, "Remapped %s", k ? k : dest->name); in sink_input_moving_cb()
392 if (!(sink_data.name = pa_xstrdup(pa_modargs_get_value(ma, "sink_name", NULL)))) in pa__init()
393 sink_data.name = pa_sprintf_malloc("%s.remapped", master->name); in pa__init()
396 pa_proplist_sets(sink_data.proplist, PA_PROP_DEVICE_MASTER_DEVICE, master->name); in pa__init()
409 pa_proplist_setf(sink_data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Remapped %s", k ? k : master->name); in pa__init()
H A Dmodule-remap-source.c46 "source_name=<name for the source> "
48 "master=<name of source to filter> "
283 pa_proplist_setf(pl, PA_PROP_DEVICE_DESCRIPTION, "Remapped %s", k ? k : dest->name); in source_output_moving_cb()
352 if (!(source_data.name = pa_xstrdup(pa_modargs_get_value(ma, "source_name", NULL)))) in pa__init()
353 source_data.name = pa_sprintf_malloc("%s.remapped", master->name); in pa__init()
356 pa_proplist_sets(source_data.proplist, PA_PROP_DEVICE_MASTER_DEVICE, master->name); in pa__init()
369 pa_proplist_setf(source_data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Remapped %s", k ? k : master->name); in pa__init()
/third_party/pulseaudio/src/pulsecore/
H A Dsocket-client.c428 pa_socket_client* pa_socket_client_new_string(pa_mainloop_api *m, bool use_rtclock, const char*name, uint16_t default_port) {
434 pa_assert(name);
438 if (pa_is_ip6_address(name)) {
439 size_t len = strlen(name);
441 memcpy(name_buf + 1, name, len);
446 name_buf = pa_xstrdup(name);
/third_party/spirv-tools/source/
H A Ddisassemble.cpp233 // line as the tool name. in EmitHeaderGenerator()
342 stream_ << ext_inst->name; in EmitOperand()
357 stream_ << opcode_desc->name; in EmitOperand()
418 stream_ << entry->name; in EmitOperand()
437 stream_ << entry->name; in EmitOperand()
449 // set bit, emit the name of that bit. Separate multiple names with '|'.
460 stream_ << entry->name;
465 // An operand value of 0 was provided, so represent it by the name
469 stream_ << entry->name;
/third_party/typescript/tests/baselines/reference/
H A DstrictOptionalProperties1.js184 name: string
188 name: string
197 name: 'hi',
369 name: 'hi',
450 name: string;
454 name: string;
/third_party/toybox/kconfig/
H A Dmconf.c206 "Enter the name of the configuration file you wish to load. "
207 "Accept the name shown to restore the configuration you "
215 "default, entering the name of the file here will allow you\n"
228 "Entering a file name here will allow you to later retrieve, modify\n"
332 str_printf(r, " Defined at %s:%d\n", prop->menu->file->name, in get_prompt_str()
348 str_printf(r, " (%s [=%s])", menu->sym->name ? in get_prompt_str()
349 menu->sym->name : "<choice>", in get_prompt_str()
362 str_printf(r, "Symbol: %s [=%s]\n", sym->name, in get_symbol_str()
703 if (sym->name) { in show_help()
704 str_printf(&help, "CONFIG_%s:\n\n", sym->name); in show_help()
[all...]
/third_party/skia/third_party/externals/expat/expat/lib/
H A Dexpat.h156 If type == XML_CTYPE_NAME, then the name points to the name, and
158 quant fields indicates any quantifiers placed on the name.
160 CHOICE and SEQ will have name NULL, the number of children in
172 XML_Char *name; member
182 const XML_Char *name,
235 namespace. The expanded name is the concatenation of the namespace
237 name. If the namespace separator is '\0' then the namespace URI
271 /* atts is array of name/value pairs, terminated by 0;
275 const XML_Char *name,
1023 const XML_LChar *name; global() member
[all...]
/third_party/protobuf/js/
H A Dmaps_test.js15 // * Neither the name of Google Inc. nor the names of its
427 if (err.name != 'TypeError' && err.name != 'ReferenceError') {
445 if (err.name != 'TypeError' && err.name != 'ReferenceError') {
462 if (err.name != 'TypeError' && err.name != 'ReferenceError') {
/third_party/python/Objects/
H A Dclassobject.c179 method_getattro(PyObject *obj, PyObject *name) in method_getattro() argument
190 descr = _PyType_Lookup(tp, name); in method_getattro()
203 return PyObject_GetAttr(im->im_func, name); in method_getattro()
399 instancemethod_getattro(PyObject *self, PyObject *name) in instancemethod_getattro() argument
408 descr = _PyType_Lookup(tp, name); in instancemethod_getattro()
420 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), name); in instancemethod_getattro()
/third_party/protobuf/python/google/protobuf/internal/
H A Dunknown_fields_test.py18 # * Neither the name of Google Inc. nor the names of its
183 def InternalCheckUnknownField(self, name, expected_value):
186 field_descriptor = self.descriptor.fields_by_name[name]
196 def CheckUnknownField(self, name, unknown_fields, expected_value):
197 field_descriptor = self.descriptor.fields_by_name[name]
394 def CheckUnknownField(self, name, expected_value):
395 field_descriptor = self.descriptor.fields_by_name[name]
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMap.java16 * * Neither the name of Google Inc. nor the names of its
55 @JRubyClass(name = "Map", include = "Enumerable")
149 @JRubyMethod(name = "[]=")
170 @JRubyMethod(name = "[]")
190 @JRubyMethod(name = "==")
309 @JRubyMethod(name = "has_key?")
341 @JRubyMethod(name = "to_h")

Completed in 27 milliseconds

1...<<301302303304305306307308309310>>...707