HomeSort by relevance Sort by last modified time
    Searched defs:formatString (Results 1 - 25 of 65) sorted by null

1 2 3

  /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}}
  /external/smack/src/org/jivesoftware/smack/util/
DateFormatType.java 42 private String formatString;
45 formatString = dateFormat;
54 return formatString;
  /external/chromium_org/third_party/WebKit/Source/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))
  /external/smack/src/org/xbill/DNS/utils/
base64.java 70 formatString(byte [] b, int lineLength, String prefix, boolean addClose) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SplitClockView.java 82 String formatString = DateFormat.getTimeFormatString(getContext());
83 int index = getAmPmPartEndIndex(formatString);
87 timeString = formatString;
90 timeString = formatString.substring(0, index);
91 amPmString = formatString.substring(index);
100 * @return the index where the AM/PM part starts at the end in {@code formatString} including
101 * leading white spaces or {@code -1} if no AM/PM part is found or {@code formatString}
104 private static int getAmPmPartEndIndex(String formatString) {
106 int length = formatString.length();
108 char c = formatString.charAt(i)
    [all...]
  /packages/apps/Settings/src/com/android/settings/nfc/
PaymentDefaultDialog.java 112 String formatString = getString(R.string.nfc_payment_set_default);
113 String msg = String.format(formatString,
117 String formatString = getString(R.string.nfc_payment_set_default_instead_of);
118 String msg = String.format(formatString,
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HierarchicalFolderSelectorAdapter.java 108 final int formatString;
110 formatString = R.string.hierarchical_folder_parent_top_ellip;
112 formatString = R.string.hierarchical_folder_parent_top;
114 display.append(mContext.getResources().getString(formatString, topParentName,
  /external/smack/src/org/xbill/DNS/
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",
TKEYRecord.java 134 sb.append(base64.formatString(key, 64, "\t", false));
138 sb.append(base64.formatString(other, 64, "\t", false));
TSIGRecord.java 112 sb.append (base64.formatString(signature, 64, "\t", false));
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
TapAgainDialog.java 85 String formatString = getString(com.android.nfc.R.string.tap_again_to_pay);
86 tv.setText(String.format(formatString, description));
88 String formatString = getString(com.android.nfc.R.string.tap_again_to_complete);
89 tv.setText(String.format(formatString, description));
AppChooserActivity.java 120 String formatString = getString(com.android.nfc.R.string.transaction_failure);
122 ap.mMessage = String.format(formatString, applicationLabel);
128 String formatString = getString(com.android.nfc.R.string.could_not_use_app);
129 ap.mTitle = String.format(formatString, applicationLabel);
  /packages/services/Telecomm/src/com/android/server/telecom/
RespondViaSmsManager.java 154 final String formatString = res.getString(
156 final String confirmationMsg = String.format(formatString, phoneNumber);
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
FormatInterpreter.java 222 String formatString = getFormatString(scriptType, regionCode);
226 for (char c : formatString.toCharArray()) {
233 + "' in format pattern: " + formatString);
  /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...]
  /frameworks/base/core/java/com/android/internal/app/
RestrictionsPinActivity.java 110 final String formatString = getResources().getQuantityString(
113 mPinErrorMessage.setText(String.format(formatString, seconds));
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java 221 final CharSequence formatString = context.getResources().getQuantityText(resource, count);
222 return String.format(formatString.toString(), count);
    [all...]
NotificationUtils.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java     [all...]
  /prebuilts/devtools/tools/lib/
lint.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.2.0/
lint-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.4.0/
lint-22.4.0.jar 

Completed in 504 milliseconds

1 2 3