Home
last modified time | relevance | path

Searched refs:extensionList (Results 1 – 13 of 13) sorted by relevance

/external/deqp/framework/platform/null/
DtcuNullRenderContext.cpp94 vector<string> extensionList; member in tcu::null::Context
267 extensionList.push_back(name); in addExtension()
299 *params = (int)ctx->extensionList.size(); in glGetIntegerv()
485 if ((size_t)index < ctx->extensionList.size()) in glGetStringi()
486 return (const glw::GLubyte*)ctx->extensionList[index].c_str(); in glGetStringi()
/external/cldr/tools/java/org/unicode/cldr/util/data/
DlangtagRegex.txt68 $extensionList = $extension (?: $s $extension )* ; # special for multiples
74 (?: $s ( $extensionList ) )? 5%
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DlangtagRegex.txt72 $extensionList = $extension (?: $s $extension )* ; # special for multiples
78 (?: $s ( $extensionList ) )? 5%
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DlangtagRegex.txt72 $extensionList = $extension (?: $s $extension )* ; # special for multiples
78 (?: $s ( $extensionList ) )? 5%
/external/deqp/modules/gles3/functional/
Des3fImplementationLimitTests.cpp329 vector<string> extensionList; in queryExtensionsNonIndexed() local
338 extensionList.push_back(extensionStr.substr(pos, len)); in queryExtensionsNonIndexed()
346 return extensionList; in queryExtensionsNonIndexed()
/external/zstd/programs/
Dutil.h164 int UTIL_isCompressedFile(const char* infilename, const char *extensionList[]);
Dutil.c650 int UTIL_isCompressedFile(const char *inputName, const char *extensionList[]) in UTIL_isCompressedFile() argument
653 while(*extensionList!=NULL) in UTIL_isCompressedFile()
655 const int isCompressedExtension = strcmp(ext,*extensionList); in UTIL_isCompressedFile()
658 ++extensionList; in UTIL_isCompressedFile()
/external/deqp/modules/glshared/
DglsShaderLibraryCase.cpp98 std::ostringstream extensionList; in checkAndSpecializeExtensions() local
102 if (!extensionList.str().empty()) in checkAndSpecializeExtensions()
103 extensionList << ", "; in checkAndSpecializeExtensions()
104 extensionList << extension.alternatives[ndx]; in checkAndSpecializeExtensions()
108 throw tcu::NotSupportedError("Test requires extension " + extensionList.str()); in checkAndSpecializeExtensions()
110 throw tcu::NotSupportedError("Test requires any extension of " + extensionList.str()); in checkAndSpecializeExtensions()
/external/angle/src/tests/gl_tests/
DVertexAttributeTest.cpp728 std::string extensionList(reinterpret_cast<const char *>(glGetString(GL_EXTENSIONS))); in TEST_P()
729 ANGLE_SKIP_TEST_IF((extensionList.find("OES_vertex_type_10_10_10_2") == std::string::npos)); in TEST_P()
780 std::string extensionList(reinterpret_cast<const char *>(glGetString(GL_EXTENSIONS))); in TEST_P()
781 ANGLE_SKIP_TEST_IF((extensionList.find("OES_vertex_type_10_10_10_2") == std::string::npos)); in TEST_P()
834 std::string extensionList(reinterpret_cast<const char *>(glGetString(GL_EXTENSIONS))); in TEST_P()
835 ANGLE_SKIP_TEST_IF((extensionList.find("OES_vertex_type_10_10_10_2") == std::string::npos)); in TEST_P()
886 std::string extensionList(reinterpret_cast<const char *>(glGetString(GL_EXTENSIONS))); in TEST_P()
887 ANGLE_SKIP_TEST_IF((extensionList.find("OES_vertex_type_10_10_10_2") == std::string::npos)); in TEST_P()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDeviceInitializationTests.cpp451 const char* extensionList[1] = { 0 }; in createInstanceWithExtensionNameAbuseTest() local
458 extensionList[0] = abuseString.c_str(); in createInstanceWithExtensionNameAbuseTest()
480 extensionList, // const char*const* ppEnabledExtensionNames; in createInstanceWithExtensionNameAbuseTest()
/external/deqp/modules/gles31/functional/
Des31fTessellationGeometryInteractionTests.cpp1804 std::ostringstream extensionList; in checkExtensions() local
1809 extensionList << ", "; in checkExtensions()
1810 extensionList << requiredExtensions[ndx]; in checkExtensions()
1813 throw tcu::NotSupportedError("Test requires {" + extensionList.str() + "} extension(s)"); in checkExtensions()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp586 std::vector<std::string> extensionList; member
DsglrReferenceContext.cpp297 extensionList.push_back(extension); in addExtension()