Searched refs:formatArgs (Results 1 - 25 of 29) sorted by relevance

12

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DAnalysisException.java43 public AnalysisException(Throwable cause, String message, Object... formatArgs) { argument
44 super(cause, message, formatArgs);
47 public AnalysisException(String message, Object... formatArgs) { argument
48 super(message, formatArgs);
H A DUnresolvedClassException.java41 public UnresolvedClassException(Throwable cause, String message, Object... formatArgs) { argument
42 super(cause, message, formatArgs);
45 public UnresolvedClassException(String message, Object... formatArgs) { argument
46 super(message, formatArgs);
H A DClassPathResolver.java289 public NotFoundException(String message, Object... formatArgs) { argument
290 super(String.format(message, formatArgs));
295 public NoDexException(String message, Object... formatArgs) { argument
296 super(String.format(message, formatArgs));
304 public ResolveException (String message, Object... formatArgs) { argument
305 super(String.format(message, formatArgs));
312 public ResolveException (Throwable cause, String message, Object... formatArgs) { argument
313 super(String.format(message, formatArgs), cause);
/external/smali/util/src/main/java/org/jf/util/
H A DExceptionWithContext.java48 public static ExceptionWithContext withContext(Throwable ex, String str, Object... formatArgs) { argument
57 ewc.addContext(String.format(str, formatArgs));
66 public ExceptionWithContext(String message, Object... formatArgs) { argument
67 this(null, message, formatArgs);
85 public ExceptionWithContext(Throwable cause, String message, Object... formatArgs) { argument
86 super((message != null) ? formatMessage(message, formatArgs) :
99 private static String formatMessage(String message, Object... formatArgs) { argument
103 return String.format(message, formatArgs);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DReferenceType.java97 public InvalidReferenceTypeException(int referenceType, String message, Object... formatArgs) { argument
98 super(message, formatArgs);
H A DDexFileFactory.java296 public DexFileNotFoundException(@Nullable String message, Object... formatArgs) { argument
297 super(message, formatArgs);
311 public MultipleMatchingDexEntriesException(@Nonnull String message, Object... formatArgs) { argument
312 super(String.format(message, formatArgs));
317 public UnsupportedFileTypeException(@Nonnull String message, Object... formatArgs) { argument
318 super(String.format(message, formatArgs));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DSelectFormatUnitTest.java111 String formatArgs[] = {
154 assertEquals("ERROR: SelectFormat Unit test failed in format() with unexpected result", selFmt.format(formatArgs[j]) ,expFormatResult[i][j] );
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DSelectFormatUnitTest.java110 String formatArgs[] = {
153 assertEquals("ERROR: SelectFormat Unit test failed in format() with unexpected result", selFmt.format(formatArgs[j]) ,expFormatResult[i][j] );
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java108 public void annotateTo(int offset, @Nonnull String msg, Object... formatArgs) { argument
109 annotate(offset - cursor, msg, formatArgs);
120 * @param formatArgs format arguments to pass to String.format
122 public void annotate(int length, @Nonnull String msg, Object... formatArgs) { argument
128 if (formatArgs != null && formatArgs.length > 0) {
129 formattedMsg = String.format(msg, formatArgs);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFragment.java130 public final String getString(int resId, Object... formatArgs) { argument
134 return activity.getString(resId, formatArgs);
H A DShadowResources.java89 public String getString(int id, Object... formatArgs) throws Resources.NotFoundException { argument
91 return String.format(Locale.ENGLISH, raw, formatArgs);
95 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException { argument
97 return String.format(Locale.ENGLISH, raw, formatArgs);
H A DShadowContext.java55 public String getString(int resId, Object... formatArgs) { argument
56 return realContext.getResources().getString(resId, formatArgs);
/external/icu/icu4c/source/test/intltest/
H A Dselfmts.cpp55 UnicodeString formatArgs[NUM_OF_FORMAT_ARGS] = { local
155 selFmt->format( formatArgs[j], result , ignore , status);
157 errln("ERROR: SelectFormat Unit test failed in format() with argument: "+ formatArgs[j] + " and error is " + u_errorName(status) );
160 errln("ERROR: SelectFormat Unit test failed in format() with unexpected result\n with argument: "+ formatArgs[j] + "\n result obtained: " + result + "\n and expected is: " + expFormatResult[i][j] );
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
H A DTryListBuilder.java90 public InvalidTryException(Throwable cause, String message, Object... formatArgs) { argument
91 super(cause, message, formatArgs);
94 public InvalidTryException(String message, Object... formatArgs) { argument
95 super(message, formatArgs);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedDexFile.java351 public InvalidItemIndex(int itemIndex, String message, Object... formatArgs) { argument
352 super(message, formatArgs);
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/robolectric/v1/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 3207 milliseconds

12