Home
last modified time | relevance | path

Searched refs:string (Results 6776 - 6800 of 27492) sorted by relevance

1...<<271272273274275276277278279280>>...1100

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/
H A DvktTransformFeedbackSimpleTests.cpp131 std::string topologyName; // The suffix for the name of test.
653 TCU_FAIL(std::string("Failed at item ") + de::toString(i) + " received:" + de::toString(tfData[i]) + " expected:" + de::toString(i)); in verifyTransformFeedbackBuffer()
1088 std::vector<std::string> verifyVertexDataWithWinding (const std::vector<T>& reference, const T* result, const size_t vertexCount, const size_t verticesPerPrimitive, const T& threshold) in verifyVertexDataWithWinding()
1094 std::vector<std::string> errors; in verifyVertexDataWithWinding()
1145 void checkErrorVec (tcu::TestLog& log, const std::vector<std::string>& errors) in checkErrorVec()
1200 TCU_THROW(NotSupportedError, std::string("shaderClipDistance feature is not supported")); in TransformFeedbackBuiltinTestInstance()
1202 TCU_THROW(NotSupportedError, std::string("shaderCullDistance feature is not supported")); in TransformFeedbackBuiltinTestInstance()
1204 TCU_THROW(NotSupportedError, std::string("maxTransformFeedbackBuffers=" + de::toString(tfBuffersSupported) + ", while test requires " + de::toString(tfBuffersRequired)).c_str()); in TransformFeedbackBuiltinTestInstance()
1222 TCU_FAIL(std::string("Failed at item ") + de::toString(i) + " received:" + de::toString(tfData[i]) + " expected:" + de::toString(expected)); in verifyTransformFeedbackBuffer()
1315 TCU_THROW(NotSupportedError, std::string("maxTransformFeedbackBuffer in TransformFeedbackDepthClipControlTestInstance()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp59 using std::string;
1537 const string texCoordType = "vec" + de::toString(numTexCoordComponents); in genVertexShaderSource()
1575 const string& funcCall, in genFragmentShaderSource()
1586 const string texCoordType = "vec" + de::toString(numTexCoordComponents); in genFragmentShaderSource()
1589 const string outType = glu::getDataTypeName(getSamplerGatherResultType(samplerType)); in genFragmentShaderSource()
1648 string genGatherFuncCall (GatherType gatherType, in genGatherFuncCall()
1653 const string& refZExpr, in genGatherFuncCall()
1659 string result; in genGatherFuncCall()
1660 string levelStr; in genGatherFuncCall()
1783 + string(indentationDept in genGatherFuncCall()
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DShaderLang.cpp71 // of printing pre-processed tokens, which requires knowing the string literal
109 bool parsingBuiltIns, std::string sourceEntryPointName = "") in CreateParseContext()
242 // Parse and add to the given symbol table the content of the given shader string.
752 void RecordProcesses(TIntermediate& intermediate, EShMessages messages, const std::string& sourceEntryPointName) in RecordProcesses()
797 const std::string sourceEntryPointName = "", in ProcessDeferred()
812 // string 0: system preamble in ProcessDeferred()
813 // string 1: custom preamble in ProcessDeferred()
814 // string 2...numStrings+1: user's shader in ProcessDeferred()
815 // string numStrings+2: "int;" in ProcessDeferred()
907 // The string ma in ProcessDeferred()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtmsgfmt.cpp210 #include <string.h>
273 // rather than toPattern() reconstituting a new, equivalent pattern string (testResultPatterns). in PatternTest()
312 // rather than toPattern() reconstituting a new, equivalent pattern string (testResultPatterns). in PatternTest()
478 UnicodeString string; in testSimpleFormat() local
480 form->format(testArgs1, 2, string, ignore, err); in testSimpleFormat()
481 if (U_FAILURE(err) || string != "The disk \"MyDisk\" contains 0 file(s).") { in testSimpleFormat()
486 string.remove(); in testSimpleFormat()
487 form->format(testArgs2, 2, string, ignore, err); in testSimpleFormat()
488 if (U_FAILURE(err) || string != "The disk \"MyDisk\" contains 1 file(s).") { in testSimpleFormat()
489 logln(string); in testSimpleFormat()
517 UnicodeString string; testMsgFormatChoice() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp263 const std::string& name,
293 const std::string& name,
363 const std::string& name, in addFunctionTestCase()
529 const std::string& name,
555 const std::string& name, in addFunctionTestCase()
586 const std::string& name,
626 const std::string& name, in addFunctionTestCase()
690 const std::string& name,
727 const std::string& name, in addFunctionTestCase()
805 const std::string
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/
H A DDawnTest.cpp48 std::string ParamName(wgpu::BackendType type) { in ParamName()
178 std::string adapterType = AdapterTypeName(param.adapterProperties.adapterType); in operator <<()
194 std::string DawnTestBase::PrintToStringParamName::SanitizeParamName(std::string paramName, in SanitizeParamName()
197 std::string sanitizedName = std::regex_replace(paramName, std::regex("[^a-zA-Z0-9]+"), "_"); in SanitizeParamName()
206 std::string prefix = mTest + ".TheTestNameUsuallyGoesHere/"; in SanitizeParamName()
207 std::string testFormat = prefix + sanitizedName; in SanitizeParamName()
211 std::string suffix = std::string("__") + std::to_string(index); in SanitizeParamName()
322 std::string typ in ParseArgs()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite.h43 #include <string>
54 // Do UTF-8 validation on string type in Debug build only
210 // required string message = 3;
309 // Read a string. ReadString(..., std::string* value) requires an
310 // existing std::string.
312 std::string* value);
313 // ReadString(..., std::string** p) is internal-only, and should only be
314 // called from generated code. It starts by setting *p to "new std::string" if
318 static inline bool ReadString(io::CodedInputStream* input, std::string**
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktGlobalPriorityQueueTests.cpp51 #include <string>
448 const std::string& name,
450 const std::string& desc = {});
465 const std::string& name, in GPQCase()
467 const std::string& desc) in GPQCase()
600 std::string getShaderImageBufferType (const tcu::TextureFormat& format) in getShaderImageBufferType()
607 const std::string producerComp(R"glsl( in initPrograms()
673 const std::string vert(R"glsl( in initPrograms()
697 const std::map<std::string, std::string> abbreviation in initPrograms()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelinePushDescriptorTests.cpp86 void checkAllSupported (const Extensions& supportedExtensions, const vector<string>& requiredExtensions) in checkAllSupported()
98 vector<string> requiredExtensions = { "VK_KHR_get_physical_device_properties2" }; in createInstanceWithGetPhysicalDeviceProperties2()
104 const char *innerCString(const string &str) in innerCString()
133 vector<string> requiredExtensionsStr = { "VK_KHR_push_descriptor" }; in createDeviceWithPushDescriptor()
638 const string& name,
639 const string& description,
651 const string& name, in PushDescriptorBufferGraphicsTest()
652 const string& description, in PushDescriptorBufferGraphicsTest()
675 const string bufferType = m_params.descriptorType == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER ? "uniform" : "readonly buffer"; in initPrograms()
676 const string vertexSr in initPrograms()
[all...]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Dpswalk.c61 op->common.value.string); in acpi_ps_delete_parse_tree()
65 op->common.value.string); in acpi_ps_delete_parse_tree()
/kernel/linux/linux-5.10/scripts/gdb/linux/
H A Dgenpd.py17 path = kobj['name'].string()
60 genpd['name'].string(),
/kernel/linux/linux-6.6/drivers/acpi/acpica/
H A Dpswalk.c61 op->common.value.string); in acpi_ps_delete_parse_tree()
65 op->common.value.string); in acpi_ps_delete_parse_tree()
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dacpi.c24 brcmf_dbg(INFO, "ACPI module-instance=%s\n", o->string.pointer); in brcmf_acpi_probe()
27 o->string.pointer); in brcmf_acpi_probe()
/kernel/linux/linux-6.6/scripts/gdb/linux/
H A Dgenpd.py17 path = kobj['name'].string()
60 genpd['name'].string(),
/kernel/liteos_a/testsuites/unittest/container/smoke/
H A DIt_uts_container_006.cpp35 std::string containerType = "uts"; in UtsContainerTest()
46 std::string filePath = GenContainerLinkPath(childsPid, containerType); in UtsContainerTest()
/third_party/elfio/tests/elf_examples/
H A Dasm.s20 msg db 'Hello, world!',0xa ;our dear string
21 len equ $ - msg ;length of our dear string
/third_party/gn/src/base/strings/
H A Dutf_offset_string_conversions.h10 #include <string>
17 // string in response to various adjustments one might do to that string
39 // end of the string. Valid input offsets range from 0 to |src_len|. On
41 // position in the output string. If an offset cannot be successfully
56 // provided represent offsets into an adjusted string and the caller wants
57 // to know the offsets they correspond to in the original string. If an
70 // string was altered in some way, with the alterations recorded as
71 // adjustments in |first_adjustments|. Then suppose the resulting string is
74 // adjustments being with respect to the intermediate string
[all...]
/third_party/gn/src/gn/
H A Dfunction_get_label_info.cc72 # Returns string "foo".
75 # Returns string "//out/Debug/gen/foo/bar".
98 const std::string& what = args[1].string_value();
H A Dninja_create_bundle_target_writer.h24 // if defined, otherwise returns an empty string.
25 std::string WritePostProcessingRuleDefinition();
58 void WritePostProcessingStep(const std::string& post_processing_rule_name,
H A Dstring_output_buffer.h11 #include <string>
21 // An append-only very large storage area for string data. Useful for the parts
47 // Convert content to single std::string instance. Useful for unit-testing.
48 std::string str() const;
53 // Append string to this instance.
H A Dtarget_generator.h8 #include <string>
40 const std::string& output_type,
/third_party/backends/backend/genesys/
H A Dtest_usb_device.h35 const std::string& name() const override { return name_; }
54 std::string name_;
/third_party/benchmark/src/
H A Dthread_manager.h45 std::string report_label_;
46 std::string skip_message_;
/third_party/googletest/googletest/src/
H A Dgtest-test-part.cc43 std::string TestPartResult::ExtractSummary(const char* message) { in ExtractSummary()
45 return stack_trace == nullptr ? message : std::string(message, stack_trace); in ExtractSummary()
/third_party/json/docs/examples/
H A Dnlohmann_define_type_non_intrusive_explicit.cpp11 std::string name;
12 std::string address;

Completed in 43 milliseconds

1...<<271272273274275276277278279280>>...1100