Home
last modified time | relevance | path

Searched refs:captured (Results 1 – 25 of 70) sorted by relevance

123

/external/clang/test/SemaObjC/
Dwarn-retain-cycle.m9 [x setBlock: // expected-note {{block will be retained by the captured object}}
11 x.block = // expected-note {{block will be retained by the captured object}}
14 [x addBlock: // expected-note {{block will be retained by the captured object}}
30 … // expected-note {{block will be retained by the captured object}}
46 …le}} expected-note {{block will be retained by an object strongly retained by the captured object}}
47 …le}} expected-note {{block will be retained by an object strongly retained by the captured object}}
61 …le}} expected-note {{block will be retained by an object strongly retained by the captured object}}
67 …le}} expected-note {{block will be retained by an object strongly retained by the captured object}}
69 …le}} expected-note {{block will be retained by an object strongly retained by the captured object}}
71 …; // expected-note {{block will be retained by an object strongly retained by the captured object}}
[all …]
/external/llvm/lib/Analysis/
DCaptureTracking.cpp35 bool captured(Use *U) { in captured() function
122 if (Tracker->captured(U)) in PointerMayBeCaptured()
135 if (Tracker->captured(U)) in PointerMayBeCaptured()
163 if (Tracker->captured(U)) in PointerMayBeCaptured()
168 if (Tracker->captured(U)) in PointerMayBeCaptured()
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dblocks.mm5 (void)[var] { }; // expected-error{{__block variable 'var' cannot be captured in a lambda}}
7 …(void)[=] { var = 17; }; // expected-error{{__block variable 'var' cannot be captured in a lambda}}
10 void conversion_to_block(int captured) {
11 int (^b1)(int) = [=](int x) { return x + captured; };
13 const auto lambda = [=](int x) { return x + captured; };
/external/android-mock/src/com/google/android/testing/mocking/
DAndroidMock.java2359 public static <T> T capture(Capture<T> captured) { in capture() argument
2360 return EasyMock.capture(captured); in capture()
2374 public static int capture(Capture<Integer> captured) { in capture() argument
2375 return EasyMock.capture(captured); in capture()
2389 public static long capture(Capture<Long> captured) { in capture() argument
2390 return EasyMock.capture(captured); in capture()
2404 public static float capture(Capture<Float> captured) { in capture() argument
2405 return EasyMock.capture(captured); in capture()
2419 public static double capture(Capture<Double> captured) { in capture() argument
2420 return EasyMock.capture(captured); in capture()
[all …]
/external/llvm/test/Transforms/ObjCARC/
Dretain-block-alloca.ll30 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, %0* }…
31 store %0* %array, %0** %block.captured, align 8
37 %strongdestroy = load %0** %block.captured, align 8
67 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, %0* }…
68 store %0* %array, %0** %block.captured, align 8
74 %strongdestroy = load %0** %block.captured, align 8
Dweak-copies.ll63 %block.captured = getelementptr inbounds %1* %block, i64 0, i32 5
65 %3 = call i8* @objc_initWeak(i8** %block.captured, i8* %2) nounwind
68 call void @objc_destroyWeak(i8** %block.captured) nounwind
Dno-objc-arc-exceptions.ll38 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, i8* }…
40 store i8* %t1, i8** %block.captured, align 8
92 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, i8* }…
94 store i8* %t1, i8** %block.captured, align 8
Dretain-block-load.ll32 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, i32 }…
33 store i32 4, i32* %block.captured, align 8
Descape.ll45 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, i8* }…
47 store i8* %tmp5, i8** %block.captured, align 8
100 …%block.captured = getelementptr inbounds <{ i8*, i32, i32, i8*, %struct.__block_descriptor*, i8* }…
102 store i8* %tmp5, i8** %block.captured, align 8
/external/chromium/chrome/browser/userfeedback/proto/
Ddom.proto4 // Messages containing DOM data captured from the browser.
13 // Data captured from HTMLDocument DOM object.
26 // Data captured from HTMLElement DOM object.
45 // Data captured from DOM Navigator object.
Dweb.proto18 // Data captured from DOM Navigator object.
/external/easymock/src/org/easymock/internal/matchers/
DCaptures.java32 public Captures(Capture<T> captured) { in Captures() argument
33 this.capture = captured; in Captures()
/external/clang/test/Analysis/
Dblocks.m73 // test2 - Test that captured variables that are uninitialized are flagged
78 ^{ y = x + 1; }(); // expected-warning{{Variable 'x' is uninitialized when captured by block}}
89 …myblock f = ^() { f(); }; // expected-warning{{Variable 'f' is uninitialized when captured by bloc…
/external/llvm/include/llvm/Analysis/
DCaptureTracking.h54 virtual bool captured(Use *U) = 0;
/external/qemu/audio/
Daudio.c1592 int captured, min; in audio_run_in() local
1594 captured = hw->pcm_ops->run_in (hw); in audio_run_in()
1597 hw->total_samples_captured += captured - min; in audio_run_in()
1598 hw->ts_helper += captured; in audio_run_in()
1620 int live, rpos, captured; in audio_run_capture() local
1624 captured = live = audio_pcm_hw_get_live_out (hw, NULL); in audio_run_capture()
1650 if (audio_bug (AUDIO_FUNC, captured > sw->total_hw_samples_mixed)) { in audio_run_capture()
1652 captured, sw->total_hw_samples_mixed); in audio_run_capture()
1653 captured = sw->total_hw_samples_mixed; in audio_run_capture()
1656 sw->total_hw_samples_mixed -= captured; in audio_run_capture()
Dwinaudio.c509 int captured = 0; in winaudio_in_run() local
554 captured += wav_samples; in winaudio_in_run()
572 return captured; in winaudio_in_run()
/external/clang/
DNOTES.txt91 doesn't actually rely on the value of the captured variable.
99 warn about non-POD variables that are referenced but not captured, but
/external/quake/quake/src/WinQuake/
Dquake.spec.sh36 advanced 3-D experience ever captured on CD ROM. Features free and fluid
Dquake-data.spec.sh37 advanced 3-D experience ever captured on CD ROM. Features free and fluid
Dquake-shareware.spec.sh36 advanced 3-D experience ever captured on CD ROM. Features free and fluid
/external/linux-tools-perf/Documentation/
Dperf-diff.txt16 captured via perf record.
Dperf-sched.txt34 workload captured via perf sched record. Columns stand for
/external/chromium/chrome/browser/
Dfullscreen_mac.mm95 // Check if the main display has been captured (game in particular).
/external/blktrace/btreplay/doc/
Dabstract.tex21 record and replay IOs captured by the \texttt{blktrace} utility. Attempts
/external/llvm/test/TableGen/
DTargetInstrInfo.td76 // 2. The asm string is captured here, which makes it possible to get rid of
78 // 3. Target specific properties (e.g. Format) can still be captured as

123