HomeSort by relevance Sort by last modified time
    Searched defs:calls (Results 1 - 25 of 49) sorted by null

1 2

  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
RecordingHostnameVerifier.java 24 public final List<String> calls = new ArrayList<String>(); field in class:RecordingHostnameVerifier
27 calls.add("verify " + hostname);
RecordingAuthenticator.java 27 public final List<String> calls = new ArrayList<String>(); field in class:RecordingAuthenticator
39 this.calls
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeNodeStream.h 51 /** Stack of indexes used for push/pop calls */
52 ANTLRIntArray *calls; variable
ANTLRBufferedTreeNodeStream.h 77 ANTLRIntArray *calls; variable
94 @property (retain, getter=getCalls, setter=setCalls:) ANTLRIntArray *calls; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeNodeStream.h 51 /** Stack of indexes used for push/pop calls */
52 ANTLRIntArray *calls; variable
ANTLRBufferedTreeNodeStream.h 77 ANTLRIntArray *calls; variable
94 @property (retain, getter=getCalls, setter=setCalls:) ANTLRIntArray *calls; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeNodeStream.h 51 /** Stack of indexes used for push/pop calls */
52 ANTLRIntArray *calls; variable
ANTLRBufferedTreeNodeStream.h 77 ANTLRIntArray *calls; variable
94 @property (retain, getter=getCalls, setter=setCalls:) ANTLRIntArray *calls; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeNodeStream.h 51 /** Stack of indexes used for push/pop calls */
52 __strong ANTLRIntArray *calls; variable
118 @property (retain) ANTLRIntArray *calls; variable
ANTLRBufferedTreeNodeStream.h 78 ANTLRIntArray *calls; variable
95 @property (retain, getter=getCalls, setter=setCalls:) ANTLRIntArray *calls; variable
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
ObserverNodeTest.java 62 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); local
65 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls);
66 assertEquals(nums[i], calls.size());
67 calls.clear();
92 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); local
95 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls);
96 assertEquals(nums[i], calls.size());
97 calls.clear();
  /external/compiler-rt/lib/asan/lit_tests/
initialization-nobug.cc 55 static int calls; local
56 return ++calls;
  /external/mockito/src/org/mockito/internal/verification/
VerificationModeFactory.java 28 public static Calls calls(int wantedNumberOfInvocations) { method in class:VerificationModeFactory
29 return new Calls( wantedNumberOfInvocations );
  /external/skia/bench/
MemoryBench.cpp 43 int calls = 0; variable
47 calls += 1;
  /external/zlib/src/contrib/minizip/
crypt.h 101 static unsigned calls = 0; /* ensure different random header each time */ local
110 if (++calls == 1)
  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 16 PointPointMinimizer() : calls(0) {}
19 double minimumOnVolumeVolume(const Box2d &r1, const Box2d &r2) { ++calls; return r1.squaredExteriorDistance(r2); }
20 double minimumOnVolumeObject(const Box2d &r, const Vector2d &v) { ++calls; return r.squaredExteriorDistance(v); }
21 double minimumOnObjectVolume(const Vector2d &v, const Box2d &r) { ++calls; return r.squaredExteriorDistance(v); }
22 double minimumOnObjectObject(const Vector2d &v1, const Vector2d &v2) { ++calls; return (v1 - v2).squaredNorm(); }
24 int calls; member in struct:PointPointMinimizer
43 std::cout << "Brute force distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << std::endl;
46 minimizer.calls = 0;
49 std::cout << "BVH distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << std::endl
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java 45 private List<String> calls = new ArrayList<String>(); field in class:ForwardingTestCase
48 calls.add(id);
52 return calls.toString();
56 return !calls.isEmpty();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeNodeStream.java 53 /** Stack of indexes used for push/pop calls */
54 protected IntArray calls; field in class:CommonTreeNodeStream
77 if ( calls != null ) calls.clear();
126 if ( calls==null ) {
127 calls = new IntArray();
129 calls.push(p); // save current index
137 int ret = calls.pop();
BufferedTreeNodeStream.java 119 /** Stack of indexes used for push/pop calls */
120 protected IntArray calls; field in class:BufferedTreeNodeStream
344 if ( calls==null ) {
345 calls = new IntArray();
347 calls.push(p); // save current index
355 int ret = calls.pop();
363 if (calls != null) {
364 calls.clear();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentTransactionTest.java 193 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); local
198 calls.put(key, hidden);
203 assertEquals(true, calls.get(key));
209 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); local
214 calls.put(key, hidden);
219 assertEquals(false, calls.get(key));
225 final Map<String, Boolean> calls = new HashMap<String, Boolean>(); local
230 calls.put(key, hidden);
235 assertFalse(calls.containsKey(key));
241 final Map<String, Boolean> calls = new HashMap<String, Boolean>() local
    [all...]
  /external/mockito/src/org/mockito/
Mockito.java 40 * <a href="#10">10. Stubbing consecutive calls (iterator-style stubbing) </a><br/>
57 * <a href="#27">27. (**New**) Delegate calls to real instance (Since 1.9.5)</a><br/>
134 * e.g. when stubbing exactly the same method calls or sometimes when argument matchers are used, etc.</li>
380 * <h3 id="10">10. <a class="meaningful_link" href="#stubbing_consecutive_calls">Stubbing consecutive calls</a> (iterator-style stubbing)</h3>
387 * collections). In rare scenarios stubbing consecutive calls could be useful,
467 * but you may prefer to use these methods in place of the alternative with <code>when()</code>, for all of your stubbing calls.
510 * //using the spy calls <b>*real*</b> methods
543 * <li>Mockito <b>*does not*</b> delegate calls to the passed real instance, instead it actually creates a copy of it.
690 * Hence {@link BDDMockito} class introduces an alias so that you stub method calls with {@link BDDMockito#given(Object)} method.
2022 public static VerificationMode calls( int wantedNumberOfInvocations ){ method in class:Mockito
    [all...]
  /external/strace/
count.c 42 int calls, errors; member in struct:call_counts
67 counts[tcp->scno].calls++;
124 int m = counts[*((int *) a)].calls;
125 int n = counts[*((int *) b)].calls;
138 else if (strcmp(sortby, "calls") == 0)
183 if (counts == NULL || counts[i].calls == 0)
185 tv_mul(&dtv, &overhead, counts[i].calls);
187 call_cum += counts[i].calls;
195 "calls", "errors", "syscall");
203 if (counts[j].calls == 0
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 41 "calls": { title: WebInspector.UIString("Calls"), width: "54px", sortable: true },
46 delete columns.calls;
520 "calls": "numberOfCalls",
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLCallGroups.java 127 * {@link Function#glPushGroupMarkerEXT} and {@link Function#glPopGroupMarkerEXT} calls.
128 * Such a hierarchy is possible only if calls from a single context are considered.
132 * @param contextToGroup context from which calls should be grouped. If no such context
133 * is present, then all calls in the given range will be returned back as a flat
147 List<GLCall> calls = trace.getGLCalls(); local
153 GLCall c = calls.get(i);
174 // adding further calls to the root of the hierarchy rather than
195 List<GLCall> calls = trace.getGLCalls(); local
197 items.add(new GLLeafNode(calls.get(i)));
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT); table
13 INSERT INTO calls VALUES(1,18004664411,1249177360040,10,2,1,'Jane Doe',1,NULL);
103 INSERT INTO sqlite_sequence VALUES('calls',1);

Completed in 369 milliseconds

1 2