HomeSort by relevance Sort by last modified time
    Searched refs:calls (Results 51 - 75 of 1516) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/sync/
map_test.go 27 // mapCall is a quick.Generator for calls on mapInterface.
72 func applyCalls(m mapInterface, calls []mapCall) (results []mapResult, final map[interface{}]interface{}) {
73 for _, c := range calls {
87 func applyMap(calls []mapCall) ([]mapResult, map[interface{}]interface{}) {
88 return applyCalls(new(sync.Map), calls)
91 func applyRWMutexMap(calls []mapCall) ([]mapResult, map[interface{}]interface{}) {
92 return applyCalls(new(RWMutexMap), calls)
95 func applyDeepCopyMap(calls []mapCall) ([]mapResult, map[interface{}]interface{}) {
96 return applyCalls(new(DeepCopyMap), calls)
  /prebuilts/go/linux-x86/src/sync/
map_test.go 27 // mapCall is a quick.Generator for calls on mapInterface.
72 func applyCalls(m mapInterface, calls []mapCall) (results []mapResult, final map[interface{}]interface{}) {
73 for _, c := range calls {
87 func applyMap(calls []mapCall) ([]mapResult, map[interface{}]interface{}) {
88 return applyCalls(new(sync.Map), calls)
91 func applyRWMutexMap(calls []mapCall) ([]mapResult, map[interface{}]interface{}) {
92 return applyCalls(new(RWMutexMap), calls)
95 func applyDeepCopyMap(calls []mapCall) ([]mapResult, map[interface{}]interface{}) {
96 return applyCalls(new(DeepCopyMap), calls)
  /external/strace/
count.c 43 unsigned int calls, errors; member in struct:call_counts
65 cc->calls++;
123 int m = counts[*((int *) a)].calls;
124 int n = counts[*((int *) b)].calls;
137 else if (strcmp(sortby, "calls") == 0)
171 "calls", "errors", "syscall");
182 if (counts == NULL || counts[i].calls == 0)
184 tv_mul(&dtv, &overhead, counts[i].calls);
186 call_cum += counts[i].calls;
199 if (cc->calls == 0
    [all...]
  /prebuilts/go/darwin-x86/src/internal/singleflight/
singleflight_test.go 47 var calls int32
49 if atomic.AddInt32(&calls, 1) == 1 {
54 c <- v // pump; make available for any future calls
84 if got := atomic.LoadInt32(&calls); got <= 0 || got >= n {
85 t.Errorf("number of calls = %d; want over 0 and less than %d", got, n)
  /prebuilts/go/linux-x86/src/internal/singleflight/
singleflight_test.go 47 var calls int32
49 if atomic.AddInt32(&calls, 1) == 1 {
54 c <- v // pump; make available for any future calls
84 if got := atomic.LoadInt32(&calls); got <= 0 || got >= n {
85 t.Errorf("number of calls = %d; want over 0 and less than %d", got, n)
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
SuppliersTest.java 88 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);
  /prebuilts/go/darwin-x86/test/
clearfat.go 21 var decls, calls bytes.Buffer
26 calls.WriteString(strings.Replace("poison$()\n\tclearfat$()\n\t", "$", s, -1))
30 program = strings.Replace(program, "$CALLS", calls.String(), 1)
41 $CALLS
  /prebuilts/go/linux-x86/test/
clearfat.go 21 var decls, calls bytes.Buffer
26 calls.WriteString(strings.Replace("poison$()\n\tclearfat$()\n\t", "$", s, -1))
30 program = strings.Replace(program, "$CALLS", calls.String(), 1)
41 $CALLS
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
RemoteControlReaderWriterTest.java 76 final StringBuilder calls = new StringBuilder(); local
80 calls.append("cmd(" + dump + "," + reset + ")");
84 assertEquals("cmd(" + doDump + "," + doReset + ")", calls.toString());
  /external/robolectric/v1/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...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
mips16-pic-2a.s 5 # Test local stubs that are only used by MIPS16 PIC calls in this file.
11 # Test hidden stubs that are called by MIPS16 PIC calls in this file.
14 # Test hidden stubs that are called by MIPS16 PIC calls in another file.
41 # Test global stubs that are called by MIPS16 PIC calls in this file.
44 # Test global stubs that are called by MIPS16 PIC calls in another file.
  /external/mockito/src/main/java/org/mockito/internal/verification/
VerificationModeFactory.java 28 public static Calls calls(int wantedNumberOfInvocations) { method in class:VerificationModeFactory
29 return new Calls( wantedNumberOfInvocations );
  /external/strace/tests/
strace-S.test 29 test_c calls '-n -r' '/^[[:space:]]+[0-9]/ s/^'"$c$c$c$c"'[[:space:]].*/\4/p'
  /external/strace/tests-m32/
strace-S.test 29 test_c calls '-n -r' '/^[[:space:]]+[0-9]/ s/^'"$c$c$c$c"'[[:space:]].*/\4/p'
  /external/strace/tests-mx32/
strace-S.test 29 test_c calls '-n -r' '/^[[:space:]]+[0-9]/ s/^'"$c$c$c$c"'[[:space:]].*/\4/p'
  /prebuilts/go/darwin-x86/src/runtime/debug/
stack.go 19 // Stack returns a formatted stack trace of the goroutine that calls it.
20 // It calls runtime.Stack with a large enough buffer to capture the entire trace.
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug441.go 7 // Was discarding function calls made for arguments named _
22 println("BUG: missing", want-did, "calls")
  /prebuilts/go/linux-x86/src/runtime/debug/
stack.go 19 // Stack returns a formatted stack trace of the goroutine that calls it.
20 // It calls runtime.Stack with a large enough buffer to capture the entire trace.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug441.go 7 // Was discarding function calls made for arguments named _
22 println("BUG: missing", want-did, "calls")
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ReadWriteDraftMessageActionTest.java 76 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); local
83 assertEquals("Failed to start service once for action", calls.size(), 1);
85 calls.get(0).action instanceof WriteDraftMessageAction);
87 final Action save = calls.get(0).action;
135 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); local
146 assertEquals("Unexpected number of calls to service", 1, calls.size());
148 calls.get(0).action instanceof ReadDraftDataAction);
150 final Action read = calls.get(0).action;
200 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls() local
236 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); local
293 final ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); local
    [all...]
GetOrCreateConversationActionTest.java 73 ArrayList<StubActionServiceCallLog> calls = mService.getCalls(); local
79 assertEquals("Failed to start service once for action", calls.size(), 1);
80 assertTrue("Action not GetOrCreateConversationAction", calls.get(0).action instanceof
84 calls.get(0).action;
97 calls = mService.getCalls();
98 assertEquals("Failed to start service for second action", calls.size(), 2);
99 assertTrue("Action not GetOrCreateConversationAction", calls.get(1).action instanceof
101 action = (GetOrCreateConversationAction)calls.get(1).action;
  /external/annotation-tools/scene-lib/src/annotations/el/
AExpression.java 30 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/chromium-libpac/test/js-unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /frameworks/support/lifecycle/compiler/src/main/kotlin/androidx/lifecycle/model/
AdapterClass.kt 25 val calls: List<EventMethodCall>,
  /hardware/interfaces/radio/1.2/
IRadioResponse.hal 77 * @param calls Current call list
90 oneway getCurrentCallsResponse_1_2(RadioResponseInfo info, vec<Call> calls);

Completed in 2873 milliseconds

1 23 4 5 6 7 8 91011>>