Home
last modified time | relevance | path

Searched +defs:array +defs:C (Results 26 – 50 of 847) sorted by relevance

12345678910>>...34

/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dmember-function-pointers.cpp16 struct C : B, A { }; struct
195 struct C : A, B { void foo(); virtual void vfoo(); }; struct
241 static S array[] = { (fooptr) &B::foo }; in test() local
256 struct C { struct
257 int nonEmpty;
290 struct C : B { virtual void a(); }; struct
H A Dimplicit-copy-assign-operator.cpp11 struct C { struct
16 int array[3][4]; member
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/TableGen/
H A DJSONBackend.cpp53 json::Array array; in translateInit() local
62 json::Array array; in translateInit() local
131 for (const auto &C : Records.getClasses()) { in run() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DJSONBackend.cpp54 json::Array array; in translateInit() local
65 json::Array array; in translateInit() local
134 for (const auto &C : Records.getClasses()) { in run() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Analysis/Analyses/
DThreadSafetyTIL.h535 Literal(const Expr *C) in Literal()
777 Code(const Code &C, SExpr *T, SExpr *B) // rewrite constructor in Code()
812 Field(const Field &C, SExpr *R, SExpr *B) // rewrite constructor in Field()
978 Call(const Call &C, SExpr *T) : SExpr(C), Target(T), Cexpr(C.Cexpr) {} in Call()
1110 SExpr *array() { return Array; } in array() function
1111 const SExpr *array() const { return Array; } in array() function
1147 SExpr *array() { return Array; } in array() function
1148 const SExpr *array() const { return Array; } in array() function
1267 Cast(const Cast &C, SExpr *E) : SExpr(C), Expr0(E) { Flags = C.Flags; } in Cast()
1418 Branch(SExpr *C, BasicBlock *T, BasicBlock *E) in Branch()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Analysis/Analyses/
DThreadSafetyTIL.h535 Literal(const Expr *C) in Literal()
777 Code(const Code &C, SExpr *T, SExpr *B) // rewrite constructor in Code()
812 Field(const Field &C, SExpr *R, SExpr *B) // rewrite constructor in Field()
978 Call(const Call &C, SExpr *T) : SExpr(C), Target(T), Cexpr(C.Cexpr) {} in Call()
1110 SExpr *array() { return Array; } in array() function
1111 const SExpr *array() const { return Array; } in array() function
1147 SExpr *array() { return Array; } in array() function
1148 const SExpr *array() const { return Array; } in array() function
1267 Cast(const Cast &C, SExpr *E) : SExpr(C), Expr0(E) { Flags = C.Flags; } in Cast()
1418 Branch(SExpr *C, BasicBlock *T, BasicBlock *E) in Branch()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/Analysis/Analyses/
DThreadSafetyTIL.h535 Literal(const Expr *C) in Literal()
777 Code(const Code &C, SExpr *T, SExpr *B) // rewrite constructor in Code()
812 Field(const Field &C, SExpr *R, SExpr *B) // rewrite constructor in Field()
978 Call(const Call &C, SExpr *T) : SExpr(C), Target(T), Cexpr(C.Cexpr) {} in Call()
1110 SExpr *array() { return Array; } in array() function
1111 const SExpr *array() const { return Array; } in array() function
1147 SExpr *array() { return Array; } in array() function
1148 const SExpr *array() const { return Array; } in array() function
1267 Cast(const Cast &C, SExpr *E) : SExpr(C), Expr0(E) { Flags = C.Flags; } in Cast()
1418 Branch(SExpr *C, BasicBlock *T, BasicBlock *E) in Branch()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Analysis/Analyses/
DThreadSafetyTIL.h535 Literal(const Expr *C) in Literal()
777 Code(const Code &C, SExpr *T, SExpr *B) // rewrite constructor in Code()
812 Field(const Field &C, SExpr *R, SExpr *B) // rewrite constructor in Field()
978 Call(const Call &C, SExpr *T) : SExpr(C), Target(T), Cexpr(C.Cexpr) {} in Call()
1110 SExpr *array() { return Array; } in array() function
1111 const SExpr *array() const { return Array; } in array() function
1147 SExpr *array() { return Array; } in array() function
1148 const SExpr *array() const { return Array; } in array() function
1267 Cast(const Cast &C, SExpr *E) : SExpr(C), Expr0(E) { Flags = C.Flags; } in Cast()
1418 Branch(SExpr *C, BasicBlock *T, BasicBlock *E) in Branch()
[all …]
/aosp_15_r20/external/clang/test/CXX/class.access/class.access.dcl/
H A Dp1.cpp119 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; in test3() local
191 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; in test3() local
265 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; in test3() local
299 template <class T> struct C : Base { struct
/aosp_15_r20/external/stg/test_cases/diff_tests/describe/
H A Dtypes.1.c7 int (*C)(void ); member
58 int (*N(void ))[7] { static int array[7]; return &array; } in N() local
67 volatile int (*n(void ))[7] { static volatile int array[7]; return &array; } in n() local
/aosp_15_r20/external/clang/test/SemaCXX/
H A Darray-bounds.cpp56 int array[2]; // expected-note {{declared here}} in test() local
100 short array[100]; // expected-note {{array 'array' declared here}} in test_pr9240() local
130 int array[2]; in test_pr9296() local
175 enum Values { A, B, C, D }; enumerator
H A Dconversion-function.cpp77 struct C { struct
374 struct C { struct
398 struct array struct
410 struct C { struct
428 struct C : B {}; struct
H A Dcast-conversion.cpp33 const char array[2] = { 'a', 'b' }; in test_X0() local
38 class C { class
/aosp_15_r20/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h520 Literal(const clang::Expr *C) in Literal()
761 Code(const Code &C, SExpr *T, SExpr *B) // rewrite constructor in Code()
797 Field(const Field &C, SExpr *R, SExpr *B) // rewrite constructor in Field()
968 Call(const Call &C, SExpr *T) : SExpr(C), Target(T), Cexpr(C.Cexpr) {} in Call()
1102 SExpr *array() { return Array; } in array() function
1103 const SExpr *array() const { return Array; } in array() function
1140 SExpr *array() { return Array; } in array() function
1141 const SExpr *array() const { return Array; } in array() function
1263 Cast(const Cast &C, SExpr *E) : SExpr(C), Expr0(E) { Flags = C.Flags; } in Cast()
1426 Branch(SExpr *C, BasicBlock *T, BasicBlock *E) in Branch()
[all …]
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dtemp_class_spec_neg.cpp30 template <class T, T t> struct C {}; // expected-note{{declared here}} struct
35 int array[5]; variable
/aosp_15_r20/cts/tests/simplecpu/jni/
H A DCpuNativeJni.cpp177 template <typename T> void randomInitArray(T* array, int len, unsigned int seed) in randomInitArray()
219 void doMatrixMultiplication(float* A, float* B, float* C, int n) in doMatrixMultiplication()
256 float* C = new(std::nothrow) float[n * n]; in Java_android_simplecpu_cts_CpuNative_runMatrixMultiplication() local
/aosp_15_r20/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
H A Dp1.cpp56 struct C { struct
58 struct It {
260 int array[5] = { 1, 2, 3, 4, 5 }; in example() local
/aosp_15_r20/external/javassist/src/test/annotation/
H A DTest.java8 A, B, C enumConstant
23 String[] array(); in array() method
/aosp_15_r20/external/rust/android-crates-io/crates/jni/src/wrapper/
Djnienv.rs913 fn get_method_id_base<'other_local_1, T, U, V, C, R>( in get_method_id_base() argument
918 get_method: C, in get_method_id_base()
1681 let array: jarray = jni_non_null_call!( in new_object_array() localVariable
1689 let array = unsafe { JObjectArray::from_raw(array) }; in new_object_array() localVariable
1752 let array = array.as_ref().as_raw(); in convert_byte_array() localVariable
1769 let array: jarray = jni_non_null_call!(self.internal, NewBooleanArray, length); in new_boolean_array() localVariable
1770 let array = unsafe { JBooleanArray::from_raw(array) }; in new_boolean_array() localVariable
1776 let array: jarray = jni_non_null_call!(self.internal, NewByteArray, length); in new_byte_array() localVariable
1777 let array = unsafe { JByteArray::from_raw(array) }; in new_byte_array() localVariable
1783 let array: jarray = jni_non_null_call!(self.internal, NewCharArray, length); in new_char_array() localVariable
[all …]
/aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp146 int array[17]; in test_unexpanded_in_exprs() member
419 template<int...M> struct C : A<N>... { struct
420C() : A<N>(M)... {} // expected-error{{pack expansion contains parameter packs 'N' and 'M' that ha… in C() function
/aosp_15_r20/prebuilts/go/linux-x86/test/
Dused.go11 const C = 1 const
19 var array [2]int var
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DAbstractImmutableSetTest.java122 String[] array = new String[0]; in testCopyOf_emptyArray() local
129 String[] array = new String[] {"a"}; in testCopyOf_arrayOfOneElement() local
143 @Nullable String[] array = new @Nullable String[] {null}; in testCopyOf_arrayContainingOnlyNull() local
191 C, enumConstant
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractImmutableSetTest.java122 String[] array = new String[0]; in testCopyOf_emptyArray() local
129 String[] array = new String[] {"a"}; in testCopyOf_arrayOfOneElement() local
143 @Nullable String[] array = new @Nullable String[] {null}; in testCopyOf_arrayContainingOnlyNull() local
191 C, enumConstant
/aosp_15_r20/external/skia/tests/
H A DCubicMapTest.cpp18 static float accurate_t(float A, float B, float C, float D) { in accurate_t()
26 SkPoint array[] = { {0, 0}, p1, p2, {1,1} }; in accurate_solve() local
H A DUtilsTest.cpp137 int i, array[kSEARCH_COUNT]; in test_search() local
309 std::vector<int> C = {{20, 30, 40, 50}}; in DEF_TEST() local
482 const std::vector<int> C = {{20, 30, 40, 50}}; in DEF_TEST() local

12345678910>>...34