• Home
  • Raw
  • Download

Lines Matching refs:resourceList

896 …bool										verifyResourceList			(const std::vector<std::string>& resourceList, const std::vecto…
897 …bool verifyResourceIndexQuery (const std::vector<std::string>& resourceList, const std::v…
962 std::vector<std::string> resourceList; in iterate() local
965 queryResourceList(resourceList, program.getProgram()); in iterate()
970 if (!verifyResourceList(resourceList, expectedResources)) in iterate()
975 if (!verifyResourceIndexQuery(resourceList, expectedResources, program.getProgram())) in iterate()
979 if (!verifyMaxNameLength(resourceList, program.getProgram())) in iterate()
1020 bool ResourceListTestCase::verifyResourceList (const std::vector<std::string>& resourceList, const … in verifyResourceList() argument
1028 for (int ndx = 0; ndx < (int)resourceList.size(); ++ndx) in verifyResourceList()
1029 …m_testCtx.getLog() << tcu::TestLog::Message << "\t" << ndx << ": " << resourceList[ndx] << tcu::Te… in verifyResourceList()
1040 if (!de::contains(resourceList.begin(), resourceList.end(), expectedResources[ndx])) in verifyResourceList()
1047 for (int ndx = 0; ndx < (int)resourceList.size(); ++ndx) in verifyResourceList()
1049 if (!de::contains(expectedResources.begin(), expectedResources.end(), resourceList[ndx])) in verifyResourceList()
1052 if (deStringBeginsWith(resourceList[ndx].c_str(), "gl_") == DE_FALSE) in verifyResourceList()
1054 …ssage << "Error, resource list contains unexpected resource name " << resourceList[ndx] << tcu::Te… in verifyResourceList()
1058 …stLog::Message << "Note, resource list contains unknown built-in " << resourceList[ndx] << ". This… in verifyResourceList()
1065 bool ResourceListTestCase::verifyResourceIndexQuery (const std::vector<std::string>& resourceList, … in verifyResourceIndexQuery() argument
1083 else if ((int)index >= (int)resourceList.size()) in verifyResourceIndexQuery()
1088 else if (resourceList[index] != referenceResources[ndx]) in verifyResourceIndexQuery()
1090 … << "\" got index (index = " << index << ") of another resource (" << resourceList[index] << ")." … in verifyResourceIndexQuery()
1112 else if ((int)index >= (int)resourceList.size()) in verifyResourceIndexQuery()
1117 else if (resourceList[index] != queryString + "[0]") in verifyResourceIndexQuery()
1119 …< "\" got index (index = " << index << ") of another resource (\"" << resourceList[index] << "\").… in verifyResourceIndexQuery()
1129 bool ResourceListTestCase::verifyMaxNameLength (const std::vector<std::string>& resourceList, glw::… in verifyMaxNameLength() argument
1139 for (int ndx = 0; ndx < (int)resourceList.size(); ++ndx) in verifyMaxNameLength()
1140 expectedMaxNameLength = de::max(expectedMaxNameLength, (int)resourceList[ndx].size() + 1); in verifyMaxNameLength()
3103 std::vector<std::string> resourceList; in iterate() local
3106 queryResourceList(resourceList, program.getProgram()); in iterate()
3111 if (!verifyResourceList(resourceList, expectedResources)) in iterate()
3116 if (!verifyResourceIndexQuery(resourceList, expectedResources, program.getProgram())) in iterate()
3120 if (!verifyMaxNameLength(resourceList, program.getProgram())) in iterate()