/dalvik/dx/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/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 | 266 String formatted= ""; local 268 formatted= message+" "; 269 fail(formatted+"expected not same"); 273 String formatted= ""; local 275 formatted= message+" "; 276 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">"); 284 String formatted= ""; local 286 formatted= message+" "; 287 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;
|
/libcore/junit/src/main/java/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+">";
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
Clock.java | 188 SpannableStringBuilder formatted = new SpannableStringBuilder(result); local 190 formatted.delete(magic1, magic2+1); 194 formatted.setSpan(style, magic1, magic2, 197 formatted.delete(magic2, magic2 + 1); 198 formatted.delete(magic1, magic1 + 1); 200 return formatted;
|
/frameworks/base/telephony/java/android/telephony/ |
PhoneNumberFormattingTextWatcher.java | 150 String formatted = reformat(s, Selection.getSelectionEnd(s)); local 151 if (formatted != null) { 154 s.replace(0, s.length(), formatted, 0, formatted.length()); 157 if (formatted.equals(s.toString())) { 165 * Generate the formatted number by ignoring all non-dialable chars and stick the cursor to the 172 String formatted = null; local 181 formatted = getFormattedNumber(lastNonSeparator, hasCursor); 191 formatted = getFormattedNumber(lastNonSeparator, hasCursor); 193 return formatted; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoring.java | 210 MultiTextEdit formatted = reformat(rootEdit, XmlFormatStyle.LAYOUT); local 211 if (formatted != null) { 212 rootEdit = formatted;
|
WrapInRefactoring.java | 391 MultiTextEdit formatted = reformat(rootEdit, XmlFormatStyle.LAYOUT); local 392 if (formatted != null) { 393 rootEdit = formatted;
|
ExtractIncludeRefactoring.java | 367 MultiTextEdit formatted = reformat(doc.get(), rootEdit, local 369 if (formatted != null) { 370 rootEdit = formatted;
|
ExtractStyleRefactoring.java | 372 MultiTextEdit formatted = reformat(rootEdit, XmlFormatStyle.LAYOUT); local 373 if (formatted != null) { 374 rootEdit = formatted;
|
/development/tools/glesv2debugger/test/com/android/glesv2debugger/ |
MessageParserExTest.java | 103 String formatted = MessageFormatter.format(msg, false); local 104 formatted = formatted.substring(0, formatted.indexOf('(')) + ' ' + builder.getFunction() + 105 formatted.substring(formatted.indexOf('(')); 107 MessageParserEx.instance.parse(parsed, formatted);
|
/external/v8/src/ |
string-stream.cc | 155 EmbeddedVector<char, 24> formatted; local 156 int length = OS::SNPrintF(formatted, temp.start(), value); 157 Add(Vector<const char>(formatted.start(), length)); 162 EmbeddedVector<char, 28> formatted; local 163 OS::SNPrintF(formatted, temp.start(), value); 164 Add(formatted.start()); 169 EmbeddedVector<char, 20> formatted; local 170 OS::SNPrintF(formatted, temp.start(), value); 171 Add(formatted.start());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gldebugger/ |
MessageParserExTest.java | 107 String formatted = MessageFormatter.format(msg, false); local 108 formatted = formatted.substring(0, formatted.indexOf('(')) + ' ' + builder.getFunction() + 109 formatted.substring(formatted.indexOf('(')); 111 MessageParserEx.instance.parse(parsed, formatted);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
XmlPrettyPrinterTest.java | 62 String formatted = sb.toString(); local 63 if (!expected.equals(formatted)) { 64 System.out.println(formatted); 66 assertEquals(expected, 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 | 487 logln(UnicodeString(" Formatted date:") + rDate); 512 logln(UnicodeString(" Formatted date:") + rDate); 731 UnicodeString formatted; local [all...] |
msfmrgts.cpp | 109 logln("Formatted with one extra param : " + tempBuffer); 128 logln("Formatted with no params : " + tempBuffer); 133 errln("Formatted with arguments > subsitution failed. result = " + tempBuffer); 134 logln("Formatted with extra params : " + tempBuffer); 198 logln("Formatted with 7 : " + tempBuffer); 255 logln("Formatted with null : " + tempBuffer);*/ 263 logln("Formatted with params : " + tempBuffer); 268 logln("Formatted with null : " + tempBuffer); 702 UnicodeString formatted; local 703 formatted = prefix + "YES" [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DateTimeSettings.java | 122 String formatted = local 128 getString(R.string.normal_date_format, formatted); 130 formattedDates[i] = formatted;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
AndroidXmlFormattingStrategy.java | 72 * overlapping the formatted region, then it pretty-prints that XML region 156 * @param model the model to be formatted 158 * @param length the length of the text range to be formatted 159 * @return a {@link TextEdit} which edits the model into a formatted document 297 // If you select this text range, we want <foo> to be formatted at whatever 311 // this is that some of theses nodes, which have not yet been formatted, 335 String formatted = sb.toString(); local 336 ReplaceEdit replaceEdit = createReplaceEdit(document, replaceStart, replaceEnd, formatted, 344 // old positions of the formatted text: 358 * given new formatted content. The replaceStart and replaceEnd parameters point t [all...] |
/external/chromium/net/base/ |
net_util_unittest.cc | 1639 string16 formatted = FormatUrl( local 1650 string16 formatted = FormatUrl( local [all...] |