Home
last modified time | relevance | path

Searched refs:tempName (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmexpression.cpp72 WideString tempName = in ToJavaScript() local
74 javascript << tempName; in ToJavaScript()
143 WideString tempName(m_wsName); in ToJavaScript() local
145 tempName = in ToJavaScript()
148 javascript << tempName; in ToJavaScript()
153 javascript << tempName; in ToJavaScript()
157 javascript << tempName; in ToJavaScript()
171 WideString tempName(m_wsName); in ToImpliedReturnJS() local
173 tempName = in ToImpliedReturnJS()
176 javascript << tempName; in ToImpliedReturnJS()
[all …]
/external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/
DSimpleLogger.java275 String tempName = name; in recursivelyComputeLevelString() local
277 int indexOfLastDot = tempName.length(); in recursivelyComputeLevelString()
279 tempName = tempName.substring(0, indexOfLastDot); in recursivelyComputeLevelString()
280 levelString = getStringProperty(LOG_KEY_PREFIX + tempName, null); in recursivelyComputeLevelString()
281 indexOfLastDot = String.valueOf(tempName).lastIndexOf("."); in recursivelyComputeLevelString()
/external/cldr/tools/java/org/unicode/cldr/util/
DAnnotations.java335 String tempName = null; in synthesize() local
338 tempName = otherSource.transform(code); in synthesize()
340 if (tempName == null) { in synthesize()
343 return new Annotations(Collections.<String> emptySet(), tempName); in synthesize()
345 tempName = getDataSet("en").getShortName(code); in synthesize()
346 if (tempName == null) { in synthesize()
349 … return new Annotations(Collections.<String> emptySet(), ENGLISH_MARKER + tempName); in synthesize()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DLocaleDisplayNamesImpl.java614 String tempName = modified.getDisplayName(locale); in newRow() local
617 titlecase ? toTitleWholeStringNoLowercase(locale, tempName) : tempName; in newRow()
618 tempName = modified.getDisplayName(modified); in newRow()
621 toTitleWholeStringNoLowercase(modified, tempName) : tempName; in newRow()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DLocaleDisplayNamesImpl.java610 String tempName = modified.getDisplayName(locale); in newRow() local
613 titlecase ? toTitleWholeStringNoLowercase(locale, tempName) : tempName; in newRow()
614 tempName = modified.getDisplayName(modified); in newRow()
617 toTitleWholeStringNoLowercase(modified, tempName) : tempName; in newRow()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DPathNumbering.cpp142 std::string tempName(getBlock()->getName()); in getName() local
143 name << tempName.c_str() << " (" << _uid << ")"; in getName()
/external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/
DPlatform.java124 String tempName = String.format(Locale.US, "%s%d%04d%s", prefix, time, i, suffix); in createTempFile() local
125 File tempFile = new File(directory, tempName); in createTempFile()
126 if (!tempName.equals(tempFile.getName())) { in createTempFile()
/external/conscrypt/openjdk/src/main/java/org/conscrypt/
DPlatform.java123 String tempName = String.format(Locale.US, "%s%d%04d%s", prefix, time, i, suffix); in createTempFile() local
124 File tempFile = new File(directory, tempName); in createTempFile()
125 if (!tempName.equals(tempFile.getName())) { in createTempFile()
/external/fonttools/Lib/fontTools/ttLib/
DttFont.py503 tempName = glyphOrder[i]
504 if tempName in reversecmap:
508 glyphName = self._makeGlyphName(min(reversecmap[tempName]))