Home
last modified time | relevance | path

Searched refs:curPath (Results 1 – 5 of 5) sorted by relevance

/external/deqp/framework/delibs/decpp/
DdeFilePath.cpp275 FilePath curPath (path); in createDirectoryAndParents() local
277 if (curPath.exists()) in createDirectoryAndParents()
280 while (!curPath.exists()) in createDirectoryAndParents()
282 createPaths.push_back(curPath.getPath()); in createDirectoryAndParents()
284 std::string parent = curPath.getDirName(); in createDirectoryAndParents()
285 DE_CHECK_RUNTIME_ERR(parent != curPath.getPath()); in createDirectoryAndParents()
286 curPath = FilePath(parent); in createDirectoryAndParents()
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DCpuMonitor.java78 private String[] curPath; field in CpuMonitor
113 curPath = new String [cpusPresent]; in init()
117 curPath[i] = "/sys/devices/system/cpu/cpu" + i + "/cpufreq/scaling_cur_freq"; in init()
161 long cpufreqCur = readFreqFromFile(curPath[i]); in sampleCpuUtilization()
/external/deqp/framework/common/
DtcuCommandLine.cpp318 const char* curPath = path; in findNode() local
319 int curLen = getCurrentComponentLen(curPath); in findNode()
323 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode()
328 curPath += curLen; in findNode()
330 if (curPath[0] == 0) in findNode()
334 DE_ASSERT(curPath[0] == '.'); in findNode()
335 curPath += 1; in findNode()
336 curLen = getCurrentComponentLen(curPath); in findNode()
/external/deqp/scripts/
Drun_internal_tests.py37 curPath = os.getcwd()
41 os.chdir(curPath)
Dmustpass.py258 curPath = prefix + curNode.name
260 caseMap[curPath] = curNode
263 recursiveBuild(child, curPath + '.')