Searched defs:captured (Results 1 - 9 of 9) sorted by relevance

/external/easymock/src/org/easymock/internal/matchers/
H A DCaptures.java32 public Captures(Capture<T> captured) { argument
33 this.capture = captured;
/external/llvm/lib/Analysis/
H A DCaptureTracking.cpp1 //===--- CaptureTracking.cpp - Determine whether a pointer is captured ----===//
10 // This file contains routines that help determine which pointers are captured.
11 // A pointer value is captured if the function makes a copy of any part of the
12 // pointer that outlives the call. Not being captured means, more or less, that
35 bool captured(Use *U) { function in struct:__anon9183::SimpleCaptureTracker
49 /// PointerMayBeCaptured - Return true if this pointer value may be captured
59 "It doesn't make sense to ask whether a global is captured.");
86 // is captured to avoid taking too much compile time.
105 // Not captured if the callee is readonly, doesn't return a copy through
111 // Not captured i
[all...]
H A DAliasAnalysis.cpp381 bool captured(Use *U) { function in struct:__anon9172::CapturesBefore
400 // was captured before or after this particular call, while we are. However,
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp281 bool captured(Use *U) { function in struct:__anon9638::ArgumentUsesTracker
301 assert(!Uses.empty() && "Capturing call-site captured nothing?");
305 bool Captured; // True only if certainly captured (used outside our SCC).
356 // captured.
390 // If it's trivially not captured, mark it nocapture now.
395 // If it's not trivially captured and not trivially not captured,
404 // Otherwise, it's captured. Don't bother doing SCC analysis on it.
/external/easymock/src/org/easymock/
H A DEasyMock.java1456 * @param <T> Type of the captured object
1457 * @param captured Where the parameter is captured
1460 public static <T> T capture(Capture<T> captured) { argument
1461 reportMatcher(new Captures<T>(captured));
1473 * @param captured Where the parameter is captured
1476 // public static int capture(Capture<Integer> captured) {
1477 // reportMatcher(new Captures<Integer>(captured));
1484 * @param captured Wher
[all...]
/external/qemu/audio/
H A Dwinaudio.c504 /* report the number of captured samples to the audio subsystem */
509 int captured = 0; local
554 captured += wav_samples;
572 return captured;
H A Daudio.c1592 int captured, min; local
1594 captured = hw->pcm_ops->run_in (hw);
1597 hw->total_samples_captured += captured - min;
1598 hw->ts_helper += captured;
1620 int live, rpos, captured; local
1624 captured = live = audio_pcm_hw_get_live_out (hw, NULL);
1650 if (audio_bug (AUDIO_FUNC, captured > sw->total_hw_samples_mixed)) {
1651 dolog ("captured=%d sw->total_hw_samples_mixed=%d\n",
1652 captured, sw->total_hw_samples_mixed);
1653 captured
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java2352 * {@link org.easymock.Capture#getValue()} to retrieve the captured value.
2354 * @param <T> Type of the captured object
2355 * @param captured a container to hold the captured value, retrieved by
2359 public static <T> T capture(Capture<T> captured) { argument
2360 return EasyMock.capture(captured);
2368 * {@link org.easymock.Capture#getValue()} to retrieve the captured value.
2370 * @param captured a container to hold the captured value, retrieved by
2374 public static int capture(Capture<Integer> captured) { argument
2389 capture(Capture<Long> captured) argument
2404 capture(Capture<Float> captured) argument
2419 capture(Capture<Double> captured) argument
2434 capture(Capture<Byte> captured) argument
2449 capture(Capture<Character> captured) argument
[all...]
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp280 OpaqueValueExpr *captured = local
286 addSemanticExpr(captured);
287 return captured;
292 /// already be captured.
294 /// \returns the captured expression, which will be the
295 /// same as the input if the input was already captured
299 // If the expression hasn't already been captured, just capture it
312 "captured expression not found in semantics!");

Completed in 753 milliseconds