Searched refs:formatted (Results 1 - 25 of 36) sorted by relevance

12

/external/oprofile/libutil++/
H A Dstring_manip.cpp130 string formatted = os.str(); local
131 if (is_prefix(formatted, "100."))
132 formatted.erase(formatted.size() - 1);
133 return formatted;
/external/junit/src/junit/framework/
H A DAssert.java273 String formatted= "";
275 formatted= message+" ";
276 fail(formatted+"expected not same");
280 String formatted= "";
282 formatted= message+" ";
283 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
291 String formatted= "";
293 formatted= message+" ";
294 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
H A DComparisonCompactor.java82 String formatted= "";
84 formatted= message+" ";
85 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
/external/webkit/Source/WebCore/inspector/front-end/
H A DScriptFormatterWorker.js52 var mapping = { original: [], formatted: [] };
63 mapping.formatted.push(match.index + match[1].length);
H A DScriptFormatter.js140 var mapping = { original: [], formatted: [] };
144 mapping.formatted.push(text.length);
150 mapping.formatted.push(chunk.mapping.formatted[j] + text.length);
159 mapping.formatted.push(text.length);
181 task.callback(task.source, { original: [], formatted: [] });
H A DheapProfiler.css205 .detailed-heapshot-view .console-formatted-object, .console-formatted-node {
210 .detailed-heapshot-view .console-formatted-string {
H A DSourceFile.js309 var formattedPosition = this._mapping.formatted[index];
316 var index = this._mapping.formatted.upperBound(formattedPosition - 1);
H A Dinspector.css853 .console-formatted-object, .console-formatted-node {
859 .console-formatted-object .section, .console-formatted-node .section {
863 .console-formatted-object .properties, .console-formatted-node .properties {
867 .console-formatted-number {
871 .console-formatted-string, .console-formatted-regexp {
876 .console-formatted
[all...]
/external/junit/src/org/junit/
H A DAssert.java630 String formatted= "";
632 formatted= message + " ";
633 fail(formatted + "expected not same");
638 String formatted= "";
640 formatted= message + " ";
641 fail(formatted + "expected same:<" + expected + "> was not:<" + actual
651 String formatted= "";
653 formatted= message + " ";
657 return formatted + "expected: "
661 return formatted
[all...]
/external/chromium/net/base/
H A Dnet_util_unittest.cc1639 string16 formatted = FormatUrl( local
1642 EXPECT_EQ(WideToUTF16(tests[i].output), formatted) << tests[i].description;
1650 string16 formatted = FormatUrl( local
1657 L"/%E3%82%B0/?q=%E3%82%B0#\x30B0"), formatted);
1659 formatted.substr(parsed.username.begin, parsed.username.len));
1661 formatted.substr(parsed.password.begin, parsed.password.len));
1663 formatted.substr(parsed.host.begin, parsed.host.len));
1665 formatted.substr(parsed.port.begin, parsed.port.len));
1667 formatted.substr(parsed.path.begin, parsed.path.len));
1669 formatted
[all...]
/external/v8/benchmarks/
H A Dbase.js127 var formatted = BenchmarkSuite.FormatScore(100 * score);
128 runner.NotifyScore(formatted);
182 var formatted = BenchmarkSuite.FormatScore(100 * score);
183 this.runner.NotifyResult(this.name, formatted);
/external/icu4c/test/intltest/
H A Dtufmtts.cpp67 UnicodeString formatted;
70 formatted = ((Format*)formats[style])->format(formattable, formatted, status);
74 formatted.extract(0, formatted.length(), formatResult, "UTF-8");
78 ((Format*)formats[style])->parseObject(formatted, result, status);
85 ((Format*)formats[1-style])->parseObject(formatted, result_1, status);
312 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
H A Ddtptngts.cpp741 UnicodeString formatted; local
742 formatted = formatter.format(Calendar::getNow(), formatted, status);
744 formatted.remove();
747 formatted = formatter.format(testDate, formatted, status);
749 if ( formatted != expectedResult ) {
751 errln(UnicodeString(" Got: ")+ formatted + UnicodeString(" Expected: ") + expectedResult);
H A Ddtfmrgts.cpp317 UnicodeString formatted; local
319 formatted = fmt->format( o, formatted, poss, status );
321 logln( "Formatted string: " + formatted );
322 if( formatted != str)
323 errln("Fail: Want " + str + " Got " + formatted);
556 US locale a string formatted according to mm/dd/yy and parses it
H A Dmsfmrgts.cpp704 UnicodeString formatted; local
705 formatted = prefix + "YES";
709 //Object[] objs = mf.parse(formatted, new ParsePosition(0));
712 objs = mf->parse(formatted, pp, count);
715 log(" \"" + formatted + "\" parsed as ");
844 logln(" (incorrectly formatted string)");
848 logln(" (correctly formatted string)");
923 // can be used in that case and will be formatted as a single one.
H A Ddtfmttst.cpp627 UnicodeString formatted; ((Format*)fmt)->format(o, formatted, status); local
628 logln((UnicodeString)"Formatted string: " + formatted);
629 if (!(formatted == str)) errln((UnicodeString)"FAIL: Expected " + str);
3377 errln((UnicodeString)"FAIL: Improper formatted date: " + strf);
3380 errln((UnicodeString)"FAIL: Improper formatted date: " + strl);
3385 errln((UnicodeString)"FAIL: Improper formatted date: " + strm );
3389 errln((UnicodeString)"FAIL: Improper formatted date: " + strs);
3534 UnicodeString formatted; local
3535 formatter->format(date1, formatted);
[all...]
H A Dnumfmtst.cpp2438 // We should be able to round-trip the formatted string =>
2476 // We should be able to round-trip the formatted string =>
2849 // Parsing the formatted text will be out-of-range for an int64, however.
3039 // currency number to be formatted,
3217 // currency amount to be formatted,
3218 // currency ISO code to be formatted,
3314 // currency amount to be formatted,
3315 // currency ISO code to be formatted,
5964 UnicodeString formatted = ctou(DATA[i]); local
5970 numFmt->parseCurrency(formatted, parseResul
5986 UnicodeString formatted = ctou(WRONG_DATA[i]); local
[all...]
/external/v8/src/
H A Dstring-stream.cc157 EmbeddedVector<char, 24> formatted; local
158 int length = OS::SNPrintF(formatted, temp.start(), value);
159 Add(Vector<const char>(formatted.start(), length));
164 EmbeddedVector<char, 28> formatted; local
165 OS::SNPrintF(formatted, temp.start(), value);
166 Add(formatted.start());
171 EmbeddedVector<char, 20> formatted; local
172 OS::SNPrintF(formatted, temp.start(), value);
173 Add(formatted.start());
/external/icu4c/test/cintltst/
H A Dudatpg_test.c228 UChar pattern[40], formatted[40]; local
337 formattedCapacity = (int32_t)(sizeof(formatted)/sizeof((formatted)[0]));
338 resultLen=udat_format(formatter, ucal_getNow(), formatted, formattedCapacity,
343 resultLen=udat_format(formatter, sampleDate, formatted, formattedCapacity,
345 if ( u_memcmp(sampleFormatted, formatted, resultLen) != 0 ) {
H A Dcdtrgtst.c243 UChar* formatted=NULL; local
262 formatted = myFormatit(fmt, d1);
263 if( u_strcmp(formatted,str)!=0) {
264 log_err("Fail: Want %s Got: %s\n", austrdup(str), austrdup(formatted) );
358 US locale a string formatted according to mm/dd/yy and parses it
/external/chromium/base/
H A Dstring_util.cc846 OutStringType formatted; variable
847 formatted.reserve(format_string.length() + sub_length);
858 formatted.push_back('$');
866 static_cast<int>(formatted.size()));
874 formatted.append(subst.at(index));
878 formatted.push_back(*i);
887 return formatted;
H A Dstring_util_unittest.cc878 string16 formatted = local
882 EXPECT_EQ(formatted, ASCIIToUTF16("9aa,8bb,7cc,6dd,5ee,4ff,3gg,2hh,1ii"));
893 string16 formatted = local
897 EXPECT_EQ(formatted, ASCIIToUTF16("9aa,8bb,7cc,d,e,f,9ag,8bh,7ci"));
912 std::string formatted = local
916 EXPECT_EQ(formatted, "9aa,8bb,7cc,6dd,5ee,4ff,3gg,2hh,1ii");
/external/blktrace/doc/
H A Dblktrace.tex42 into either long-term on-disk storage, or provides direct formatted
435 for various devices on various CPUs, and produce a formatted output of
443 formatted data.
463 By default, blkparse sends formatted data to standard output. This may
808 Adds a formatted message to the output stream. The total message
/external/dexmaker/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...

Completed in 492 milliseconds

12