Home
last modified time | relevance | path

Searched refs:foos (Results 1 – 25 of 28) sorted by relevance

12

/external/llvm/test/CodeGen/X86/
Dpacked_struct.ll2 ; RUN: grep foos+5 %t
3 ; RUN: grep foos+1 %t
4 ; RUN: grep foos+9 %t
15 @foos = external global %struct.anon ; <%struct.anon*> [#uses=3]
20 …%tmp = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 1) ; <i32> [#u…
21 …%tmp3 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 2) ; <i32> [#…
22 …%tmp6 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 3) ; <i32> [#…
Dmcu-abi.ll134 call void @foos(%struct.S* inreg %s)
151 declare void @foos(%struct.S* inreg)
/external/llvm-project/llvm/test/CodeGen/X86/
Dpacked_struct.ll11 @foos = external dso_local global %struct.anon ; <%struct.anon*> [#uses=3]
17 ; CHECK-NEXT: movl foos+5, %eax
18 ; CHECK-NEXT: addl foos+1, %eax
19 ; CHECK-NEXT: addl foos+9, %eax
22 …%tmp = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 1) ; <i32> [#u…
23 …%tmp3 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 2) ; <i32> [#…
24 …%tmp6 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 3) ; <i32> [#…
Dmcu-abi.ll159 ; CHECK-NEXT: calll foos
163 call void @foos(%struct.S* inreg %s)
188 declare void @foos(%struct.S* inreg)
/external/clang/bindings/python/tests/cindex/
Dtest_cursor.py401 foos = get_cursors(tu, 'foo')
403 assert foos[1].get_num_template_arguments() == 3
407 foos = get_cursors(tu, 'foo')
409 assert foos[1].get_template_argument_kind(0) == TemplateArgumentKind.INTEGRAL
410 assert foos[1].get_template_argument_kind(1) == TemplateArgumentKind.TYPE
411 assert foos[1].get_template_argument_kind(2) == TemplateArgumentKind.INTEGRAL
415 foos = get_cursors(tu, 'foo')
417 assert foos[1].get_template_argument_type(1).kind == TypeKind.FLOAT
421 foos = get_cursors(tu, 'foo')
423 assert foos[1].get_template_argument_value(0) == -7
[all …]
/external/llvm/test/Integer/
Dpacked_struct_bt.ll9 @foos = external global %struct.anon
19 …%tmp = load i35, i35* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 1) …
20 …%tmp3 = load i35, i35* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 2) …
21 …%tmp6 = load i35, i35* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 3) …
/external/llvm/test/Feature/
Dpacked_struct.ll9 @foos = external global %struct.anon
19 …%tmp = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 1) …
20 …%tmp3 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 2) …
21 …%tmp6 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 3) …
/external/llvm-project/llvm/test/Integer/
Dpacked_struct_bt.ll9 @foos = external global %struct.anon
19 …%tmp = load i35, i35* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 1) …
20 …%tmp3 = load i35, i35* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 2) …
21 …%tmp6 = load i35, i35* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 3) …
/external/llvm-project/llvm/test/Feature/
Dpacked_struct.ll9 @foos = external global %struct.anon
19 …%tmp = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 1) …
20 …%tmp3 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 2) …
21 …%tmp6 = load i32, i32* getelementptr (%struct.anon, %struct.anon* @foos, i32 0, i32 3) …
/external/llvm-project/clang/bindings/python/tests/cindex/
Dtest_cursor.py516 foos = get_cursors(tu, 'foo')
518 self.assertEqual(foos[1].get_num_template_arguments(), 3)
522 foos = get_cursors(tu, 'foo')
524 self.assertEqual(foos[1].get_template_argument_kind(0), TemplateArgumentKind.INTEGRAL)
525 self.assertEqual(foos[1].get_template_argument_kind(1), TemplateArgumentKind.TYPE)
526 self.assertEqual(foos[1].get_template_argument_kind(2), TemplateArgumentKind.INTEGRAL)
530 foos = get_cursors(tu, 'foo')
532 self.assertEqual(foos[1].get_template_argument_type(1).kind, TypeKind.FLOAT)
536 foos = get_cursors(tu, 'foo')
538 self.assertEqual(foos[1].get_template_argument_value(0), -7)
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DLinkedListMultimapTest.java155 Collection<Integer> foos = map.get("foo"); in testLinkedGetAdd() local
156 foos.add(2); in testLinkedGetAdd()
157 foos.add(3); in testLinkedGetAdd()
167 List<Integer> foos = map.get("foo"); in testLinkedGetInsert() local
168 foos.add(2); in testLinkedGetInsert()
169 foos.add(0, 3); in testLinkedGetInsert()
222 List<Integer> foos = map.get("foo"); in testLinkedClear() local
224 assertEquals(asList(1, 2), foos); in testLinkedClear()
227 assertEquals(Collections.emptyList(), foos); in testLinkedClear() local
/external/guava/guava-tests/test/com/google/common/collect/
DLinkedListMultimapTest.java155 Collection<Integer> foos = map.get("foo"); in testLinkedGetAdd() local
156 foos.add(2); in testLinkedGetAdd()
157 foos.add(3); in testLinkedGetAdd()
167 List<Integer> foos = map.get("foo"); in testLinkedGetInsert() local
168 foos.add(2); in testLinkedGetInsert()
169 foos.add(0, 3); in testLinkedGetInsert()
222 List<Integer> foos = map.get("foo"); in testLinkedClear() local
224 assertEquals(asList(1, 2), foos); in testLinkedClear()
227 assertEquals(Collections.emptyList(), foos); in testLinkedClear() local
/external/llvm-project/clang/test/SemaObjC/
Dcontinuation-class-property.m5 @property (readonly, copy) id foos; property
18 @property (readwrite, copy) id foos;
22 @property (readwrite, copy) id foos;
/external/clang/test/SemaObjC/
Dcontinuation-class-property.m5 @property (readonly, copy) id foos; property
18 @property (readwrite, copy) id foos;
22 @property (readwrite, copy) id foos;
/external/pdfium/core/fxcrt/
Dunowned_ptr_unittest.cpp181 int foos[2]; in TEST() local
182 UnownedPtr<int> ptr1(&foos[0]); in TEST()
183 UnownedPtr<int> ptr2(&foos[1]); in TEST()
/external/rust/crates/structopt/examples/
Dat_least_two.rs9 foos: Vec<String>, field
/external/clang/test/SemaCXX/
Dzero-length-arrays.cpp14 Foo foos[0]; member in Bar
/external/llvm-project/clang/test/SemaCXX/
Dzero-length-arrays.cpp15 Foo foos[0]; member in Bar
/external/javassist/src/test/test/javassist/convert/
DArrayAccessReplaceTest.java292 private Foo[] foos; field in ArrayAccessReplaceTest.Simple
321 return foos[pos]; in getFoo()
365 foos[pos] = value; in setFoo()
/external/clang/test/PCH/
Dcxx-templates.h332 template<typename... Foos> int returnsInt(Foos... foos);
348 template<class... Foos> int returnsInt(Foos... foos);
/external/llvm-project/clang/test/PCH/
Dcxx-templates.h332 template<typename... Foos> int returnsInt(Foos... foos);
348 template<class... Foos> int returnsInt(Foos... foos);
/external/llvm/test/Transforms/InstCombine/
Dvector-casts.ll90 define <2 x i65> @foos(<2 x i64> %t) {
/external/rust/crates/async-trait/tests/
Dtest.rs163 async fn f(&self, foos: (u8, u8, u8, u8)); in test_can_destruct()
/external/llvm-project/llvm/test/MC/RISCV/
Drv32i-invalid.s87 csrrw a0, foos, a0 # CHECK: :[[@LINE]]:11: error: operand must be a valid system register name or a…
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/
DAutoValueTest.java2133 public Builder<FooT> addFoos(Iterable<FooT> foos) { in addFoos() argument
2134 foosBuilder().addAll(foos); in addFoos()

12