| /external/clang/test/SemaCXX/ |
| D | attr-noreturn.cpp | 46 __attribute__((noreturn)) void test_3() { C c; } in test_3() local 62 __attribute__((noreturn)) void test_18() { const C& c = C(); } in test_18() local 95 CC c; in test_31() local 128 void foo() {} in foo() function 213 void foo() { in foo() function 235 __attribute__((noreturn)) void foo(int) {} in foo() function 236 __attribute__((noreturn)) void foo(double) {} in foo() function
|
| D | captured-statements.cpp | 20 int c; in test_nest_lambda() local 33 test_obj_capture c; in test() local 117 void foo() { } in foo() function
|
| D | i-c-e-cxx.cpp | 5 const int c = 10; variable 54 int foo() { return A::B; } in foo() function
|
| D | copy-assignment.cpp | 61 C c, nc; in test() local 106 virtual void foo() {} in foo() function in test1::B
|
| /external/dagger2/javatests/dagger/functional/producers/ |
| D | SimpleProducerModule.java | 116 @SuppressWarnings("unused") Producer<Object> c, in strWithArgs() 125 int i, Produced<Double> b, Producer<Object> c, Provider<Boolean> d) throws IOException { in strWithArgsThrowingException() 134 @SuppressWarnings("unused") Producer<Object> c, in futureStrWithArgs() 143 int i, Produced<Double> b, Producer<Object> c, Provider<Boolean> d) throws IOException { in futureStrWithArgsThrowingException() 278 static Object object(int foo, Provider<String> fooProvider) { in object()
|
| /external/clang/test/CodeGenCXX/ |
| D | conditional-gnu-ext.cpp | 42 void foo (int& lv) { in foo() function 148 const int *c = &(a ?: b); in f() local
|
| D | mangle-ms-template-callback.cpp | 36 void foo(C0 c) {} in foo() function
|
| D | stmtexpr.cpp | 24 A foo(int j) in foo() function 35 A c = ({ A a(1); A a1(2); A a2(3); a1; a2; a; A a3(4); a2; a3; }); in foo2() local
|
| D | optnone-class-members.cpp | 38 void foo() { in foo() function 141 C c; in bar() local
|
| /external/clang/test/OpenMP/ |
| D | target_map_messages.cpp | 4 void foo(int arg) { in foo() function 25 float *c; member 74 float *foo() { in foo() function 297 void foo() { in foo() function 323 const S3 c; variable
|
| D | nvptx_target_firstprivate_codegen.cpp | 20 int foo(int n, double *ptr) { in foo() function 24 double c[5][10]; in foo() local
|
| D | distribute_ast_print.cpp | 9 void foo() {} in foo() function 82 T b = argc, c, d, e, f, g; in tmain() local 113 int b = argc, c, d, e, f, g; in main() local
|
| D | task_ast_print.cpp | 9 void foo() {} in foo() function 84 T b = argc, c, d, e, f, g; in tmain() local 135 int b = argc, c, d, e, f, g; in main() local
|
| D | distribute_dist_schedule_messages.cpp | 3 void foo() { in foo() function 14 T b = argc, c, d, e, f, g; in tmain() local
|
| D | distribute_parallel_for_simd_dist_schedule_messages.cpp | 3 void foo() { in foo() function 14 T b = argc, c, d, e, f, g; in tmain() local
|
| D | distribute_simd_dist_schedule_messages.cpp | 3 void foo() { in foo() function 14 T b = argc, c, d, e, f, g; in tmain() local
|
| D | distribute_parallel_for_dist_schedule_messages.cpp | 3 void foo() { in foo() function 14 T b = argc, c, d, e, f, g; in tmain() local
|
| D | teams_private_messages.cpp | 3 void foo() { in foo() function 25 const S3 c; // expected-note {{global variable is predetermined as shared}} variable
|
| D | parallel_private_messages.cpp | 3 void foo() { in foo() function 25 const S3 c; // expected-note {{global variable is predetermined as shared}} variable
|
| /external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
| D | test_global_func9.c | 29 __noinline int foo(const struct S *s) in foo() function 95 const struct C c = {.x = skb->len, .y = skb->family }; in test_cls() local
|
| /external/rust/crates/pdl-compiler/tests/generated/rust_legacy/ |
| D | packet_decl_complex_scalars_little_endian.rs | 31 c: u8, field 40 foo: FooData, field 47 pub c: u8, field 72 let c = ((chunk >> 11) & 0x1f) as u8; in parse_inner() localVariable 211 let foo = FooData { in build() localVariable
|
| D | packet_decl_complex_scalars_big_endian.rs | 31 c: u8, field 40 foo: FooData, field 47 pub c: u8, field 72 let c = ((chunk >> 11) & 0x1f) as u8; in parse_inner() localVariable 211 let foo = FooData { in build() localVariable
|
| /external/icu/icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/ |
| D | DemoUtility.java | 52 GridBagConstraints c = new GridBagConstraints(); in fixGrid() local 96 String foo = area.getText(); in setText() local
|
| /external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ |
| D | TestTypedDeserialization.java | 52 public Cat(@JsonProperty("furColor") String c) { in Cat() 101 protected DummyBase(boolean foo) { } in DummyBase() 146 Cat c = (Cat) a; in testSimpleClassAsProperty() local 203 Cat c = (Cat) animals.get(0); in testListAsArray() local 224 Cat c = (Cat) a; in testCagedAnimal() local 287 NullAnimal c = (NullAnimal) a; in testTypeAsArrayWithCustomDeserializer() local
|
| /external/clang/test/CXX/class.access/ |
| D | p4.cpp | 31 void (A::*c)(Private&) = &A::foo; // expected-error {{'foo' is a private member}} in test() local 93 static A foo; member in test2::A 97 A A::foo; // okay member in test2::A 116 static A foo; member in test3::A 120 A A::foo; member in test3::A 122 void foo(A param) { // okay in foo() function 244 int foo(int private_member) { in foo() function in test7::B 316 void foo() { in foo() function in test12::A 318 int foo(A *a) { in foo() function in test12::A::foo::Local
|