/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/ |
memoized_unittest.py | 36 self.callCount = 0 41 self.callCount += 1 50 test.callCount = 0 52 self.assertEqual(test.callCount, 1) 54 self.assertEqual(test.callCount, 1) 56 # Validate that callCount is working as expected. 58 self.assertEqual(test.callCount, 2) 65 self.assertEqual(test.callCount, 1)
|
/external/chromium_org/v8/test/webkit/ |
array-reduce.js | 64 var callCount = 0; 65 shouldBe("sparseArray.reduce(function(a,b){ callCount++; }); callCount", "0"); 66 callCount = 0; 67 shouldBe("toObject(sparseArray).reduce(function(a,b){ callCount++; }); callCount", "0"); 68 var callCount = 0; 69 shouldBe("sparseArray.reduce(function(a,b){ callCount++; }, 0); callCount", "1"); 70 callCount = 0 [all...] |
array-reduceRight.js | 64 var callCount = 0; 65 shouldBe("sparseArray.reduceRight(function(a,b){ callCount++; }); callCount", "0"); 66 callCount = 0; 67 shouldBe("toObject(sparseArray).reduceRight(function(a,b){ callCount++; }); callCount", "0"); 68 var callCount = 0; 69 shouldBe("sparseArray.reduceRight(function(a,b){ callCount++; }, 0); callCount", "1"); 70 callCount = 0 [all...] |
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
ClientAddMessageToConsoleTest.java | 66 int callCount = addMessageToConsoleHelper.getCallCount(); 70 addMessageToConsoleHelper.waitForCallback(callCount); 74 callCount = addMessageToConsoleHelper.getCallCount(); 78 addMessageToConsoleHelper.waitForCallback(callCount); 82 callCount = addMessageToConsoleHelper.getCallCount(); 86 addMessageToConsoleHelper.waitForCallback(callCount); 100 int callCount = addMessageToConsoleHelper.getCallCount(); 105 addMessageToConsoleHelper.waitForCallback(callCount); 108 callCount = addMessageToConsoleHelper.getCallCount(); 112 addMessageToConsoleHelper.waitForCallback(callCount); [all...] |
AwContentsClientVisitedHistoryTest.java | 108 int callCount = doUpdateVisitedHistoryHelper.getCallCount(); 110 doUpdateVisitedHistoryHelper.waitForCallback(callCount); 115 callCount = doUpdateVisitedHistoryHelper.getCallCount(); 117 doUpdateVisitedHistoryHelper.waitForCallback(callCount); 133 final int callCount = visitedHistoryHelper.getCallCount(); 148 visitedHistoryHelper.waitForCallback(callCount); 166 final int callCount = visitedHistoryHelper.getCallCount(); 170 visitedHistoryHelper.waitForCallback(callCount);
|
MediaAccessPermissionRequestTest.java | 89 int callCount = helper.getCallCount(); 91 helper.waitForCallback(callCount); 111 int callCount = helper.getCallCount(); 113 helper.waitForCallback(callCount); 153 int callCount = helper.getCallCount(); 155 helper.waitForCallback(callCount); 156 callCount = helper.getCallCount(); 159 helper.waitForCallback(callCount);
|
AwContentsClientShouldInterceptRequestTest.java | 174 int callCount = mShouldInterceptRequestHelper.getCallCount(); 176 mShouldInterceptRequestHelper.waitForCallback(callCount); 193 int callCount = mShouldInterceptRequestHelper.getCallCount(); 195 mShouldInterceptRequestHelper.waitForCallback(callCount, 2); 211 int callCount = mShouldInterceptRequestHelper.getCallCount(); 213 mShouldInterceptRequestHelper.waitForCallback(callCount); 217 callCount = mShouldInterceptRequestHelper.getCallCount(); 220 mShouldInterceptRequestHelper.waitForCallback(callCount); 233 int callCount = mShouldInterceptRequestHelper.getCallCount(); 235 mShouldInterceptRequestHelper.waitForCallback(callCount); [all...] |
AwContentsClientOnScaleChangedTest.java | 40 int callCount = mContentsClient.getOnScaleChangedHelper().getCallCount(); 45 mContentsClient.getOnScaleChangedHelper().waitForCallback(callCount);
|
AwContentsClientAutoLoginTest.java | 41 final int callCount = loginRequestHelper.getCallCount(); 43 loginRequestHelper.waitForCallback(callCount);
|
AwContentsClientFaviconTest.java | 111 int callCount = mContentsClient.mFaviconHelper.getCallCount(); 120 mContentsClient.mFaviconHelper.waitForCallback(callCount); 131 mContentsClient.mFaviconHelper.waitForCallback(callCount); 161 int callCount = mContentsClient.mFaviconHelper.getCallCount(); 168 mContentsClient.mFaviconHelper.waitForCallback(callCount, 2);
|
AwContentsClientShouldOverrideUrlLoadingTest.java | 135 final int callCount = onPageFinishedHelper.getCallCount(); 138 onPageFinishedHelper.waitForCallback(callCount); 331 int callCount = shouldOverrideUrlLoadingHelper.getCallCount(); 335 shouldOverrideUrlLoadingHelper.waitForCallback(callCount); 356 int callCount = shouldOverrideUrlLoadingHelper.getCallCount(); 360 shouldOverrideUrlLoadingHelper.waitForCallback(callCount); 383 int callCount = shouldOverrideUrlLoadingHelper.getCallCount(); 387 shouldOverrideUrlLoadingHelper.waitForCallback(callCount); 408 int callCount = shouldOverrideUrlLoadingHelper.getCallCount(); 412 shouldOverrideUrlLoadingHelper.waitForCallback(callCount); [all...] |
CookieManagerTest.java | 177 int callCount = callback.getOnReceiveValueHelper().getCallCount(); 180 callback.getOnReceiveValueHelper().waitForCallback(callCount); 184 callCount = callback.getOnReceiveValueHelper().getCallCount(); 187 callback.getOnReceiveValueHelper().waitForCallback(callCount); 215 int callCount = callback.getOnReceiveValueHelper().getCallCount(); 221 callback.getOnReceiveValueHelper().waitForCallback(callCount); 225 callCount = callback.getOnReceiveValueHelper().getCallCount(); 229 callback.getOnReceiveValueHelper().waitForCallback(callCount); 257 int callCount = callback.getOnReceiveValueHelper().getCallCount(); 264 callback.getOnReceiveValueHelper().waitForCallback(callCount); [all...] |
AwContentsClientOnFormResubmissionTest.java | 115 int callCount = onPageFinishedHelper.getCallCount(); 126 onPageFinishedHelper.waitForCallback(callCount, 1, TIMEOUT, TimeUnit.SECONDS);
|
ExternalVideoSurfaceContainerTest.java | 40 int callCount, float widthCss, float heightCss) throws Exception { 44 helper.waitForCallback(callCount, i);
|
AwQuotaManagerBridgeTest.java | 99 int callCount = callbackHelper.getCallCount(); 113 callbackHelper.waitForCallback(callCount); 123 int callCount = callbackHelper.getCallCount(); 137 callbackHelper.waitForCallback(callCount);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
parse-malloc-history | 74 my ($callCount, $byteCount); 78 ($callCount, $byteCount) = ($line =~ /(\d+) calls for (\d+) bytes/); 84 if (!$callCount || !$byteCount) { 85 $callCount = 1; 100 if (!$callCount || !$byteCount) { 101 $callCount = 1; 119 next if (!$callCount || !$byteCount); 148 $callstacks{$callstack} = {"callCount" => 0, "byteCount" => 0}; 151 $callstacks{$callstack}{"callCount"} += $callCount; [all...] |
/external/easymock/src/org/easymock/internal/ |
Results.java | 27 private int callCount;
50 callCount += 1;
54 if (currentPosition > callCount) {
55 callCount += 1;
87 return callCount;
|
/external/deqp/modules/gles31/functional/ |
es31fAtomicCounterTests.cpp | 92 , callCount (0) 102 int callCount; 122 deUint32 getInitialValue (void) const { return m_spec.callCount * m_spec.threadCount + 1; } 242 src << " uint preGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; 245 src << " uint increment[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; 248 src << " uint decrement[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; 251 src << " uint postGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; 254 src << " uint get[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; 415 if (spec.callCount > 1) 416 src << "\tfor (uint i = 0u; i < " << spec.callCount << "u; i++)\n" [all...] |
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/ |
AwQuotaManagerBridgeTestUtil.java | 49 int callCount = callbackHelper.getCallCount(); 63 callbackHelper.waitForCallback(callCount);
|
CookieUtils.java | 73 int callCount = callback.getOnReceiveValueHelper().getCallCount(); 81 callback.getOnReceiveValueHelper().waitForCallback(callCount);
|
/external/deqp/modules/gles3/performance/ |
es3pStateChangeCallTests.cpp | 58 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 61 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 63 const int baseNdx = iterNdx*callCount + callNdx;\ 81 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 85 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 87 const int baseNdx = iterNdx*callCount + callNdx;\ 106 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 111 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 113 const int baseNdx = iterNdx*callCount + callNdx;\ 133 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ [all...] |
/packages/apps/Dialer/src/com/android/dialer/ |
PhoneCallDetailsHelper.java | 93 final Integer callCount; 95 callCount = count; 97 callCount = null; 103 setCallCountAndDate(views, callCount, callLocationAndDate); 237 private void setCallCountAndDate(PhoneCallDetailsViews views, Integer callCount, 241 if (callCount != null) { 243 R.string.call_log_item_count_and_date, callCount.intValue(), dateText);
|
/external/deqp/modules/gles2/performance/ |
es2pStateChangeCallTests.cpp | 58 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 61 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 63 const int baseNdx = iterNdx*callCount + callNdx;\ 81 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 85 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 87 const int baseNdx = iterNdx*callCount + callNdx;\ 106 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 111 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 113 const int baseNdx = iterNdx*callCount + callNdx;\ 133 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ [all...] |
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/contextmenu/ |
ContextMenuUtils.java | 46 int callCount = helper.getCallCount(); 49 helper.waitForCallback(callCount);
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/ |
ModalDialogTest.java | 201 int callCount = onPageLoaded.getCallCount(); 203 onPageLoaded.waitForCallback(callCount); 287 int callCount = onTabClosed.getCallCount(); 294 onTabClosed.waitForCallback(callCount);
|