Home
last modified time | relevance | path

Searched refs:formatArgs (Results 1 – 22 of 22) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.Core/Logging/
DTextWriterLogger.cs93 public void Debug(string format, params object[] formatArgs) in Debug() argument
95 Debug(string.Format(format, formatArgs)); in Debug()
105 public void Info(string format, params object[] formatArgs) in Info() argument
107 Info(string.Format(format, formatArgs)); in Info()
117 public void Warning(string format, params object[] formatArgs) in Warning() argument
119 Warning(string.Format(format, formatArgs)); in Warning()
135 public void Error(string format, params object[] formatArgs) in Error() argument
137 Error(string.Format(format, formatArgs)); in Error()
DLogLevelFilterLogger.cs80 public void Debug(string format, params object[] formatArgs) in Debug() argument
84 innerLogger.Debug(format, formatArgs); in Debug()
98 public void Info(string format, params object[] formatArgs) in Info() argument
102 innerLogger.Info(format, formatArgs); in Info()
116 public void Warning(string format, params object[] formatArgs) in Warning() argument
120 innerLogger.Warning(format, formatArgs); in Warning()
143 public void Error(string format, params object[] formatArgs) in Error() argument
147 innerLogger.Error(format, formatArgs); in Error()
DNullLogger.cs38 public void Debug(string format, params object[] formatArgs) in Debug() argument
59 public void Error(string format, params object[] formatArgs) in Error() argument
82 public void Info(string format, params object[] formatArgs) in Info() argument
103 public void Warning(string format, params object[] formatArgs) in Warning() argument
DILogger.cs34 void Debug(string format, params object[] formatArgs); in Debug() argument
40 void Info(string format, params object[] formatArgs); in Info() argument
46 void Warning(string format, params object[] formatArgs); in Warning() argument
55 void Error(string format, params object[] formatArgs); in Error() argument
/external/smali/dexlib2/src/main/java/org/jf/util/
DExceptionWithContext.java48 public static ExceptionWithContext withContext(Throwable ex, String str, Object... formatArgs) { in withContext() argument
57 ewc.addContext(String.format(str, formatArgs)); in withContext()
66 public ExceptionWithContext(String message, Object... formatArgs) { in ExceptionWithContext() argument
67 this(null, message, formatArgs); in ExceptionWithContext()
85 public ExceptionWithContext(Throwable cause, String message, Object... formatArgs) { in ExceptionWithContext() argument
86 super((message != null) ? formatMessage(message, formatArgs) : in ExceptionWithContext()
99 private static String formatMessage(String message, Object... formatArgs) { in formatMessage() argument
103 return String.format(message, formatArgs); in formatMessage()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DUnresolvedClassException.java41 public UnresolvedClassException(Throwable cause, String message, Object... formatArgs) { in UnresolvedClassException() argument
42 super(cause, message, formatArgs); in UnresolvedClassException()
45 public UnresolvedClassException(String message, Object... formatArgs) { in UnresolvedClassException() argument
46 super(message, formatArgs); in UnresolvedClassException()
DAnalysisException.java43 public AnalysisException(Throwable cause, String message, Object... formatArgs) { in AnalysisException() argument
44 super(cause, message, formatArgs); in AnalysisException()
47 public AnalysisException(String message, Object... formatArgs) { in AnalysisException() argument
48 super(message, formatArgs); in AnalysisException()
DClassPathResolver.java218 public NotFoundException(String message, Object... formatArgs) { in NotFoundException() argument
219 super(String.format(message, formatArgs)); in NotFoundException()
227 public ResolveException (String message, Object... formatArgs) { in ResolveException() argument
228 super(String.format(message, formatArgs)); in ResolveException()
235 public ResolveException (Throwable cause, String message, Object... formatArgs) { in ResolveException() argument
236 super(String.format(message, formatArgs), cause); in ResolveException()
DPathEntryLoader.java105 public NoDexException(String message, Object... formatArgs) { in NoDexException() argument
106 super(String.format(message, formatArgs)); in NoDexException()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DAnnotatedBytes.java108 public void annotateTo(int offset, @Nonnull String msg, Object... formatArgs) { in annotateTo() argument
109 annotate(offset - cursor, msg, formatArgs); in annotateTo()
122 public void annotate(int length, @Nonnull String msg, Object... formatArgs) { in annotate() argument
128 if (formatArgs != null && formatArgs.length > 0) { in annotate()
129 formattedMsg = String.format(msg, formatArgs); in annotate()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DDexFileFactory.java296 public DexFileNotFoundException(@Nullable String message, Object... formatArgs) { in DexFileNotFoundException() argument
297 super(message, formatArgs); in DexFileNotFoundException()
311 public MultipleMatchingDexEntriesException(@Nonnull String message, Object... formatArgs) { in MultipleMatchingDexEntriesException() argument
312 super(String.format(message, formatArgs)); in MultipleMatchingDexEntriesException()
317 public UnsupportedFileTypeException(@Nonnull String message, Object... formatArgs) { in UnsupportedFileTypeException() argument
318 super(String.format(message, formatArgs)); in UnsupportedFileTypeException()
DReferenceType.java107 … public InvalidReferenceTypeException(int referenceType, String message, Object... formatArgs) { in InvalidReferenceTypeException() argument
108 super(message, formatArgs); in InvalidReferenceTypeException()
DMethodHandleType.java87 …blic InvalidMethodHandleTypeException(int methodHandleType, String message, Object... formatArgs) { in InvalidMethodHandleTypeException() argument
88 super(message, formatArgs); in InvalidMethodHandleTypeException()
/external/icu/icu4c/source/test/intltest/
Dselfmts.cpp60 UnicodeString formatArgs[NUM_OF_FORMAT_ARGS] = { in selectFormatUnitTest() local
160 selFmt->format( formatArgs[j], result , ignore , status); in selectFormatUnitTest()
162 …ln("ERROR: SelectFormat Unit test failed in format() with argument: "+ formatArgs[j] + " and error… in selectFormatUnitTest()
165 …it test failed in format() with unexpected result\n with argument: "+ formatArgs[j] + "\n result … in selectFormatUnitTest()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DSelectFormatUnitTest.java113 String formatArgs[] = { in TestApplyFormat() local
156 …at Unit test failed in format() with unexpected result", selFmt.format(formatArgs[j]) ,expFormatRe… in TestApplyFormat()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DSelectFormatUnitTest.java116 String formatArgs[] = { in TestApplyFormat() local
159 …at Unit test failed in format() with unexpected result", selFmt.format(formatArgs[j]) ,expFormatRe… in TestApplyFormat()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
DTryListBuilder.java90 public InvalidTryException(Throwable cause, String message, Object... formatArgs) { in InvalidTryException() argument
91 super(cause, message, formatArgs); in InvalidTryException()
94 public InvalidTryException(String message, Object... formatArgs) { in InvalidTryException() argument
95 super(message, formatArgs); in InvalidTryException()
/external/skqp/src/gpu/effects/
DGrSkSLFP.cpp86 SkSL::String glsl, std::vector<SkSL::Compiler::FormatArg> formatArgs) in GrGLSLSkSLFP() argument
90 , fFormatArgs(formatArgs) {} in GrGLSLSkSLFP()
291 std::vector<SkSL::Compiler::FormatArg> formatArgs; in onCreateGLSLInstance() local
292 if (!fFactory->fCompiler.toPipelineStage(*specialized, &glsl, &formatArgs)) { in onCreateGLSLInstance()
296 return new GrGLSLSkSLFP(specialized->fContext.get(), &fFactory->fInputVars, glsl, formatArgs); in onCreateGLSLInstance()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowResources.java95 protected String getQuantityString(int id, int quantity, Object... formatArgs) in getQuantityString() argument
99 return String.format(Locale.ENGLISH, raw, formatArgs); in getQuantityString()
101 return directlyOn(realResources, Resources.class).getQuantityString(id, quantity, formatArgs); in getQuantityString()
DShadowLegacyResourcesImpl.java57 …public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFo… in getQuantityString() argument
59 return String.format(Locale.ENGLISH, raw, formatArgs); in getQuantityString()
DShadowArscResourcesImpl.java82 …public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFo… in getQuantityString() argument
84 return String.format(Locale.ENGLISH, raw, formatArgs); in getQuantityString()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedDexFile.java419 public InvalidItemIndex(int itemIndex, String message, Object... formatArgs) {
420 super(message, formatArgs);