Home
last modified time | relevance | path

Searched refs:apiName (Results 1 – 20 of 20) sorted by relevance

/external/deqp/external/openglcts/scripts/
Dmustpass.py261 def getApiType(apiName): argument
262 if apiName == "GLES2":
264 if apiName == "GLES3":
266 if apiName == "GLES31":
268 if apiName == "GLES32":
270 if apiName == "GL46":
272 if apiName == "GL45":
274 if apiName == "GL44":
276 if apiName == "GL43":
278 if apiName == "GL42":
[all …]
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLX509CertPath.java56 private final String apiName; field in OpenSSLX509CertPath.Encoding
58 Encoding(String apiName) { in Encoding() argument
59 this.apiName = apiName; in Encoding()
62 static Encoding findByApiName(String apiName) throws CertificateEncodingException { in findByApiName() argument
64 if (element.apiName.equals(apiName)) { in findByApiName()
76 Encoding.PKI_PATH.apiName,
77 Encoding.PKCS7.apiName,
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLX509CertPath.java55 private final String apiName; field in OpenSSLX509CertPath.Encoding
57 Encoding(String apiName) { in Encoding() argument
58 this.apiName = apiName; in Encoding()
61 static Encoding findByApiName(String apiName) throws CertificateEncodingException { in findByApiName() argument
63 if (element.apiName.equals(apiName)) { in findByApiName()
75 Encoding.PKI_PATH.apiName,
76 Encoding.PKCS7.apiName,
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
DInstrumentationRuntimeMainThreadChecker.cpp108 std::string apiName = ""; in RetrieveReportData() local
110 target.ReadCStringFromMemory(apiname_ptr, apiName, read_error); in RetrieveReportData()
116 if (apiName.substr(0, 2) == "-[") { in RetrieveReportData()
117 size_t spacePos = apiName.find(" "); in RetrieveReportData()
119 className = apiName.substr(2, spacePos - 2); in RetrieveReportData()
120 selector = apiName.substr(spacePos + 1, apiName.length() - spacePos - 2); in RetrieveReportData()
150 d->AddStringItem("api_name", apiName); in RetrieveReportData()
154 apiName + " must be used from main thread only"); in RetrieveReportData()
/external/deqp/external/openglcts/modules/runner/
DglcTestRunner.cpp235 static const string getCaseListFileOption(const char* mustpassDir, const char* apiName, const char*… in getCaseListFileOption() argument
242 return case_list_option + mustpassDir + apiName + "-" + mustpassName + ".txt"; in getCaseListFileOption()
245 static const string getLogFileName(const char* apiName, const char* configName, const int iterId, c… in getLogFileName() argument
248 …string res = string("config-") + apiName + "-" + configName + "-cfg-" + de::toString(iterId) + "-r… in getLogFileName()
259 …c void getBaseOptions(std::vector<std::string>& args, const char* mustpassDir, const char* apiName, in getBaseOptions() argument
262 args.push_back(getCaseListFileOption(mustpassDir, apiName, configName)); in getBaseOptions()
301 const char* apiName = "egl"; in getTestRunsForAOSPEGL() local
308 getLogFileName(apiName, aosp_mustpass_egl_first_cfg[i].configName, 1, i, width, height, -1); in getTestRunsForAOSPEGL()
309 getBaseOptions(params.args, mustpassDir, apiName, aosp_mustpass_egl_first_cfg[i].configName, in getTestRunsForAOSPEGL()
347 const char* apiName = getApiName(aosp_mustpass_es_first_cfg[i].apiType); in getTestRunsForAOSPES() local
[all …]
/external/vulkan-validation-layers/layers/
Dstateless_validation.h163 …bool validate_required_pointer(const char *apiName, const ParameterName &parameterName, const void… in validate_required_pointer() argument
169 … "%s: required parameter %s specified as NULL.", apiName, parameterName.get_name().c_str()); in validate_required_pointer()
192 …bool validate_array(const char *apiName, const ParameterName &countName, const ParameterName &arra… in validate_array() argument
201 … "%s: parameter %s must be greater than 0.", apiName, countName.get_name().c_str()); in validate_array()
208 … "%s: required parameter %s specified as NULL.", apiName, arrayName.get_name().c_str()); in validate_array()
234 …bool validate_array(const char *apiName, const ParameterName &countName, const ParameterName &arra… in validate_array() argument
242 … kVUID_PVError_RequiredParameter, "%s: required parameter %s specified as NULL", apiName, in validate_array()
246 …skip_call |= validate_array(apiName, countName, arrayName, *array ? (*count) : 0, &array, countVal… in validate_array()
269 …bool validate_struct_type(const char *apiName, const ParameterName &parameterName, const char *sTy… in validate_struct_type() argument
277 … "%s: required parameter %s specified as NULL", apiName, parameterName.get_name().c_str()); in validate_struct_type()
[all …]
Dparameter_validation_utils.cpp38 bool StatelessValidation::validate_string(const char *apiName, const ParameterName &stringName, con… in validate_string() argument
48 …"%s: string %s exceeds max length %d", apiName, stringName.get_name().c_str(), MaxParamCheckerStri… in validate_string()
51 …"%s: string %s contains invalid characters or is badly formed", apiName, stringName.get_name().c_s… in validate_string()
Dcore_validation.h908 …etMemBinding(VkDeviceMemory mem, const VulkanTypedHandle& typed_handle, const char* apiName) const;
1088 …bool InsideRenderPass(const CMD_BUFFER_STATE* pCB, const char* apiName, const char* msgCode) const;
1089 …bool OutsideRenderPass(const CMD_BUFFER_STATE* pCB, const char* apiName, const char* msgCode) cons…
Dcore_validation.cpp570 …tMemBinding(VkDeviceMemory mem, const VulkanTypedHandle &typed_handle, const char *apiName) const { in ValidateSetMemBinding()
589apiName, report_data->FormatHandle(mem).c_str(), report_data->FormatHandle(typed_handle).c_str(), in ValidateSetMemBinding()
604 … "In %s, attempting to bind %s to %s which has already been bound to %s.", apiName, in ValidateSetMemBinding()
613apiName, report_data->FormatHandle(mem).c_str(), report_data->FormatHandle(typed_handle).c_str()); in ValidateSetMemBinding()
2281 bool CoreChecks::InsideRenderPass(const CMD_BUFFER_STATE *pCB, const char *apiName, const char *msg… in InsideRenderPass() argument
2286apiName, report_data->FormatHandle(pCB->activeRenderPass->renderPass).c_str()); in InsideRenderPass()
2293 bool CoreChecks::OutsideRenderPass(const CMD_BUFFER_STATE *pCB, const char *apiName, const char *ms… in OutsideRenderPass() argument
2300 apiName); in OutsideRenderPass()
/external/deqp/modules/egl/
DteglRenderCase.cpp241 const char* apiName = DE_NULL; in executeForSurface() local
249 apiName = "OpenGL ES 2.x"; in executeForSurface()
256 apiName = "OpenGL ES 3.x"; in executeForSurface()
263 apiName = "OpenGL ES 1.x"; in executeForSurface()
270 apiName = "OpenVG"; in executeForSurface()
279 log << TestLog::Message << apiName << TestLog::EndMessage; in executeForSurface()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecatedAPIChecker.java247 String apiName = cls; in compareDeprecated() local
249 apiName += "." + name; in compareDeprecated()
252 pw.println("No @Deprecated annotation: [" + type + "] " + apiName); in compareDeprecated()
254 pw.println("No @deprecated JavaDoc tag: [" + type + "] " + apiName); in compareDeprecated()
/external/jdiff/src/jdiff/
DAPIHandler.java78 String apiName = attributes.getValue("name"); in startElement() local
80 XMLToAPI.nameAPI(apiName); in startElement()
DXMLToAPI.java43 String apiName) { in readFile() argument
46 api_.name_ = apiName; // Checked later in readFile()
/external/deqp/external/vulkancts/modules/vulkan/transform_feedback/
DvktTransformFeedbackFuzzLayoutCase.cpp1407 const std::string& apiName, in generateAssignment() argument
1417 …std::string fullApiName = std::string(apiName) + (isArray ? "[0]" : ""); // Arrays are alway… in generateAssignment()
1443 const std::string elementApiName = std::string(apiName) + op; in generateAssignment()
1457 const std::string memberApiName = std::string(apiName) + op; in generateAssignment()
1497 std::string apiName = apiPrefix + interfaceMember.getName(); in generateAssignment() local
1499 …generateAssignment(src, layout, interfaceMember.getType(), srcName, apiName, blockNdx, basePtr, ma… in generateAssignment()
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutCase.cpp1360 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateCompareSrc() local
1361 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateCompareSrc()
1460 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateWriteSrc() local
1461 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateWriteSrc()
1741 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in copyNonWrittenData() local
1742 const int varNdx = layout.getVariableIndex(apiName); in copyNonWrittenData()
2015 const string apiName = getBlockAPIName(block, instanceNdx); in computeBufferSizes() local
2016 const int blockNdx = layout.getBlockIndex(apiName); in computeBufferSizes()
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp1144 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateCompareSrc() local
1145 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateCompareSrc()
1228 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in generateWriteSrc() local
1229 const int varNdx = bufferLayout.getVariableIndex(apiName); in generateWriteSrc()
1601 const string apiName = getAPIName(block, bufVar, accessPath.getPath()); in copyNonWrittenData() local
1602 const int varNdx = layout.getVariableIndex(apiName); in copyNonWrittenData()
1874 const string apiName = getBlockAPIName(block, instanceNdx); in computeBufferSizes() local
1875 const int blockNdx = layout.getBlockIndex(apiName); in computeBufferSizes()
Des31fGeometryShaderTests.cpp4505 …Context& context, const char* name, const char* description, glw::GLenum apiName, const std::strin…
4516 …Context& context, const char* name, const char* description, glw::GLenum apiName, const std::strin… in GeometryProgramLimitCase() argument
4518 , m_apiName (apiName) in GeometryProgramLimitCase()
/external/deqp/external/vulkancts/modules/vulkan/ubo/
DvktUniformBlockCase.cpp1456 const std::string& apiName, in generateCompareSrc() argument
1469 …std::string fullApiName = std::string(apiName) + (isArray ? "[0]" : ""); // Arrays are always… in generateCompareSrc()
1502 std::string elementApiName = std::string(apiName) + op; in generateCompareSrc()
1517 std::string memberApiName = std::string(apiName) + op; in generateCompareSrc()
1572 std::string apiName = apiPrefix + uniform.getName(); in generateCompareSrc() local
1573 …generateCompareSrc(src, resultVar, uniform.getType(), srcName, apiName, layout, blockNdx, basePtr,… in generateCompareSrc()
/external/deqp/external/openglcts/modules/common/
DglcUniformBlockCase.cpp924 const char* apiName, const UniformLayout& layout, const void* basePtr, deUint32 unusedMask) in generateCompareSrc() argument
932 …std::string fullApiName = string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfix… in generateCompareSrc()
961 (string(apiName) + op).c_str(), layout, basePtr, unusedMask); in generateCompareSrc()
976 (string(apiName) + op).c_str(), layout, basePtr, unusedMask); in generateCompareSrc()
/external/deqp/modules/glshared/
DglsUniformBlockCase.cpp1003 …t char* resultVar, const VarType& type, const char* srcName, const char* apiName, const UniformLay… in generateCompareSrc() argument
1011 …std::string fullApiName = string(apiName) + (isArray ? "[0]" : ""); // Arrays are always post… in generateCompareSrc()
1038 …generateCompareSrc(src, resultVar, elementType, (string(srcName) + op).c_str(), (string(apiName) +… in generateCompareSrc()
1051 …esultVar, memberIter->getType(), (string(srcName) + op).c_str(), (string(apiName) + op).c_str(), l… in generateCompareSrc()