HomeSort by relevance Sort by last modified time
    Searched refs:formatter (Results 51 - 75 of 325) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationImpl.java 35 private TypeFormatter formatter = new TypeFormatter(); field in class:DexAnnotationImpl
71 builder.append(formatter.format(encodedAnnotation.getTypeName()));
DexMethodImpl.java 48 private final TypeFormatter formatter = new TypeFormatter(); field in class:DexMethodImpl
142 builder.append(formatter.formatAnnotations(getAnnotations()));
145 builder.append(formatter.format(getReturnType()));
151 builder.append(formatter.formatAnnotations(dexParameter
153 builder.append(formatter.format(dexParameter.getTypeName()));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/util/
HashUtil.java 11 import java.util.Formatter;
56 Formatter formatter = new Formatter(sb); local
58 formatter.format("%02x", b);
  /external/chromium_org/third_party/icu/source/i18n/
nfsubs.cpp 51 const RuleBasedNumberFormat* formatter,
74 const RuleBasedNumberFormat* formatter,
77 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor)
130 const RuleBasedNumberFormat* formatter,
177 const RuleBasedNumberFormat* formatter,
180 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
200 const RuleBasedNumberFormat* formatter,
231 const RuleBasedNumberFormat* formatter,
234 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
262 const RuleBasedNumberFormat* formatter,
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/
dmprof.py 67 formatter = logging.Formatter('%(message)s') variable
68 handler.setFormatter(formatter)
  /external/icu4c/i18n/
nfsubs.cpp 51 const RuleBasedNumberFormat* formatter,
77 const RuleBasedNumberFormat* formatter,
80 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor)
136 const RuleBasedNumberFormat* formatter,
188 const RuleBasedNumberFormat* formatter,
191 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
214 const RuleBasedNumberFormat* formatter,
248 const RuleBasedNumberFormat* formatter,
251 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
282 const RuleBasedNumberFormat* formatter,
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatTest.java 179 DecimalFormat formatter = new DecimalFormat(); local
180 formatter.setDecimalFormatSymbols(decimalFormatSymbols);
181 formatter.applyLocalizedPattern("#.aa");
182 assertEquals("e.fa", formatter.format(4.50));
188 DecimalFormat formatter = new DecimalFormat(); local
189 formatter.setDecimalFormatSymbols(decimalFormatSymbols);
190 formatter.applyLocalizedPattern("#");
191 assertEquals("eadacab", formatter.format(4030201));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
optparse.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
optparse.py     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logutils.py 148 formatter = logging.Formatter("%(name)s: [%(levelname)s] %(message)s")
150 formatter = logging.Formatter("%(message)s")
152 handler.setFormatter(formatter)
  /external/emma/lib/internal/
stamptool.jar 
  /external/icu4c/test/intltest/
listformattertest.h 40 void CheckFormatting(const ListFormatter* formatter, UnicodeString data[], int32_t data_size, const UnicodeString& expected_result);
  /libcore/luni/src/test/java/libcore/java/util/
OldFormatterTest.java 21 import java.util.Formatter;
32 public void formatTo(Formatter formatter, int flags, int width, int precision) throws IllegalFormatException {
34 formatter.out().append("111");
41 public void formatTo(Formatter formatter, int flags, int width, int precision) throws IllegalFormatException {
43 formatter.out().append("222");
50 assertEquals("aaa 111?", new Formatter().format("aaa %s?", ones).toString());
51 assertEquals("aaa 111 bbb 222?", new Formatter().format("aaa %s bbb %s?", ones, twos).toString());
57 Formatter fLoc = null
    [all...]
  /external/chromium_org/content/renderer/
renderer_date_time_picker.cc 67 DateTimeFormatter formatter(
74 formatter.GetFormattedValue().c_str()));
date_time_formatter.cc 133 icu::SimpleDateFormat formatter(*pattern_, success);
135 formatter.format(calendar, formatted_time, NULL, success);
198 icu::SimpleDateFormat formatter(pattern, success);
199 formatter.parse(icu_value, success);
201 const icu::Calendar* cal = formatter.getCalendar();
  /external/chromium_org/v8/test/intl/date-format/
protected-icu-internals.js 35 format.formatter = {'zzz':'some random object'};
37 assertFalse(format.formatter.hasOwnProperty('zzz'));
42 Object.defineProperty(format, 'formatter', {value: undefined});
49 assertFalse(delete format.formatter);