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

1 2

  /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/core/tests/coretests/src/android/content/
ObserverNodeTest.java 61 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); local
64 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls);
65 assertEquals(nums[i], calls.size());
66 calls.clear();
91 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); local
94 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls);
95 assertEquals(nums[i], calls.size());
96 calls.clear();
  /external/compiler-rt/lib/asan/lit_tests/
initialization-nobug.cc 46 static int calls; local
47 return ++calls;
  /external/zlib/src/contrib/minizip/
crypt.h 101 static unsigned calls = 0; /* ensure different random header each time */ local
110 if (++calls == 1)
  /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/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);
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 11 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
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 10 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
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 150 /** <summary>Stack of indexes used for push/pop calls</summary> */
151 protected Stack<int> calls; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
427 if (calls == null) {
428 calls = new Stack<int>();
430 calls.Push(p); // save current index
440 int ret = calls.Pop();
448 if (calls != null) {
449 calls.Clear();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 159 /** <summary>Stack of indexes used for push/pop calls</summary> */
160 protected Stack<int> calls; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
507 if ( calls == null )
509 calls = new Stack<int>();
511 calls.Push( p ); // save current index
522 int ret = calls.Pop();
531 if ( calls != null )
533 calls.Clear();
  /frameworks/base/core/java/android/content/
ContentService.java 233 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); local
236 userHandle, calls);
238 final int numCalls = calls.size();
240 ObserverCall oc = calls.get(i);
780 ArrayList<ObserverCall> calls) {
799 calls.add(new ObserverCall(this, entry.observer, selfChange));
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 95 transient int calls = 0; field in class:SuppliersTest.CountingSupplier
98 calls++;
99 return calls * 10;
120 // Calls to the original memoized supplier shouldn't affect its copy.
134 assertEquals(0, countingSupplier.calls);
139 assertEquals(1, countingSupplier.calls);
144 assertEquals(1, countingSupplier.calls);
186 // Calls to the original memoized supplier shouldn't affect its copy.
202 assertEquals(0, countingSupplier.calls);
206 assertEquals(1, countingSupplier.calls);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 135 CallInfo calls[] = new CallInfo[MAX_CALLS]; field in class:SimulatedGsmCallState
162 // calls may have hung up by the time delayed events happen
182 // ensure there aren't already calls INCOMING or WAITING
183 for (int i = 0 ; i < calls.length ; i++) {
184 CallInfo call = calls[i];
205 calls[empty] = CallInfo.createIncomingCall(
209 calls[empty].state = CallInfo.State.WAITING;
220 for (int i = 0 ; i < calls.length ; i++) {
221 CallInfo call = calls[i];
246 for (int i = 0 ; i < calls.length ; i++)
    [all...]

Completed in 764 milliseconds

1 2