HomeSort by relevance Sort by last modified time
    Searched refs:AA (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/Modules/redecls/
b.h 1 @class AA;
a.h 1 @interface AA
3 @class AA;
  /external/clang/test/CodeGen/
decl-in-prototype.c 3 const int AA = 5;
6 int f1(enum {AA,BB} E) {
12 int f2(enum {AA=7,BB} E) {
14 return AA;
18 int f(void (*g)(), enum {AA,BB} h) {
20 return AA;
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p3.cpp 3 template <class T> struct AA {
  /external/clang/test/Index/
getcursor-preamble.h 2 struct AA {
4 } aa; variable in typeref:struct:AA
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p17.cpp 19 typedef A<int> AA;
21 template <> int AA::foo = 0;
22 int AA::bar = 1; // expected-error {{template specialization requires 'template<>'}}
  /external/clang/test/Sema/
decl-in-prototype.c 3 const int AA = 5;
5 int f1(enum {AA,BB} E) { // expected-warning {{will not be visible outside of this function}}
9 int f2(enum {AA=7,BB} E) { // expected-warning {{will not be visible outside of this function}}
10 return AA;
22 struct aA {
28 int f5(struct aA { struct ab { int j; } b; struct ab { char glorx; } glorx; } *); // expected-warning {{declaration of 'struct aA' will not be visible}} expected-warning {{redefinition of 'ab' will not be visible}} expected-warning {{redefinition of 'ab' will not be visible}}
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 22 template <class T> struct AA { AA(int); };
23 template <class T> class BB : public AA<T> {
25 BB() : AA<T>(1) {}
  /cts/tests/tests/graphics/src/android/graphics/cts/
Canvas_EdgeTypeTest.java 28 assertEquals(EdgeType.AA, EdgeType.valueOf("AA"));
36 assertEquals(EdgeType.AA, edgeType[1]);
41 c.quickReject(new Path(), EdgeType.AA);
43 c.quickReject(new RectF(), EdgeType.AA);
45 c.quickReject(10, 100, 100, 10, EdgeType.AA);
  /external/llvm/lib/Transforms/Scalar/
FlattenCFGPass.cpp 37 AliasAnalysis *AA;
53 static bool iterativelyFlattenCFG(Function &F, AliasAnalysis *AA) {
62 if (FlattenCFG(BBIt++, AA)) {
72 AA = &getAnalysis<AliasAnalysis>();
75 while (iterativelyFlattenCFG(F, AA)) {
DeadStoreElimination.cpp 47 AliasAnalysis *AA;
53 DSE() : FunctionPass(ID), AA(nullptr), MD(nullptr), DT(nullptr) {
61 AA = &getAnalysis<AliasAnalysis>();
64 TLI = AA->getTargetLibraryInfo();
73 AA = nullptr; MD = nullptr; DT = nullptr;
196 getLocForWrite(Instruction *Inst, AliasAnalysis &AA) {
197 const DataLayout *DL = AA.getDataLayout();
199 return AA.getLocation(SI);
203 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
236 getLocForRead(Instruction *Inst, AliasAnalysis &AA) {
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysis.h 50 AliasAnalysis *AA;
66 void setAA(AliasAnalysis *aa) { AA = aa; }
68 AliasAnalysis *getAA() const { return AA; }
  /ndk/tests/device/test-stlport_shared-exception/jni/
catch5.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
24 void fnaa(AA *obj) { throw obj; }
57 catch(AA *p) { caught = 1; if (p != d) abort();}
77 try { fna((AA *)d); }
78 catch(AA *p) { abort(); } // throw type is static type
79 catch(A *p) { caught = 1; if (p != (AA *)d) abort();}
123 // try with AA object
125 try { fnaa((AA *)d);
    [all...]
catch5p.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
24 void fnaa(AA *obj) { throw obj; }
57 catch(AA *p) { caught = 1; if (p != d) abort();}
77 try { fna((AA *)d); }
78 catch(AA *p) { abort(); } // throw type is static type
79 catch(A *p) { caught = 1; if (p != (AA *)d) abort();}
123 // try with AA object
125 try { fnaa((AA *)d);
    [all...]
catch6.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
25 void fnaa(AA *obj) { throw obj; }
59 catch(AA *p) { caught = 1; if (p != e) abort();}
88 catch(AA *p) { caught = 1; if (p != e) abort();}
108 try { fna((AA *)e); }
109 catch(AA *p) { abort(); } // throw type is static type
110 catch(A *p) { caught = 1; if (p != (AA *)e) abort();}
154 // try with AA objec
    [all...]
catch6p.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
25 void fnaa(AA *obj) { throw obj; }
59 catch(AA *p) { caught = 1; if (p != e) abort();}
88 catch(AA *p) { caught = 1; if (p != e) abort();}
108 try { fna((AA *)e); }
109 catch(AA *p) { abort(); } // throw type is static type
110 catch(A *p) { caught = 1; if (p != (AA *)e) abort();}
154 // try with AA objec
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
catch5.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
24 void fnaa(AA *obj) { throw obj; }
57 catch(AA *p) { caught = 1; if (p != d) abort();}
77 try { fna((AA *)d); }
78 catch(AA *p) { abort(); } // throw type is static type
79 catch(A *p) { caught = 1; if (p != (AA *)d) abort();}
123 // try with AA object
125 try { fnaa((AA *)d);
    [all...]
catch5p.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
24 void fnaa(AA *obj) { throw obj; }
57 catch(AA *p) { caught = 1; if (p != d) abort();}
77 try { fna((AA *)d); }
78 catch(AA *p) { abort(); } // throw type is static type
79 catch(A *p) { caught = 1; if (p != (AA *)d) abort();}
123 // try with AA object
125 try { fnaa((AA *)d);
    [all...]
catch6.cpp 11 // +--AA-A
17 struct AA : A { int m; };
18 struct D : B, C, AA { int m; };
25 void fnaa(AA *obj) { throw obj; }
59 catch(AA *p) { caught = 1; if (p != e) abort();}
88 catch(AA *p) { caught = 1; if (p != e) abort();}
108 try { fna((AA *)e); }
109 catch(AA *p) { abort(); } // throw type is static type
110 catch(A *p) { caught = 1; if (p != (AA *)e) abort();}
154 // try with AA objec
    [all...]
  /external/clang/test/CodeGenCXX/
virtual-base-cast.cpp 4 struct A { int a; virtual int aa(); };
6 struct C : virtual A, virtual B { int c; virtual int aa(); virtual int bb(); };
7 struct AA { int a; virtual int aa(); };
9 struct CC : AA, BB { virtual int aa(); virtual int bb(); virtual int cc(); };
  /external/clang/test/Preprocessor/
macro_fn_comma_swallow.c 21 // CHECK: 4: AA BB
22 #define X4(...) AA , ## __VA_ARGS__ BB
  /external/lldb/test/lang/cpp/virtual/
main.cpp 29 class AA
32 AA () : m_pad('A') {}
33 virtual ~AA () {}
35 virtual const char * aa() function in class:AA
44 class B : virtual public A, public AA
95 // expression b_as_B->aa()
99 // expression c_as_C->aa()
106 printf ("b_as_B->aa() = '%s'\n", b_as_B->aa());
110 printf ("c_as_C->aa() = '%s'\n", c_as_C->aa())
    [all...]
  /external/llvm/include/llvm/Analysis/
Loads.h 53 AliasAnalysis *AA = nullptr,
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
AccountTypeTest.java 92 final AccountTypeForDisplayLabelTest AA = new AccountTypeForDisplayLabelTest("aa");
96 assertTrue(compareDisplayLabel(AA, BBB) < 0);
98 assertTrue(compareDisplayLabel(AA, C) < 0);
99 assertTrue(compareDisplayLabel(AA, AA) == 0);
100 assertTrue(compareDisplayLabel(BBB, AA) > 0);
102 assertTrue(compareDisplayLabel(EMPTY, AA) < 0);
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 53 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
54 return AA->alias(LocA, LocB);
59 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
60 return AA->pointsToConstantMemory(Loc, OrLocal);
66 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!");
67 return AA->getArgLocation(CS, ArgIdx, Mask);
71 assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!")
    [all...]

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 9