Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
DBasicDurationFormat.java37 public StringBuffer format(Object object, StringBuffer toAppend, FieldPosition pos) { in format() argument
40 return toAppend.append(res); in format()
43 return toAppend.append(res); in format()
46 return toAppend.append(res); in format()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
DBasicDurationFormat.java35 public StringBuffer format(Object object, StringBuffer toAppend, FieldPosition pos) { in format() argument
38 return toAppend.append(res); in format()
41 return toAppend.append(res); in format()
44 return toAppend.append(res); in format()
/external/python/httplib2/doc/html/_static/
Dsearchtools.js303 var toAppend = excluded;
307 var toAppend = searchterms;
311 if (!$.contains(toAppend, word))
312 toAppend.push(word);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java1903 String toAppend = null; in subFormat() local
1917 toAppend = formatData.abbreviatedDayPeriods[value]; in subFormat()
1919 toAppend = formatData.wideDayPeriods[value]; in subFormat()
1921 toAppend = formatData.narrowDayPeriods[value]; in subFormat()
1925 if (toAppend == null) { in subFormat()
1930 buf.append(toAppend); in subFormat()
1970 String toAppend = null; in subFormat() local
1977 toAppend = formatData.abbreviatedDayPeriods[index]; // i.e. short in subFormat()
1979 toAppend = formatData.wideDayPeriods[index]; in subFormat()
1981 toAppend = formatData.narrowDayPeriods[index]; in subFormat()
[all …]
DDurationFormat.java74 public abstract StringBuffer format(Object object, StringBuffer toAppend, in format() argument
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java1893 String toAppend = null; in subFormat() local
1907 toAppend = formatData.abbreviatedDayPeriods[value]; in subFormat()
1909 toAppend = formatData.wideDayPeriods[value]; in subFormat()
1911 toAppend = formatData.narrowDayPeriods[value]; in subFormat()
1915 if (toAppend == null) { in subFormat()
1920 buf.append(toAppend); in subFormat()
1960 String toAppend = null; in subFormat() local
1967 toAppend = formatData.abbreviatedDayPeriods[index]; // i.e. short in subFormat()
1969 toAppend = formatData.wideDayPeriods[index]; in subFormat()
1971 toAppend = formatData.narrowDayPeriods[index]; in subFormat()
[all …]
DDurationFormat.java76 public abstract StringBuffer format(Object object, StringBuffer toAppend, in format() argument
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp1812 const UnicodeString *toAppend = NULL; in subFormat() local
1830 toAppend = &fSymbols->fAbbreviatedDayPeriods[val]; in subFormat()
1832 toAppend = &fSymbols->fWideDayPeriods[val]; in subFormat()
1834 toAppend = &fSymbols->fNarrowDayPeriods[val]; in subFormat()
1841 if (toAppend == NULL || toAppend->isBogus()) { in subFormat()
1846 appendTo += *toAppend; in subFormat()
1893 UnicodeString *toAppend = NULL; in subFormat() local
1904 toAppend = &fSymbols->fAbbreviatedDayPeriods[index]; // i.e. short in subFormat()
1906 toAppend = &fSymbols->fWideDayPeriods[index]; in subFormat()
1908 toAppend = &fSymbols->fNarrowDayPeriods[index]; in subFormat()
[all …]
/external/skia/src/sksl/
DSkSLCPPCodeGenerator.h116 void addExtraEmitCodeLine(const String& toAppend);
DSkSLCPPCodeGenerator.cpp649 void CPPCodeGenerator::addExtraEmitCodeLine(const String& toAppend) { in addExtraEmitCodeLine() argument
653 currentBlock += " " + toAppend + "\n"; in addExtraEmitCodeLine()
/external/skqp/src/sksl/
DSkSLCPPCodeGenerator.h116 void addExtraEmitCodeLine(const String& toAppend);
DSkSLCPPCodeGenerator.cpp616 void CPPCodeGenerator::addExtraEmitCodeLine(const String& toAppend) { in addExtraEmitCodeLine() argument
620 currentBlock += " " + toAppend + "\n"; in addExtraEmitCodeLine()
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java594 private static Serializable getObject(TestCase test, String toAppend) in getObject() argument
601 path.append(toAppend); in getObject()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
DICUDurationTest.java379 … public StringBuffer format(Object object, StringBuffer toAppend, FieldPosition pos) {return null;} in TestDurationFormat() argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
DICUDurationTest.java382 … public StringBuffer format(Object object, StringBuffer toAppend, FieldPosition pos) {return null;} in TestDurationFormat() argument
/external/cldr/tools/java/org/unicode/cldr/tool/
DCheckHtmlFiles.java404 public void addText(String toAppend) { in addText() argument
405 String temp = TransliteratorUtilities.fromHTML.transform(toAppend); in addText()