HomeSort by relevance Sort by last modified time
    Searched full:after (Results 176 - 200 of 38973) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/test/CodeGen/MIR/X86/
unrecognized-character.mir 1 # RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
  /external/llvm/test/Other/
FileCheck-space.txt 4 Check that CHECK-NEXT without a space after the colon works.
8 Check that CHECK-NOT without a space after the colon works.
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 25 void X0<int>::f() { // expected-error{{after instantiation}}
29 void X0<int>::g(int) { // expected-error{{after instantiation}}
33 struct X0<int>::Nested { }; // expected-error{{after instantiation}}
36 int X0<int>::member = 17; // expected-error{{after instantiation}}
39 struct X0<int> { }; // expected-error{{after instantiation}}
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
  /external/clang/test/CodeGen/
lifetime-asan.c 3 // RUN: -fsanitize=address -fsanitize-address-use-after-scope %s | \
4 // RUN: FileCheck %s -check-prefix=CHECK-ASAN-USE-AFTER-SCOPE
11 // CHECK-ASAN-USE-AFTER-SCOPE: @llvm.lifetime.start(i64 10, i8* {{.*}})
14 // CHECK-ASAN-USE-AFTER-SCOPE: @llvm.lifetime.end(i64 10, i8* {{.*}})
16 // CHECK-ASAN-USE-AFTER-SCOPE: @llvm.lifetime.start(i64 20, i8* {{.*}})
19 // CHECK-ASAN-USE-AFTER-SCOPE: @llvm.lifetime.end(i64 20, i8* {{.*}})
  /external/llvm/test/Transforms/LICM/
update-scev.ll 1 ; RUN: opt -S -licm < %s | FileCheck %s --check-prefix=IR-AFTER-TRANSFORM
7 ; IR-AFTER-TRANSFORM-LABEL: @f_0(
8 ; IR-AFTER-TRANSFORM: loop.outer:
9 ; IR-AFTER-TRANSFORM-NEXT: call void @clobber()
10 ; IR-AFTER-TRANSFORM-NEXT: %cond = load i1, i1* %loc
11 ; IR-AFTER-TRANSFORM-NEXT: br label %loop.inner
  /external/valgrind/memcheck/tests/
clireq_nofill.c 21 printf("*s=%#hhx after MEMPOOL_ALLOC\n", *s);
23 printf("*s=%#hhx after MEMPOOL_FREE\n", *s);
25 printf("*s=%#hhx after second MEMPOOL_ALLOC\n", *s);
34 printf("*s=%#hhx after MALLOCLIKE_BLOCK\n", *s);
36 printf("*s=%#hhx after FREELIKE_BLOCK\n", *s);
38 printf("*s=%#hhx after second MALLOCLIKE_BLOCK\n", *s);
  /external/valgrind/none/tests/x86/
pushpopseg.c 26 printf("sp change after push = %ld\n", sp2 - sp1);
27 printf("sp change after pop = %ld\n", sp3 - sp2);
28 printf("fs after push and pop = %04x\n", fs1);
42 printf("sp change after push = %ld\n", sp2 - sp1);
43 printf("sp change after pop = %ld\n", sp3 - sp2);
44 printf("fs after push and pop = %04x\n", fs1);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
ResizableIntArrayTests.java 44 assertEquals("length after add " + i, i + 1, src.getLength());
52 assertSame("array after add " + i, array, src.getPrimitiveArray());
54 assertSame("array after add " + i, array2, src.getPrimitiveArray());
56 assertSame("array after add " + i, array3, src.getPrimitiveArray());
71 assertEquals("length after add at " + i, i + 1, src.getLength());
97 assertEquals("legth after add at " + index, index + 1, src.getLength());
98 assertEquals("value after add at " + index, valueAddAt, src.get(index));
99 assertEquals("value after add at 0", 0, src.get(0));
114 assertEquals("length after add " + i, i + 1, src.getLength());
120 assertEquals("length after reset", 0, src.getLength())
    [all...]
InputPointersTests.java 45 assertEquals("size after reset", 0, src.getPointerSize());
46 assertNotSame("xCoordinates after reset", xCoordinates, src.getXCoordinates());
47 assertNotSame("yCoordinates after reset", yCoordinates, src.getYCoordinates());
48 assertNotSame("pointerIds after reset", pointerIds, src.getPointerIds());
49 assertNotSame("times after reset", times, src.getTimes());
61 assertEquals("size after add " + i, i + 1, src.getPointerSize());
84 assertEquals("size after add at " + i, i + 1, src.getPointerSize());
110 assertEquals("size after set", dst.getPointerSize(), src.getPointerSize());
111 assertSame("xCoordinates after set", dst.getXCoordinates(), src.getXCoordinates());
112 assertSame("yCoordinates after set", dst.getYCoordinates(), src.getYCoordinates())
    [all...]
  /external/skia/src/core/
SkStrokerPriv.cpp 45 static bool is_clockwise(const SkVector& before, const SkVector& after) {
46 return before.fX * after.fY > before.fY * after.fX;
67 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) {
78 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY);
84 SkVector after; local
85 afterUnitNormal.scale(radius, &after);
89 after.negate();
92 outer->lineTo(pivot.fX + after.fX, pivot.fY + after.fY)
106 SkVector after = afterUnitNormal; local
140 SkVector after = afterUnitNormal; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeSchedule3.td 20 // ready after the execute stage.
25 [ 2 // result ready after two cycles
26 , 1 // first operand read after one cycle
27 , 1 ]>, // second operand read after one cycle
34 // ready after the execute stage.
39 [ 4 // result ready after four cycles
40 , 1 // first operand read after one cycle
41 , 1 ]>, // second operand read after one cycle
47 // after the execute stage.
52 [ 35 // result ready after 35 cycle
    [all...]
MBlazeSchedule5.td 20 // ready after the execute stage.
27 [ 2 // result ready after two cycles
28 , 1 // first operand read after one cycle
29 , 1 ]>, // second operand read after one cycle
35 // and the result is ready after the execute stage.
42 [ 2 // result ready after two cycles
43 , 1 // first operand read after one cycle
44 , 1 ]>, // second operand read after one cycle
50 // after the memory access stage.
57 [ 33 // result ready after 33 cycle
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
ListFormatterTest.java 74 "B after A",
75 "C in the last after B after the first A",
76 "D in the last after C after B after the first A",
77 "E in the last after D after C after B after the first A
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
ListFormatterTest.java 73 "B after A",
74 "C in the last after B after the first A",
75 "D in the last after C after B after the first A",
76 "E in the last after D after C after B after the first A
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
SocketPolicy.java 23 * Keep the socket open after the response. This is the default HTTP/1.1
29 * Close the socket after the response. This is the default HTTP/1.0
48 * Close connection after reading the request but before writing the response.
53 /** Close connection after reading half of the request body (if present). */
56 /** Close connection after writing half of the response body (if present). */
63 * Shutdown the socket input after sending the response. For testing bad
69 * Shutdown the socket output after sending the response. For testing bad
  /external/testng/src/main/java/org/testng/annotations/
IConfigurationAnnotation.java 11 * If true, the annotated method will be run after the test class is instantiated
17 * If true, the annotated method will be run after all the tests in the test
28 * If true, the annotated method will be run after any test method is invoked.
38 * If true, the annotated method will be run after all tests in this suite
49 * If true, the annotated method will be run after all every test.
54 * Used only for after type of configuration methods. If set to true than
72 * The list of groups that this configuration method will run after.
  /frameworks/compile/slang/tests/F_reduce_general_parse/
stderr.txt.expect 1 reduce_general_parse.rs:5:18: error: missing '(' after 'reduce' for '#pragma rs reduce'
2 reduce_general_parse.rs:6:19: error: missing name after 'reduce(' for '#pragma rs reduce'
3 reduce_general_parse.rs:7:20: error: missing name after 'reduce(' for '#pragma rs reduce'
4 reduce_general_parse.rs:8:19: error: missing name after 'reduce(' for '#pragma rs reduce'
5 reduce_general_parse.rs:9:22: error: missing ')' after 'reduce(foo' for '#pragma rs reduce'
6 reduce_general_parse.rs:10:25: error: missing ')' after 'reduce(foo' for '#pragma rs reduce'
8 reduce_general_parse.rs:12:36: error: missing name after 'initializer(' for '#pragma rs reduce'
  /art/test/552-checker-sharpening/src/
Main.java 47 /// CHECK-START-ARM: int Main.testSimple(int) sharpening (after)
51 /// CHECK-START-ARM64: int Main.testSimple(int) sharpening (after)
54 /// CHECK-START-MIPS: int Main.testSimple(int) sharpening (after)
57 /// CHECK-START-MIPS64: int Main.testSimple(int) sharpening (after)
60 /// CHECK-START-X86: int Main.testSimple(int) sharpening (after)
64 /// CHECK-START-X86_64: int Main.testSimple(int) sharpening (after)
67 /// CHECK-START-ARM: int Main.testSimple(int) dex_cache_array_fixups_arm (after)
71 /// CHECK-START-X86: int Main.testSimple(int) pc_relative_fixups_x86 (after)
83 /// CHECK-START-ARM: int Main.testDiamond(boolean, int) sharpening (after)
88 /// CHECK-START-ARM64: int Main.testDiamond(boolean, int) sharpening (after)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 57 // x's children and after(x) afterward.
58 func walkBeforeAfter(x interface{}, before, after func(interface{})) {
69 walkBeforeAfter(*n, before, after)
71 walkBeforeAfter(*n, before, after)
73 walkBeforeAfter(*n, before, after)
75 walkBeforeAfter(*n, before, after)
79 walkBeforeAfter(*n, before, after)
81 walkBeforeAfter(*n, before, after)
83 walkBeforeAfter(*n, before, after)
85 walkBeforeAfter(*n, before, after)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 57 // x's children and after(x) afterward.
58 func walkBeforeAfter(x interface{}, before, after func(interface{})) {
69 walkBeforeAfter(*n, before, after)
71 walkBeforeAfter(*n, before, after)
73 walkBeforeAfter(*n, before, after)
75 walkBeforeAfter(*n, before, after)
79 walkBeforeAfter(*n, before, after)
81 walkBeforeAfter(*n, before, after)
83 walkBeforeAfter(*n, before, after)
85 walkBeforeAfter(*n, before, after)
    [all...]
  /libcore/ojluni/src/main/java/java/util/function/
Consumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default Consumer<T> andThen(Consumer<? super T> after) {
64 Objects.requireNonNull(after);
65 return (T t) -> { accept(t); after.accept(t); };
DoubleConsumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default DoubleConsumer andThen(DoubleConsumer after) {
64 Objects.requireNonNull(after);
65 return (double t) -> { accept(t); after.accept(t); };
IntConsumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default IntConsumer andThen(IntConsumer after) {
64 Objects.requireNonNull(after);
65 return (int t) -> { accept(t); after.accept(t); };
LongConsumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default LongConsumer andThen(LongConsumer after) {
64 Objects.requireNonNull(after);
65 return (long t) -> { accept(t); after.accept(t); };
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
IntRangeManagerTest.java 62 * Called after {@link #startUpdate} to indicate a range of enabled
121 assertEquals("flags after test", ALL_FLAGS_SET, testManager.flags);
127 assertEquals("flags after test", ALL_FLAGS_SET, testManager.flags);
137 assertEquals("flags after enable", ALL_FLAGS_SET, testManager.flags);
141 assertEquals("flags after test", FLAG_START_UPDATE_CALLED | FLAG_FINISH_UPDATE_CALLED,
146 assertEquals("flags after test", FLAG_START_UPDATE_CALLED | FLAG_FINISH_UPDATE_CALLED,
155 assertEquals("flags after test", 0, testManager.flags);
164 assertEquals("flags after test", ALL_FLAGS_SET, testManager.flags);
170 assertEquals("flags after test", ALL_FLAGS_SET, testManager.flags);
176 assertEquals("flags after test", ALL_FLAGS_SET, testManager.flags)
    [all...]

Completed in 370 milliseconds

1 2 3 4 5 6 78 91011>>