HomeSort by relevance Sort by last modified time
    Searched refs:captured (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/Preprocessor/
pragma-captured.c 3 // Test pragma clang __debug captured, for Captured Statements
7 #pragma clang __debug captured
12 // CHECK: #pragma clang __debug captured
  /external/clang/test/Parser/
captured-statements.c 5 #pragma clang __debug captured x // expected-warning {{extra tokens at end of #pragma clang __debug captured directive}}
12 #pragma clang __debug captured
  /external/clang/test/Profile/
c-captured.c 1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name c-captured.c %s -o - -emit-llvm -fprofile-instrument=clang | FileCheck -check-prefix=PGOGEN -check-prefix=PGOALL %s
3 // RUN: llvm-profdata merge %S/Inputs/c-captured.proftext -o %t.profdata
4 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name c-captured.c %s -o - -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck -check-prefix=PGOUSE -check-prefix=PGOALL %s
24 #pragma clang __debug captured
36 #pragma clang __debug captured
  /external/clang/test/Sema/
captured-statements.c 6 #pragma clang __debug captured
18 #pragma clang __debug captured
28 #pragma clang __debug captured
30 return; // expected-error {{cannot return from default captured statement}}
37 #pragma clang __debug captured
40 #pragma clang __debug captured
43 #pragma clang __debug captured
56 #pragma clang __debug captured
58 x = y; // expected-error{{__block variable 'x' cannot be captured in a captured statement}
    [all...]
  /external/clang/test/CodeGen/
captured-statements.c 15 #pragma clang __debug captured
40 #pragma clang __debug captured
59 #pragma clang __debug captured
70 #pragma clang __debug captured
85 #pragma clang __debug captured
captured-statements-nested.c 17 #pragma clang __debug captured
21 #pragma clang __debug captured
24 #pragma clang __debug captured
103 #pragma clang __debug captured
124 #pragma clang __debug captured
  /external/clang/test/CodeGenCXX/
captured-statements.cpp 22 #pragma clang __debug captured
57 #pragma clang __debug captured
77 #pragma clang __debug captured
91 #pragma clang __debug captured
111 #pragma clang __debug captured
122 #pragma clang __debug captured
130 #pragma clang __debug captured
166 #pragma clang __debug captured
186 #pragma clang __debug captured
  /external/clang/test/SemaCXX/
captured-statements.cpp 8 #pragma clang __debug captured
11 y = z; // expected-error{{cannot assign to a variable captured by copy in a non-mutable lambda}}
17 #pragma clang __debug captured
24 c = a; // expected-error{{cannot assign to a variable captured by copy in a non-mutable lambda}}
34 #pragma clang __debug captured
36 #pragma clang __debug captured
45 #pragma clang __debug captured
47 #pragma clang __debug captured
49 #pragma clang __debug captured
57 #pragma clang _debug captured
    [all...]
predefined-expr.cpp 42 #pragma clang __debug captured
73 #pragma clang __debug captured
79 #pragma clang __debug captured
88 #pragma clang __debug captured
  /external/tensorflow/tensorflow/python/util/
tf_should_use_test.py 33 def reroute_error(captured):
34 """Temporarily reroute errors written to tf_logging.error into `captured`."""
35 del captured[:]
38 captured.extend(args)
51 captured = []
52 with reroute_error(captured):
57 self.assertIn('Object was never used', '\n'.join(captured))
58 self.assertIn('blah0:0', '\n'.join(captured))
59 self.assertIn('in_this_function', '\n'.join(captured))
65 captured = [
    [all...]
  /external/clang/test/PCH/
captured-stmt.cpp 11 #pragma clang __debug captured
24 #pragma clang __debug captured
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
rangeloop.go 13 println(i) // ERROR "loop variable i captured by func literal"
14 println(v) // ERROR "loop variable v captured by func literal"
19 println(i) // ERROR "loop variable i captured by func literal"
20 println(v) // ERROR "loop variable v captured by func literal"
25 println(i) // ERROR "loop variable i captured by func literal"
30 println(v) // ERROR "loop variable v captured by func literal"
56 _ = f // ERROR "loop variable f captured by func literal"
65 _ = []int{v: 1} // ERROR "loop variable v captured by func literal"
72 print(i) // ERROR "loop variable i captured by func literal"
77 print(j) // ERROR "loop variable j captured by func literal
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
rangeloop.go 13 println(i) // ERROR "loop variable i captured by func literal"
14 println(v) // ERROR "loop variable v captured by func literal"
19 println(i) // ERROR "loop variable i captured by func literal"
20 println(v) // ERROR "loop variable v captured by func literal"
25 println(i) // ERROR "loop variable i captured by func literal"
30 println(v) // ERROR "loop variable v captured by func literal"
56 _ = f // ERROR "loop variable f captured by func literal"
65 _ = []int{v: 1} // ERROR "loop variable v captured by func literal"
72 print(i) // ERROR "loop variable i captured by func literal"
77 print(j) // ERROR "loop variable j captured by func literal
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
ActionBarOverlayLayoutTest.java 99 assertThat(mContentInsetsListener.captured, nullValue());
104 assertThat(mContentInsetsListener.captured, is(insetsWith(TOP_INSET_25, CONSUMED_CUTOUT)));
111 assertThat(mContentInsetsListener.captured, nullValue());
115 assertThat(mContentInsetsListener.captured, is(insetsWith(ZERO_INSET, CONSUMED_CUTOUT)));
123 assertThat(mContentInsetsListener.captured, nullValue());
128 assertThat(mContentInsetsListener.captured, is(insetsWith(TOP_INSET_25, NO_CUTOUT)));
135 assertThat(mContentInsetsListener.captured, nullValue());
139 assertThat(mContentInsetsListener.captured, is(insetsWith(ZERO_INSET, NO_CUTOUT)));
147 assertThat(mContentInsetsListener.captured, nullValue());
152 assertThat(mContentInsetsListener.captured, is(insetsWith(TOP_INSET_25, CUTOUT_5)))
217 WindowInsets captured; field in class:ActionBarOverlayLayoutTest.FakeOnApplyWindowListener
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
Captures.java 32 public Captures(Capture<T> captured) {
33 this.capture = captured;
  /external/llvm/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
CaptureTracking.h 10 // This file contains routines that help determine which pointers are captured.
25 /// PointerMayBeCaptured - Return true if this pointer value may be captured
37 /// captured by the enclosing function (which is required to exist). If a
54 /// to see whether anything was captured.
59 /// capturing instructions that will not be passed into captured().
69 /// captured - Information about the pointer was captured by the user of
72 virtual bool captured(const Use *U) = 0;

Completed in 996 milliseconds

1 2 3 4 5 6 7