Home
last modified time | relevance | path

Searched refs:indexPath (Results 1 – 4 of 4) sorted by relevance

/external/walt/ios/WALT/
DSettingsController.m72 willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
73 if (indexPath.section == 0 && indexPath.row == 0) {
77 } else if (indexPath.section == 0 && indexPath.row == 1) {
82 return indexPath;
DMenuController.m124 forRowAtIndexPath:(NSIndexPath *)indexPath {
125 if (indexPath.section == 1) {
134 willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
135 if (indexPath.section == 0 && indexPath.row == 0) {
147 } else if (indexPath.section == 1 && !_client.isConnected) {
152 return indexPath;
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp543 const de::FilePath indexPath = getIndexPath(dstPath); in writeToPath() local
551 if (!de::FilePath(indexPath.getDirName()).exists()) in writeToPath()
552 de::createDirectoryAndParents(indexPath.getDirName().c_str()); in writeToPath()
555 std::ofstream indexOut(indexPath.getPath(), std::ios_base::binary); in writeToPath()
558 …throw tcu::InternalError(string("Failed to open program binary index file ") + indexPath.getPath()… in writeToPath()
/external/deqp/executor/tools/
DxeBatchResultToXml.cpp367 de::FilePath indexPath = de::FilePath::join(dstPath, "caselist.xml"); in batchResultToSeparateXmlFiles() local
368 std::ofstream out (indexPath.getPath(), std::ofstream::binary|std::ofstream::trunc); in batchResultToSeparateXmlFiles()