HomeSort by relevance Sort by last modified time
    Searched full:argumentindex (Results 1 - 25 of 28) sorted by null

1 2

  /external/proguard/src/proguard/optimize/
BootstrapMethodArgumentShrinker.java 67 for (int argumentIndex = 0; argumentIndex < methodArgumentCount; argumentIndex++)
69 if (argumentIndex >= 64 ||
70 (usedParameters & (1L << argumentIndex)) != 0L)
72 methodArguments[newArgumentIndex++] = methodArguments[argumentIndex];
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
ArgumentReplacingDispatcher.java 34 * argument replacement type, args in {@link #dispatch} matching {@code argumentIndex}
49 * {@code argumentIndex = 1} and {@code replaceWith = 0xDEADBEEF}.</p>
51 * <p>If a method dispatched has less arguments than {@code argumentIndex}, it is
55 * @param argumentIndex the numeric index of the argument {@code >= 0}
56 * @param replaceWith arguments matching {@code argumentIndex} will be replaced with this object
58 public ArgumentReplacingDispatcher(Dispatchable<T> target, int argumentIndex,
61 mArgumentIndex = checkArgumentNonnegative(argumentIndex,
62 "argumentIndex must not be negative");
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 156 int argumentIndex = argument - X;
157 return argumentIndex < 0 ?
159 matchedArguments[argumentIndex];
184 int argumentIndex = constantIndex - X;
185 return argumentIndex < 0 ?
187 matchedArguments[argumentIndex];
197 int argumentIndex = branchOffset - X;
198 return argumentIndex < 0 ?
200 matchedArguments[argumentIndex] - offset;
526 int argumentIndex = argument2 - X
    [all...]
  /external/mockito/src/org/mockito/internal/reporting/
PrintSettings.java 38 public boolean extraTypeInfoFor(int argumentIndex) {
39 return withTypeInfo.contains(argumentIndex);
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
messageformat.js 21 * messageFormatElement := argumentIndex [ "," elementFormat ]
315 var argumentIndex = parsedPattern.argumentIndex;
316 if (!goog.isDef(namedParameters[argumentIndex])) {
317 result.push('Undefined parameter - ' + argumentIndex);
321 var option = parsedPattern[namedParameters[argumentIndex]];
350 var argumentIndex = parsedPattern.argumentIndex;
352 var pluralValue = +namedParameters[argumentIndex];
355 result.push('Undefined or invalid parameter - ' + argumentIndex);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ExceptionMessages.cpp 99 String ExceptionMessages::argumentNullOrIncorrectType(int argumentIndex, const String& expectedType)
101 return "The " + ordinalNumber(argumentIndex) + " argument provided is either null, or an invalid " + expectedType + " object.";
104 String ExceptionMessages::notAnArrayTypeArgumentOrValue(int argumentIndex)
107 if (argumentIndex) // method argument
108 kind = ordinalNumber(argumentIndex) + " argument";
ExceptionMessages.h 49 static String argumentNullOrIncorrectType(int argumentIndex, const String& expectedType);
126 static String notAnArrayTypeArgumentOrValue(int argumentIndex);
V8Binding.h 603 Vector<RefPtr<T> > toRefPtrNativeArray(v8::Handle<v8::Value> value, int argumentIndex, v8::Isolate* isolate, ExceptionState& exceptionState)
611 exceptionState.throwTypeError(ExceptionMessages::notAnArrayTypeArgumentOrValue(argumentIndex));
633 WillBeHeapVector<RefPtrWillBeMember<T> > toRefPtrWillBeMemberNativeArray(v8::Handle<v8::Value> value, int argumentIndex, v8::Isolate* isolate, ExceptionState& exceptionState)
641 exceptionState.throwTypeError(ExceptionMessages::notAnArrayTypeArgumentOrValue(argumentIndex));
701 HeapVector<Member<T> > toMemberNativeArray(v8::Handle<v8::Value> value, int argumentIndex, v8::Isolate* isolate, ExceptionState& exceptionState)
709 exceptionState.throwTypeError(ExceptionMessages::notAnArrayTypeArgumentOrValue(argumentIndex));
737 Vector<T> toImplArray(v8::Handle<v8::Value> value, int argumentIndex, v8::Isolate* isolate, ExceptionState& exceptionState)
745 exceptionState.throwTypeError(ExceptionMessages::notAnArrayTypeArgumentOrValue(argumentIndex));
    [all...]
SerializedScriptValue.cpp     [all...]
  /external/proguard/src/proguard/retrace/
ReTrace.java 693 int argumentIndex = 0;
694 while (argumentIndex < args.length)
696 String arg = args[argumentIndex];
699 regularExpresssion = args[++argumentIndex];
710 argumentIndex++;
713 if (argumentIndex >= args.length)
719 File mappingFile = new File(args[argumentIndex++]);
720 File stackTraceFile = argumentIndex < args.length ?
721 new File(args[argumentIndex]) :
  /external/mockito/src/org/mockito/internal/stubbing/answers/
ReturnsArgumentAt.java 16 * <p>The <code>argumentIndex</code> represents the index in the argument array of the invocation.</p>
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModule.cpp 193 void InjectedScriptCanvasModule::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<RemoteObject>* result, RefPtr<ResourceState>* resourceState)
198 function.appendArgument(argumentIndex);
InspectorCanvasAgent.cpp 190 void InspectorCanvasAgent::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPtr<ResourceState>& resourceState)
194 module.evaluateTraceLogCallArgument(errorString, traceLogId, callIndex, argumentIndex, objectGroup ? *objectGroup : String(), &result, &resourceState);
InjectedScriptCanvasModuleSource.js     [all...]
  /external/clang/include/clang/Lex/
CodeCompletionHandler.h 61 unsigned ArgumentIndex) { }
  /external/mockito/src/org/mockito/exceptions/
Reporter.java 697 public int invalidArgumentPositionRangeAtInvocationTime(InvocationOnMock invocation, boolean willReturnLastParameter, int argumentIndex) {
704 "Wanted parameter at position " + argumentIndex) + " but " + possibleArgumentTypesOf(invocation),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasProfileView.js 581 var argumentIndex = argumentElement.__argumentIndex;
582 if (typeof argumentIndex !== "number")
583 argumentIndex = -1;
584 CanvasAgent.evaluateTraceLogCallArgument(this._traceLogId, callIndex, argumentIndex, objectGroupName, showObjectPopover.bind(this));
    [all...]
  /libcore/luni/src/main/java/java/text/
MessageFormat.java 58 * { <i>ArgumentIndex</i> }
59 * { <i>ArgumentIndex</i> , <i>FormatType</i> }
60 * { <i>ArgumentIndex</i> , <i>FormatType</i> , <i>FormatStyle</i> }
123 * The <i>ArgumentIndex</i> value is a non-negative integer written using the
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tmsgfmt.cpp 550 dataerrln("TestMessageFormat::testMsgFormatPlural #1 - argumentIndex - %s", u_errorName(err));
571 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
575 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
598 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
602 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
    [all...]
  /external/icu/icu4c/source/test/intltest/
tmsgfmt.cpp 550 dataerrln("TestMessageFormat::testMsgFormatPlural #1 - argumentIndex - %s", u_errorName(err));
571 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
575 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
598 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
602 logln(UnicodeString("The results of argumentName and argumentIndex are not the same."));
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
MessageFormatTest.java 741 // test exceeding the argumentIndex number
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraCaptureSessionImpl.java 428 /*argumentIndex*/0, this);
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 

Completed in 3831 milliseconds

1 2