| /external/smack/src/org/jivesoftware/smack/util/ | 
| DateFormatType.java | 42     private String formatString; 45         formatString = dateFormat;
 54         return formatString;
 
 | 
| /external/chromium/chrome/browser/ui/cocoa/ | 
| l10n_util.h | 27 // but for a NSString formatString. 28 NSString* ReplaceNSStringPlaceholders(NSString* formatString,
 
 | 
| /external/clang/test/SemaCXX/ | 
| printf-cstr.cpp | 28   char formatString[] = "non-const %s %s"; 38   printf(formatString, hcs, hncs); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}} expected-warning{{cannot pass object of non-POD type 'HasNoCStr' through variadic function}}
 
 | 
| /libcore/luni/src/main/java/libcore/net/http/ | 
| HttpDate.java | 76         for (String formatString : BROWSER_COMPATIBLE_DATE_FORMATS) { 78                 return new SimpleDateFormat(formatString, Locale.US).parse(value);
 
 | 
| /external/chromium_org/chrome/browser/ui/cocoa/ | 
| l10n_util.h | 27 // but for a NSString formatString. 28 NSString* ReplaceNSStringPlaceholders(NSString* formatString,
 
 | 
| /external/chromium_org/third_party/WebKit/Source/modules/crypto/ | 
| Key.cpp | 134 bool Key::parseFormat(const String& formatString, WebKit::WebCryptoKeyFormat& format) 137     if (formatString == "raw") {
 141     if (formatString == "pkcs8") {
 145     if (formatString == "spki") {
 149     if (formatString == "jwk") {
 
 | 
| /packages/apps/Nfc/src/com/android/nfc/cardemulation/ | 
| TapAgainDialog.java | 88             String formatString = getString(com.android.nfc.R.string.tap_again_to_pay); 89             tv.setText(String.format(formatString, description));
 91             String formatString = getString(com.android.nfc.R.string.tap_again_to_complete);
 92             tv.setText(String.format(formatString, description));
 
 | 
| AppChooserActivity.java | 121             String formatString = getString(com.android.nfc.R.string.transaction_failure); 123             ap.mMessage = String.format(formatString, applicationLabel);
 129                 String formatString = getString(com.android.nfc.R.string.could_not_use_app);
 130                 ap.mTitle = String.format(formatString, applicationLabel);
 
 | 
| /packages/apps/Settings/src/com/android/settings/nfc/ | 
| PaymentDefaultDialog.java | 121             String formatString = getString(R.string.nfc_payment_set_default); 122             String msg = String.format(formatString, requestedPaymentApp.caption);
 125             String formatString = getString(R.string.nfc_payment_set_default_instead_of);
 126             String msg = String.format(formatString, requestedPaymentApp.caption,
 
 | 
| /packages/apps/UnifiedEmail/src/com/android/mail/ui/ | 
| HierarchicalFolderSelectorAdapter.java | 110                 final int formatString; 112                     formatString = R.string.hierarchical_folder_parent_top_ellip;
 114                     formatString = R.string.hierarchical_folder_parent_top;
 116                 display.append(mContext.getResources().getString(formatString, topParentName,
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/platform/text/ | 
| DateTimeFormatTest.cpp | 164     Tokens parse(const String& formatString) 167         if (!DateTimeFormat::parse(formatString, handler))
 174         char formatString[2];
 175         formatString[0] = ch;
 176         formatString[1] = 0;
 178         if (!DateTimeFormat::parse(formatString, handler))
 
 | 
| PlatformLocale.cpp | 69 bool DateTimeStringBuilder::build(const String& formatString) 71     m_builder.reserveCapacity(formatString.length());
 72     return DateTimeFormat::parse(formatString, *this);
 
 | 
| /system/core/liblog/ | 
| logprint.c | 208 AndroidLogPrintFormat android_log_formatFromString(const char * formatString) 212     if (strcmp(formatString, "brief") == 0) format = FORMAT_BRIEF;
 213     else if (strcmp(formatString, "process") == 0) format = FORMAT_PROCESS;
 214     else if (strcmp(formatString, "tag") == 0) format = FORMAT_TAG;
 215     else if (strcmp(formatString, "thread") == 0) format = FORMAT_THREAD;
 216     else if (strcmp(formatString, "raw") == 0) format = FORMAT_RAW;
 217     else if (strcmp(formatString, "time") == 0) format = FORMAT_TIME;
 218     else if (strcmp(formatString, "threadtime") == 0) format = FORMAT_THREADTIME;
 219     else if (strcmp(formatString, "long") == 0) format = FORMAT_LONG;
 
 | 
| /external/smack/src/org/xbill/DNS/ | 
| TKEYRecord.java | 134 			sb.append(base64.formatString(key, 64, "\t", false)); 138 			sb.append(base64.formatString(other, 64, "\t", false));
 
 | 
| KEYBase.java | 60 			sb.append(base64.formatString(key, 64, "\t", true)); 
 | 
| CERTRecord.java | 175 			sb.append(base64.formatString(cert, 64, "\t", true)); 
 | 
| SIGBase.java | 106 		sb.append(base64.formatString(signature, 64, "\t", 
 | 
| TSIGRecord.java | 112 		sb.append (base64.formatString(signature, 64, "\t", false)); 
 | 
| /frameworks/base/core/java/com/android/internal/app/ | 
| RestrictionsPinActivity.java | 110                 final String formatString = getResources().getQuantityString( 113                 mPinErrorMessage.setText(String.format(formatString, seconds));
 
 | 
| /libcore/luni/src/test/java/libcore/java/text/ | 
| OldDecimalFormatTest.java | [all...] | 
| /external/smack/src/org/xbill/DNS/utils/ | 
| base64.java | 70 formatString(byte [] b, int lineLength, String prefix, boolean addClose) { 
 | 
| /packages/services/Telephony/src/com/android/phone/ | 
| RejectWithTextMessageManager.java | 109                         final String formatString = res.getString( 111                         final String confirmationMsg = String.format(formatString, phoneNumber);
 
 | 
| /external/chromium_org/third_party/mesa/src/src/mesa/main/ | 
| es_generator.py | 559             formatString = GetFormatString(paramType) 560             if formatString == None:
 563                 switchCode.append('            _mesa_error(_mesa_get_current_context(), %s, "gl%s(%s=%s)", %s);' % (errorCode, funcName, paramName, formatString, paramName))
 [all...]
 | 
| /external/mesa3d/src/mesa/main/ | 
| es_generator.py | 559             formatString = GetFormatString(paramType) 560             if formatString == None:
 563                 switchCode.append('            _mesa_error(_mesa_get_current_context(), %s, "gl%s(%s=%s)", %s);' % (errorCode, funcName, paramName, formatString, paramName))
 [all...]
 | 
| /packages/apps/DeskClock/src/com/android/deskclock/ | 
| AlarmTimelineView.java | 240         String formatString = DateFormat.is24HourFormat(context) ? FORMAT_24_HOUR : FORMAT_12_HOUR; 241         String format = DateFormat.getBestDateTimePattern(locale, formatString);
 
 |