/dalvik/tests/021-string2/src/junit/framework/ |
Assert.java | 268 String formatted= ""; local 270 formatted= message+" "; 271 fail(formatted+"expected not same"); 275 String formatted= ""; local 277 formatted= message+" "; 278 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">"); 286 String formatted= ""; local 288 formatted= message+" "; 289 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
|
/dalvik/tests/082-inline-execute/src/junit/framework/ |
Assert.java | 268 String formatted= ""; local 270 formatted= message+" "; 271 fail(formatted+"expected not same"); 275 String formatted= ""; local 277 formatted= message+" "; 278 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">"); 286 String formatted= ""; local 288 formatted= message+" "; 289 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
|
/external/junit/src/junit/framework/ |
Assert.java | 273 String formatted= ""; local 275 formatted= message+" "; 276 fail(formatted+"expected not same"); 280 String formatted= ""; local 282 formatted= message+" "; 283 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">"); 291 String formatted= ""; local 293 formatted= message+" "; 294 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
|
ComparisonCompactor.java | 82 String formatted= ""; local 84 formatted= message+" "; 85 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
|
/external/oprofile/libutil++/ |
string_manip.cpp | 130 string formatted = os.str(); local 131 if (is_prefix(formatted, "100.")) 132 formatted.erase(formatted.size() - 1); 133 return formatted;
|
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/ |
PhoneDataItem.java | 75 * Returns the formatted phone number (if already computed using {@link 80 final String formatted = getFormattedPhoneNumber(); local 81 if (formatted != null) { 82 return formatted;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
Clock.java | 192 SpannableStringBuilder formatted = new SpannableStringBuilder(result); local 194 formatted.delete(magic1, magic2+1); 198 formatted.setSpan(style, magic1, magic2, 201 formatted.delete(magic2, magic2 + 1); 202 formatted.delete(magic1, magic1 + 1); 204 return formatted;
|
/frameworks/base/telephony/java/android/telephony/ |
PhoneNumberFormattingTextWatcher.java | 110 String formatted = reformat(s, Selection.getSelectionEnd(s)); local 111 if (formatted != null) { 114 s.replace(0, s.length(), formatted, 0, formatted.length()); 117 if (formatted.equals(s.toString())) { 125 * Generate the formatted number by ignoring all non-dialable chars and stick the cursor to the 132 String formatted = null; local 141 formatted = getFormattedNumber(lastNonSeparator, hasCursor); 151 formatted = getFormattedNumber(lastNonSeparator, hasCursor); 153 return formatted; [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/ |
PhoneNumberTestService.java | 96 String formatted; local 103 formatted = util.format(pn, format); 107 formatted = "Error: " + e.toString(); 110 + ") = " + formatted + " / truncated = " + truncated
|
/sdk/find_java/ |
utils.cpp | 31 CString formatted;
local 34 formatted.setv(text, ap);
37 MessageBoxA(NULL, formatted.cstr(), "Android SDK Manager", MB_OK | MB_ICONINFORMATION);
42 CString formatted;
local 45 formatted.setv(description, ap);
50 formatted.add("\r\n");
51 formatted.add(error.cstr());
54 fprintf(stderr, "%s\n", formatted.cstr());
56 MessageBox(NULL, formatted.cstr(), "Android SDK Manager - Error", MB_OK | MB_ICONERROR);
|
/external/junit/src/org/junit/ |
Assert.java | 630 String formatted= ""; local 632 formatted= message + " "; 633 fail(formatted + "expected not same"); 638 String formatted= ""; local 640 formatted= message + " "; 641 fail(formatted + "expected same:<" + expected + "> was not:<" + actual 651 String formatted= ""; local 653 formatted= message + " "; 657 return formatted + "expected: " 661 return formatted + "expected:<" + expectedString + "> but was:< [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoring.java | 217 MultiTextEdit formatted = reformat(rootEdit, XmlFormatStyle.LAYOUT); local 218 if (formatted != null) { 219 rootEdit = formatted;
|
UseCompoundDrawableRefactoring.java | 365 MultiTextEdit formatted = reformat(rootEdit, XmlFormatStyle.LAYOUT); local 366 if (formatted != null) { 367 rootEdit = formatted; 427 * formatted and replaced in the target document.
|
WrapInRefactoring.java | 398 MultiTextEdit formatted = reformat(rootEdit, XmlFormatStyle.LAYOUT); local 399 if (formatted != null) { 400 rootEdit = formatted;
|
ExtractIncludeRefactoring.java | 375 MultiTextEdit formatted = reformat(doc.get(), rootEdit, local 377 if (formatted != null) { 378 rootEdit = formatted;
|
/external/v8/src/ |
string-stream.cc | 157 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());
|
/libcore/luni/src/test/java/libcore/java/text/ |
SimpleDateFormatTest.java | 336 // Can we parse an ASCII-formatted date in an Arabic locale? 341 String formatted = sdf.format(d); local 342 assertEquals("????-??-?? ??:??:??", formatted); 344 // Can we parse the Arabic-formatted date in an Arabic locale, and get the same date 346 Date d2 = sdf.parse(formatted);
|
/external/chromium/base/ |
string_util_unittest.cc | 878 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 [all...] |
string_util.cc | 846 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; [all...] |
/external/icu4c/test/cintltst/ |
udatpg_test.c | 228 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 ) {
|
cdtrgtst.c | 243 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/icu4c/test/intltest/ |
dtptngts.cpp | 545 logln(UnicodeString(" Formatted date:") + rDate); 570 logln(UnicodeString(" Formatted date:") + rDate); 789 UnicodeString formatted; local [all...] |
msfmrgts.cpp | 106 logln("Formatted with one extra param : " + tempBuffer); 125 logln("Formatted with no params : " + tempBuffer); 130 errln("Formatted with arguments > subsitution failed. result = " + tempBuffer); 131 logln("Formatted with extra params : " + tempBuffer); 200 logln("Formatted with 7 : " + tempBuffer); 257 logln("Formatted with null : " + tempBuffer);*/ 265 logln("Formatted with params : " + tempBuffer); 270 logln("Formatted with null : " + tempBuffer); 704 UnicodeString formatted; local 705 formatted = prefix + "YES" [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
EclipseXmlPrettyPrinterTest.java | 79 String formatted = sb.toString(); local 80 if (!expected.equals(formatted)) { 81 System.out.println(formatted); 83 assertEquals(expected, formatted); [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DateTimeSettings.java | 127 String formatted = local 133 getString(R.string.normal_date_format, formatted); 135 formattedDates[i] = formatted;
|