Searched refs:captured (Results 1 - 25 of 35) sorted by relevance

12

/external/clang/test/Preprocessor/
H A Dpragma-captured.c3 // Test pragma clang __debug captured, for Captured Statements
7 #pragma clang __debug captured
12 // CHECK: #pragma clang __debug captured
/external/clang/test/Parser/
H A Dcaptured-statements.c5 #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/
H A Dc-captured.c1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name c-captured.c %s -o - -emit-llvm -fprofile-instr-generate | 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-instr-use=%t.profdata | FileCheck -check-prefix=PGOUSE -check-prefix=PGOALL %s
24 #pragma clang __debug captured
36 #pragma clang __debug captured
/external/clang/test/Sema/
H A Dcaptured-statements.c6 #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 statemen
[all...]
/external/clang/test/CodeGen/
H A Dcaptured-statements.c15 #pragma clang __debug captured
40 #pragma clang __debug captured
59 #pragma clang __debug captured
70 #pragma clang __debug captured
85 #pragma clang __debug captured
H A Dcaptured-statements-nested.c17 #pragma clang __debug captured
21 #pragma clang __debug captured
24 #pragma clang __debug captured
103 #pragma clang __debug captured
124 #pragma clang __debug captured
H A Dpredefined-expr.c36 #pragma clang __debug captured
/external/clang/test/CodeGenCXX/
H A Dcaptured-statements.cpp22 #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
H A Dpredefined-expr.cpp391 #pragma clang __debug captured
/external/clang/test/SemaCXX/
H A Dcaptured-statements.cpp8 #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...]
H A Dpredefined-expr.cpp42 #pragma clang __debug captured
73 #pragma clang __debug captured
79 #pragma clang __debug captured
88 #pragma clang __debug captured
/external/clang/test/PCH/
H A Dcaptured-stmt.cpp11 #pragma clang __debug captured
24 #pragma clang __debug captured
/external/easymock/src/org/easymock/internal/matchers/
H A DCaptures.java32 public Captures(Capture<T> captured) { argument
33 this.capture = captured;
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DExamplesTest.java52 ByteArrayOutputStream captured = new ByteArrayOutputStream();
53 PrintStream capturingOut = new PrintStream(captured, true, "UTF-8");
67 + captured.toString("UTF-8"));
/external/llvm/include/llvm/Analysis/
H A DCaptureTracking.h10 // 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;
/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
43 bool captured(const Use *U) override {
129 bool captured(const Use *U) override {
151 /// PointerMayBeCaptured - Return true if this pointer value may be captured
161 "It doesn't make sense to ask whether a global is captured.");
175 /// captured by the enclosing function (which is required to exist). If a
189 "It doesn't make sense to ask whether a global is captured
[all...]
/external/freetype/src/cff/
H A Dcf2blues.c448 * Check whether `stemHint' is captured by one of the blue zones.
451 * captured. For compatibility with CoolType, search top and bottom
452 * zones in the same pass (see `BlueLock'). If a hint is captured,
455 * 1) If `BlueScale' suppresses overshoot, position the captured edge
458 * overshoot, position the captured edge a minimum of 1 device pixel
460 * 3) If overshoot is not suppressed or required, position the captured
472 /* new position of captured edge */
478 FT_Bool captured = FALSE; local
497 /* bottom edge captured by bottom zone */
513 /* simply round captured edg
[all...]
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2blues.c448 * Check whether `stemHint' is captured by one of the blue zones.
451 * captured. For compatibility with CoolType, search top and bottom
452 * zones in the same pass (see `BlueLock'). If a hint is captured,
455 * 1) If `BlueScale' suppresses overshoot, position the captured edge
458 * overshoot, position the captured edge a minimum of 1 device pixel
460 * 3) If overshoot is not suppressed or required, position the captured
472 /* new position of captured edge */
478 FT_Bool captured = FALSE; local
497 /* bottom edge captured by bottom zone */
513 /* simply round captured edg
[all...]
/external/pcre/dist/
H A Dpcrecpp_unittest.cc578 string captured("");
580 RE(regex,options).FullMatch(str, &captured);
582 RE(regex,options).PartialMatch(str, &captured);
583 CHECK_EQ(captured, expected);
708 string captured; local
714 CHECK(re.Extract("\\1", str , &captured));
715 CHECK_EQ(captured, "world");
720 re.Extract("\\1",str, &captured );
721 CHECK_EQ(captured, "world");
/external/chromium-trace/catapult/third_party/WebOb/webob/
H A Drequest.py1274 captured = []
1279 captured[:] = [status, headers, exc_info]
1282 if output or not captured:
1290 return (captured[0], captured[1], app_iter, captured[2])
1292 return (captured[0], captured[1], app_iter)
/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/guava/guava/src/com/google/common/reflect/
H A DTypeToken.java140 Type captured = super.capture();
141 if (captured instanceof Class) {
142 this.runtimeType = captured;
144 this.runtimeType = of(declaringClass).resolveType(captured).runtimeType;
/external/v8/src/js/
H A Dtypedarray.js502 var captured = result.length;
503 var output = TypedArraySpeciesCreate(this, captured);
504 for (var i = 0; i < captured; i++) {
/external/libvpx/libvpx/build/make/
H A Dgen_msvs_proj.sh485 TODO: Add any files not captured by filters.
/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);

Completed in 1160 milliseconds

12