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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Sema/
SemaFixItUtils.cpp 34 if (isa<PointerType>(From) && isa<PointerType>(To)) {
68 if (isa<ArraySubscriptExpr>(Expr) ||
69 isa<CallExpr>(Expr) ||
70 isa<DeclRefExpr>(Expr) ||
71 isa<CastExpr>(Expr) ||
72 isa<CXXNewExpr>(Expr) ||
73 isa<CXXConstructExpr>(Expr) ||
74 isa<CXXDeleteExpr>(Expr) ||
75 isa<CXXNoexceptExpr>(Expr) |
    [all...]
  /external/clang/test/Sema/
builtin_objc_msgSend.c 6 Class isa; member in struct:objc_object
  /external/embunit/inc/
Test.h 58 TestImplement* isa; member in struct:__Test
61 #define Test_name(s) ((Test*)s)->isa->name(s)
62 #define Test_run(s,r) ((Test*)s)->isa->run(s,r)
63 #define Test_countTestCases(s) ((Test*)s)->isa->countTestCases(s)
TestListener.h 55 TestListnerImplement* isa; member in struct:__TestListner
58 #define TestListner_startTest(s,t) ((TestListner*)s)->isa->startTest(s,t)
59 #define TestListner_endTest(s,t) ((TestListner*)s)->isa->endTest(s,t)
60 #define TestListner_addFailure(s,t,m,l,f) ((TestListner*)s)->isa->addFailure(s,t,m,l,f)
RepeatedTest.h 42 TestImplement* isa; member in struct:__RepeatedTest
TestCase.h 42 TestImplement* isa; member in struct:__TestCase
TestSuite.h 42 TestImplement* isa; member in struct:__TestSuite
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 53 if (isa<ConstantSDNode>(Node)) return true;
54 if (isa<ConstantFPSDNode>(Node)) return true;
55 if (isa<RegisterSDNode>(Node)) return true;
56 if (isa<GlobalAddressSDNode>(Node)) return true;
57 if (isa<BasicBlockSDNode>(Node)) return true;
58 if (isa<FrameIndexSDNode>(Node)) return true;
59 if (isa<ConstantPoolSDNode>(Node)) return true;
60 if (isa<JumpTableSDNode>(Node)) return true;
61 if (isa<ExternalSymbolSDNode>(Node)) return true;
62 if (isa<BlockAddressSDNode>(Node)) return true
    [all...]
  /external/clang/lib/AST/
DeclFriend.cpp 26 assert(isa<FunctionDecl>(D) ||
27 isa<CXXRecordDecl>(D) ||
28 isa<FunctionTemplateDecl>(D) ||
29 isa<ClassTemplateDecl>(D));
ParentMap.cpp 56 do { S = getParent(S); } while (S && isa<ParenExpr>(S));
64 while (S && (isa<ParenExpr>(S) || isa<CastExpr>(S)));
72 } while (S && isa<Expr>(S) && cast<Expr>(S)->IgnoreParenImpCasts() != S);
79 while (isa<ParenExpr>(S)) {
91 while (P && (isa<ParenExpr>(P) || isa<CastExpr>(P))) {
101 return isa<Expr>(P);
Mangle.cpp 49 while (isa<BlockDecl>(ExpectedDC) || isa<EnumDecl>(ExpectedDC))
54 if (isa<CXXRecordDecl>(ExpectedDC) && DC != ExpectedDC)
91 assert(!isa<CXXConstructorDecl>(DC) && !isa<CXXDestructorDecl>(DC));
134 while (isa<BlockDecl>(DC) || isa<EnumDecl>(DC))
  /libcore/luni/src/test/java/libcore/java/net/
InetSocketAddressTest.java 60 InetSocketAddress isa = new InetSocketAddress(ia, 80); local
61 assertEquals(80,isa.getPort());
62 //assertEquals(results[i], isa.getHostName());
65 InetSocketAddress isa = new InetSocketAddress((InetAddress)null, 80); local
66 assertEquals("0.0.0.0", isa.getHostName());
82 InetSocketAddress isa = new InetSocketAddress(65535); local
83 assertEquals("0.0.0.0", isa.getHostName());
84 assertEquals(65535, isa.getPort());
122 InetSocketAddress isa = new InetSocketAddress(ia, 0); local
123 assertEquals(ia, isa.getAddress())
125 InetSocketAddress isa = new InetSocketAddress((InetAddress) null, 0); local
    [all...]
  /dalvik/hit/src/com/android/hit/
ClassInstance.java 41 ClassObj isa = mHeap.mState.findClass(mClassId); local
43 resolve(state, isa, isa.mStaticFieldTypes, isa.mStaticFieldValues);
44 resolve(state, isa, isa.mFieldTypes, mFieldValues);
47 private void resolve(State state, ClassObj isa, int[] types,
87 ClassObj isa = mHeap.mState.findClass(mClassId); local
89 return isa.getSize();
107 ClassObj isa = state.findClass(mClassId) local
158 ClassObj isa = mHeap.mState.findClass(mClassId); local
    [all...]
  /external/llvm/lib/Analysis/
Loads.cpp 40 if (isa<BinaryOperator>(A) || isa<CastInst>(A) ||
41 isa<PHINode>(A) || isa<GetElementPtrInst>(A))
102 if (!isa<GlobalAlias>(GV) && !GV->mayBeOverridden()) {
137 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
138 !isa<DbgInfoIntrinsic>(BBI))
180 if (isa<DbgInfoIntrinsic>(Inst))
207 if ((isa<AllocaInst>(Ptr) || isa<GlobalVariable>(Ptr)) &
    [all...]
  /external/clang/test/SemaTemplate/
template-id-expr.cpp 6 static void isa(const FromCl &Val) { } function in struct:isa_impl_cl
10 void isa(const Y &Val) { return isa_impl_cl<Y>::template isa<X>(Val); } function
13 void f0(const Value &Val) { isa<Value>(Val); }
  /frameworks/compile/libbcc/runtime/BlocksRuntime/
Block_private.h 64 void *isa; member in struct:Block_layout
74 void *isa; member in struct:Block_byref
85 void *isa; member in struct:Block_byref_header
157 void *isa; member in struct:Block_basic
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 21 if (isa<ConstantAggregateZero>(V))
38 isa<ConstantInt>(I->getOperand(2)))
60 if (isa<ConstantAggregateZero>(SVI->getOperand(2)))
62 if (isa<UndefValue>(SVI->getOperand(2)))
68 if (isa<UndefValue>(*i))
85 if (isa<UndefValue>(V))
87 if (isa<ConstantAggregateZero>(V))
94 if (!isa<ConstantInt>(III->getOperand(2)))
125 if (isa<UndefValue>(EI.getOperand(0)))
129 if (isa<ConstantAggregateZero>(EI.getOperand(0))
    [all...]
  /external/clang/include/clang/Basic/
LLVM.h 37 using llvm::isa;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerHelpers.h 28 if (isa<T>(S))
  /external/clang/tools/libclang/
Index_Internal.h 34 void *isa; member in struct:_CXCursorAndRangeVisitorBlock
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.h 48 ClassStructPtr isa() { return _isa; } function in class:JSC::Bindings::ObjcClass
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 50 if (isa<VarRegion>(LR) || isa<CodeTextRegion>(LR) ||
51 isa<CompoundLiteralRegion>(LR)) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetSocketAddressTest.java 49 InetSocketAddress isa = InetSocketAddress.createUnresolved( local
51 assertTrue(isa.isUnresolved());
52 assertNull(isa.getAddress());
53 assertEquals(isa.getHostName(), legalHostPortPairs[i].host);
54 assertEquals(isa.getPort(), legalHostPortPairs[i].port);
  /external/llvm/include/llvm/
IntrinsicInst.h 11 // functions with the isa/dyncast family of functions. In particular, this
34 /// functions. This allows the standard isa/dyncast/cast functionality to
47 // Methods for support type inquiry through isa, cast, and dyn_cast:
55 return isa<CallInst>(V) && classof(cast<CallInst>(V));
64 // Methods for support type inquiry through isa, cast, and dyn_cast:
75 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
88 // Methods for support type inquiry through isa, cast, and dyn_cast:
94 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
110 // Methods for support type inquiry through isa, cast, and dyn_cast:
116 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V))
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 214 final InetSocketAddress isa = (InetSocketAddress) p.address(); local
216 result = new HttpHost(getHost(isa), isa.getPort());
226 * @param isa the socket address
233 protected String getHost(InetSocketAddress isa) {
238 return isa.isUnresolved() ?
239 isa.getHostName() : isa.getAddress().getHostAddress();

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 91011>>