Home
last modified time | relevance | path

Searched refs:resultName (Results 1 – 16 of 16) sorted by relevance

/external/lzma/CPP/7zip/UI/Common/
DArchiveName.cpp14 UString resultName = L"Archive"; in CreateArchiveName2() local
26 resultName = fileInfo.Name; in CreateArchiveName2()
36 resultName = fileInfo.Name; in CreateArchiveName2()
39 int dotPos = resultName.ReverseFind('.'); in CreateArchiveName2()
42 UString archiveName2 = resultName.Left(dotPos); in CreateArchiveName2()
44 resultName = archiveName2; in CreateArchiveName2()
48 return resultName; in CreateArchiveName2()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
DRagdollPreset.java35 String resultName = ""; in setupJointForBone() local
43 resultName = key; in setupJointForBone()
48 JointPreset preset = boneMap.get(resultName); in setupJointForBone()
51 …atching joint for bone {0} : {1} with score {2}", new Object[]{boneName, resultName, resultScore}); in setupJointForBone()
56 …r.log(Level.INFO, "Best match found is {0} with score {1}", new Object[]{resultName, resultScore}); in setupJointForBone()
/external/deqp/executor/tools/
DxeMergeTestLogs.cpp81 if (!info.resultName.empty()) combinedInfo.resultName = info.resultName; in setSessionInfo()
91 if (combinedInfo.resultName.empty()) combinedInfo.resultName = info.resultName; in setSessionInfo()
/external/lzma/CPP/Windows/
DFileDir.cpp448 bool GetOnlyDirPrefix(LPCTSTR fileName, CSysString &resultName) in GetOnlyDirPrefix() argument
451 if (!MyGetFullPathName(fileName, resultName, index)) in GetOnlyDirPrefix()
453 resultName = resultName.Left(index); in GetOnlyDirPrefix()
457 bool GetOnlyName(LPCTSTR fileName, CSysString &resultName) in GetOnlyName() argument
460 if (!MyGetFullPathName(fileName, resultName, index)) in GetOnlyName()
462 resultName = resultName.Mid(index); in GetOnlyName()
616 bool GetOnlyName(LPCWSTR fileName, UString &resultName) in GetOnlyName() argument
619 if (!MyGetFullPathName(fileName, resultName, index)) in GetOnlyName()
621 resultName = resultName.Mid(index); in GetOnlyName()
627 bool GetOnlyDirPrefix(LPCWSTR fileName, UString &resultName) in GetOnlyDirPrefix() argument
[all …]
DFileDir.h44 bool GetOnlyDirPrefix(LPCTSTR fileName, CSysString &resultName);
45 bool GetOnlyName(LPCTSTR fileName, CSysString &resultName);
58 bool GetOnlyName(LPCWSTR fileName, UString &resultName);
59 bool GetOnlyDirPrefix(LPCWSTR fileName, UString &resultName);
/external/icu/icu4c/source/i18n/
Dlocdspnm.cpp546 UnicodeString resultName; in localeDisplayName() local
565 localeIdName(buffer, resultName); in localeDisplayName()
566 if (!resultName.isBogus()) { in localeDisplayName()
574 localeIdName(buffer, resultName); in localeDisplayName()
575 if (!resultName.isBogus()) { in localeDisplayName()
582 localeIdName(buffer, resultName); in localeDisplayName()
583 if (!resultName.isBogus()) { in localeDisplayName()
590 if (resultName.isBogus() || resultName.isEmpty()) { in localeDisplayName()
591 localeIdName(lang, resultName); in localeDisplayName()
647 resultName, in localeDisplayName()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DLocaleDisplayNamesImpl.java278 String resultName = null; in localeDisplayNameInternal() local
303 resultName = result; in localeDisplayNameInternal()
313 resultName = result; in localeDisplayNameInternal()
322 resultName = result; in localeDisplayNameInternal()
330 if (resultName == null) { in localeDisplayNameInternal()
331 resultName = localeIdName(lang) in localeDisplayNameInternal()
385 resultName = format.format(new Object[] {resultName, resultRemainder}); in localeDisplayNameInternal()
388 return adjustForUsageAndContext(CapitalizationContextUsage.LANGUAGE, resultName); in localeDisplayNameInternal()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
DAbstractResults.java165 AbstractResults getResults(String resultName) { in getResults() argument
169 if (searchedResults.getName().equals(resultName)) { in getResults()
/external/deqp/modules/gles3/performance/
Des3pShaderControlStatementTests.cpp49 static void writeConditionalWorkload (std::ostringstream& stream, const char* resultName, const cha… in writeConditionalWorkload() argument
53 stream << resultName << " = "; in writeConditionalWorkload()
67 static void writeLoopWorkload (std::ostringstream& stream, const char* resultName, const char* oper… in writeLoopWorkload() argument
71 stream << resultName << " = "; in writeLoopWorkload()
78 stream << "(" << resultName << " + " << operandName << ")"; in writeLoopWorkload()
/external/deqp/modules/gles2/performance/
Des2pShaderControlStatementTests.cpp49 static void writeConditionalWorkload (std::ostringstream& stream, const char* resultName, const cha… in writeConditionalWorkload() argument
53 stream << resultName << " = "; in writeConditionalWorkload()
67 static void writeLoopWorkload (std::ostringstream& stream, const char* resultName, const char* oper… in writeLoopWorkload() argument
71 stream << resultName << " = "; in writeLoopWorkload()
78 stream << "(" << resultName << " + " << operandName << ")"; in writeLoopWorkload()
/external/javassist/src/main/javassist/compiler/
DJvstCodeGen.java438 String resultName, SymbolTable tbl) throws CompileError in recordReturnType() argument
442 returnVarName = resultName; in recordReturnType()
443 if (resultName == null) in recordReturnType()
447 int locals = varNo + recordVar(type, resultName, varNo, tbl); in recordReturnType()
/external/deqp/executor/
DxeBatchResult.hpp49 std::string resultName; member in xe::SessionInfo
DxeTestLogParser.cpp103 m_sessionInfo.resultName = value; in parse()
DxeTestLogWriter.cpp81 if (!info.resultName.empty()) in writeSessionInfo()
82 stream << "#sessionInfo resultName " << ContainerValue(info.resultName) << "\n"; in writeSessionInfo()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DResultsElement.java348 public ResultsElement getResultsElement(String resultName) { in getResultsElement() argument
352 if (searchedResults.getName().equals(resultName)) { in getResultsElement()
/external/deqp/doc/
Dqpa_file_format.txt33 resultName