HomeSort by relevance Sort by last modified time
    Searched refs:expectedArgs (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/third_party/mock4js/
mock4js.js 301 function StubInvocation(expectedMethodName, expectedArgs, actionSequence) {
303 this._expectedArgs = expectedArgs;
359 function ExpectedInvocation(expectedMethodName, expectedArgs, expectedCallCounter) {
360 this._stubInvocation = new StubInvocation(expectedMethodName, expectedArgs, new ActionSequence());
569 var expectedArgs = [];
572 expectedArgs[i] = arguments[i];
574 expectedArgs[i] = new MatchExactly(arguments[i]);
581 expectedInvocation = new ExpectedInvocation(methodName, expectedArgs, this._expectedCallCount);
583 expectedInvocation = new StubInvocation(methodName, expectedArgs, new StubActionSequence());
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwContentsClientAutoLoginTest.java 72 final String expectedRealm, final String expectedAccount, final String expectedArgs)
94 assertEquals(expectedArgs, loginRequestHelper.getArgs());
108 "random_string" /* expectedArgs */);
120 "not.very.inventive" /* expectedArgs */);
131 "args" /* expectedArgs */);
  /dalvik/vm/analysis/
CodeVerify.cpp 781 int actualArgs, expectedArgs, argStart;
787 expectedArgs = meth->insSize; /* long/double count as two */
819 if (actualArgs >= expectedArgs) {
821 expectedArgs, descriptor);
885 if (actualArgs != expectedArgs) {
886 LOG_VFY("VFY: expected %d args, found %d", expectedArgs, actualArgs);
    [all...]

Completed in 350 milliseconds