Searched defs:calls (Results 1 - 25 of 70) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTreeNodeStream.h51 /** Stack of indexes used for push/pop calls */
52 ANTLRIntArray *calls; variable
H A DANTLRBufferedTreeNodeStream.h77 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/
H A DANTLRCommonTreeNodeStream.h51 /** Stack of indexes used for push/pop calls */
52 ANTLRIntArray *calls; variable
H A DANTLRBufferedTreeNodeStream.h77 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/
H A DANTLRCommonTreeNodeStream.h51 /** Stack of indexes used for push/pop calls */
52 ANTLRIntArray *calls; variable
H A DANTLRBufferedTreeNodeStream.h77 ANTLRIntArray *calls; variable
94 @property (retain, getter=getCalls, setter=setCalls:) ANTLRIntArray *calls; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTreeNodeStream.h51 /** Stack of indexes used for push/pop calls */
52 __strong ANTLRIntArray *calls; variable
118 @property (retain) ANTLRIntArray *calls; variable
H A DANTLRBufferedTreeNodeStream.h78 ANTLRIntArray *calls; variable
95 @property (retain, getter=getCalls, setter=setCalls:) ANTLRIntArray *calls; variable
/external/libchrome/base/timer/
H A Dmock_timer_unittest.cc17 int calls = 0; local
22 base::Unretained(&calls)));
27 EXPECT_EQ(1, calls);
31 int calls = 0; local
36 base::Unretained(&calls)));
42 EXPECT_EQ(3, calls);
46 int calls = 0; local
51 base::Unretained(&calls)));
/external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/testing/
H A DRecordingHostnameVerifier.java24 public final List<String> calls = new ArrayList<>(); field in class:RecordingHostnameVerifier
27 calls.add("verify " + hostname);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DRecordingAuthenticator.java27 public final List<String> calls = new ArrayList<>(); field in class:RecordingAuthenticator
39 this.calls.add("host=" + getRequestingHost()
/external/valgrind/memcheck/tests/
H A Drecursive-merge.c10 calls++; \
11 (*fnptr[(int)*calls])(calls,seq); \
19 __attribute__((noinline)) void f_a(char *calls, char*seq);
20 __attribute__((noinline)) void f_b(char *calls, char*seq);
21 __attribute__((noinline)) void f_c(char *calls, char*seq);
22 __attribute__((noinline)) void f_d(char *calls, char*seq);
24 __attribute__((noinline)) void f_a(char *calls, char*seq)
27 __attribute__((noinline)) void f_b(char *calls, char*seq)
30 __attribute__((noinline)) void f_c(char *calls, cha
40 char* calls = argv[i]; local
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dinitialization-nobug.cc36 static int calls; local
37 return ++calls;
/external/curl/src/
H A Dtool_cb_prg.h30 int calls; member in struct:ProgressData
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingTestCase.java45 private final List<String> calls = new ArrayList<String>(); field in class:ForwardingTestCase
48 calls.add(id);
52 return calls.toString();
56 return !calls.isEmpty();
/external/junit-params/src/test/java/junitparams/custom/combined/
H A DCombinedParametersProviderTest.java37 private List<Call> calls = new LinkedList<Call>(); field in class:CombinedParametersProviderTest.Verifier
40 calls.add(new Call(firstParam, anotherParam));
44 return calls;
/external/mockito/src/main/java/org/mockito/internal/verification/
H A DVerificationModeFactory.java28 public static Calls calls(int wantedNumberOfInvocations) { method in class:VerificationModeFactory
/external/python/cpython2/Lib/test/
H A Dtest_rlcompleter.py71 calls = 0 variable in class:TestRlcompleter.test_excessive_getattr.Foo
74 self.calls += 1
79 self.assertEqual(f.calls, 1)
/external/annotation-tools/scene-lib/src/annotations/el/
H A DAExpression.java30 public final VivifyingMap<RelativeLocation, ATypeElement> calls = field in class:AExpression
65 copyMapContents(expr.calls, calls);
91 && calls.equals(o.calls)
102 + refs.hashCode() + calls.hashCode() + funs.hashCode();
111 & news.prune() & refs.prune() & calls.prune() & funs.prune();
172 map.putAll(calls);
/external/eigen/unsupported/doc/examples/
H A DBVH_Example.cpp14 PointPointMinimizer() : calls(0) {}
17 double minimumOnVolumeVolume(const Box2d &r1, const Box2d &r2) { ++calls; return r1.squaredExteriorDistance(r2); }
18 double minimumOnVolumeObject(const Box2d &r, const Vector2d &v) { ++calls; return r.squaredExteriorDistance(v); }
19 double minimumOnObjectVolume(const Vector2d &v, const Box2d &r) { ++calls; return r.squaredExteriorDistance(v); }
20 double minimumOnObjectObject(const Vector2d &v1, const Vector2d &v2) { ++calls; return (v1 - v2).squaredNorm(); }
22 int calls; member in struct:PointPointMinimizer
41 std::cout << "Brute force distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << std::endl;
44 minimizer.calls = 0;
47 std::cout << "BVH distance = " << sqrt(minDistSq) << ", calls
[all...]
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DSuppliersTest.java88 transient int calls = 0; field in class:SuppliersTest.CountingSupplier
91 calls++;
92 return calls * 10;
111 assertEquals(0, countingSupplier.calls);
116 assertEquals(1, countingSupplier.calls);
121 assertEquals(1, countingSupplier.calls);
/external/python/cpython3/Lib/test/
H A Dtest_rlcompleter.py86 calls = 0 variable in class:TestRlcompleter.test_excessive_getattr.Foo
89 self.calls += 1
94 self.assertEqual(f.calls, 1)
/external/zlib/src/contrib/minizip/
H A Dcrypt.h101 static unsigned calls = 0; /* ensure different random header each time */ local
110 if (++calls == 1)
/external/boringssl/src/crypto/fipsmodule/rand/
H A Drand.c49 // kReseedInterval is the number of generate calls made to CTR-DRBG before
60 // calls is the number of generate calls made on |drbg| since it was last
62 unsigned calls; member in struct:rand_thread_state
282 state->calls = 0;
299 if (state->calls >= kReseedInterval) {
307 // This lock must be taken after any calls to |CRYPTO_sysrand| to avoid a
316 state->calls = 0;
337 state->calls++;
/external/guava/guava-tests/test/com/google/common/base/
H A DSuppliersTest.java96 transient int calls = 0; field in class:SuppliersTest.CountingSupplier
99 calls++;
100 return calls * 10;
135 assertEquals(0, countingSupplier.calls);
140 assertEquals(1, countingSupplier.calls);
145 assertEquals(1, countingSupplier.calls);
203 assertEquals(0, countingSupplier.calls);
207 assertEquals(1, countingSupplier.calls);
211 assertEquals(1, countingSupplier.calls);
217 assertEquals(2, countingSupplier.calls);
[all...]

Completed in 693 milliseconds

123