Home
last modified time | relevance | path

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

/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/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/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/android_icu4j/src/main/java/android/icu/text/
DDurationFormat.java76 public abstract StringBuffer format(Object object, StringBuffer toAppend, in format() argument
DSimpleDateFormat.java1912 String toAppend = null; in subFormat() local
1926 toAppend = formatData.abbreviatedDayPeriods[value]; in subFormat()
1928 toAppend = formatData.wideDayPeriods[value]; in subFormat()
1930 toAppend = formatData.narrowDayPeriods[value]; in subFormat()
1934 if (toAppend == null) { in subFormat()
1942 buf.append(toAppend); in subFormat()
1985 String toAppend = null; in subFormat() local
1992 toAppend = formatData.abbreviatedDayPeriods[index]; // i.e. short in subFormat()
1994 toAppend = formatData.wideDayPeriods[index]; in subFormat()
1996 toAppend = formatData.narrowDayPeriods[index]; in subFormat()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDurationFormat.java74 public abstract StringBuffer format(Object object, StringBuffer toAppend, in format() argument
DSimpleDateFormat.java1924 String toAppend = null; in subFormat() local
1938 toAppend = formatData.abbreviatedDayPeriods[value]; in subFormat()
1940 toAppend = formatData.wideDayPeriods[value]; in subFormat()
1942 toAppend = formatData.narrowDayPeriods[value]; in subFormat()
1946 if (toAppend == null) { in subFormat()
1954 buf.append(toAppend); in subFormat()
1997 String toAppend = null; in subFormat() local
2004 toAppend = formatData.abbreviatedDayPeriods[index]; // i.e. short in subFormat()
2006 toAppend = formatData.wideDayPeriods[index]; in subFormat()
2008 toAppend = formatData.narrowDayPeriods[index]; in subFormat()
[all …]
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp1889 const UnicodeString *toAppend = NULL; in subFormat() local
1907 toAppend = &fSymbols->fAbbreviatedDayPeriods[val]; in subFormat()
1909 toAppend = &fSymbols->fWideDayPeriods[val]; in subFormat()
1911 toAppend = &fSymbols->fNarrowDayPeriods[val]; in subFormat()
1918 if (toAppend == NULL || toAppend->isBogus()) { in subFormat()
1926 appendTo += *toAppend; in subFormat()
1975 UnicodeString *toAppend = NULL; in subFormat() local
1986 toAppend = &fSymbols->fAbbreviatedDayPeriods[index]; // i.e. short in subFormat()
1988 toAppend = &fSymbols->fWideDayPeriods[index]; in subFormat()
1990 toAppend = &fSymbols->fNarrowDayPeriods[index]; in subFormat()
[all …]
/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/skia/src/sksl/codegen/
DSkSLCPPCodeGenerator.h128 void addExtraEmitCodeLine(const String& toAppend);
DSkSLCPPCodeGenerator.cpp714 void CPPCodeGenerator::addExtraEmitCodeLine(const String& toAppend) { in addExtraEmitCodeLine() argument
718 currentBlock += " " + toAppend + "\n"; in addExtraEmitCodeLine()
/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/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/boringssl/src/ssl/test/runner/
Dhandshake_server.go1769 var toAppend byte
1771 toAppend = typeNewSessionTicket
1773 toAppend = typeFinished
1775 if toAppend != 0 {
1776 …rd(recordTypeHandshake, append(helloDoneBytes[:len(helloDoneBytes):len(helloDoneBytes)], toAppend))
/external/cldr/tools/java/org/unicode/cldr/tool/
DCheckHtmlFiles.java405 public void addText(String toAppend) { in addText() argument
406 String temp = TransliteratorUtilities.fromHTML.transform(toAppend); in addText()