OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dyn_cast
(Results
376 - 400
of
502
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp
137
else if (const ObjCMethodDecl *MD =
dyn_cast
<ObjCMethodDecl>(D)) {
248
if (BlockDecl *BD =
dyn_cast
<BlockDecl>(D))
253
if (DeclContext *DC =
dyn_cast
<DeclContext>(*I))
/external/llvm/lib/Target/X86/
X86InstrFragmentsSIMD.td
274
if (StoreSDNode *ST =
dyn_cast
<StoreSDNode>(N))
281
if (StoreSDNode *ST =
dyn_cast
<StoreSDNode>(N))
290
if (StoreSDNode *ST =
dyn_cast
<StoreSDNode>(N))
/external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp
336
MDString *GCovFile =
dyn_cast
<MDString>(N->getOperand(0));
337
MDNode *CompileUnit =
dyn_cast
<MDNode>(N->getOperand(1));
473
} else if (BranchInst *BI =
dyn_cast
<BranchInst>(TI)) {
/external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp
134
PHINode *PN =
dyn_cast
<PHINode>(I); ++I) {
139
if (const PHINode *VP =
dyn_cast
<PHINode>(V))
252
if (PHINode *PN =
dyn_cast
<PHINode>(DestBB->begin())) {
/external/clang/lib/Sema/
SemaExprCXX.cpp
186
if (CXXRecordDecl *Record =
dyn_cast
<CXXRecordDecl>(Ctx))
201
=
dyn_cast
<ClassTemplateSpecializationDecl>(Record->getDecl())) {
497
if (DeclRefExpr *DRE =
dyn_cast
<DeclRefExpr>(Ex->IgnoreParens()))
498
if (VarDecl *Var =
dyn_cast
<VarDecl>(DRE->getDecl())) {
650
if (CXXMethodDecl *method =
dyn_cast
<CXXMethodDecl>(DC)) {
653
} else if (CXXRecordDecl *RD =
dyn_cast
<CXXRecordDecl>(DC)) {
[
all
...]
SemaAccess.cpp
[
all
...]
SemaDeclCXX.cpp
78
if (ParmVarDecl *Param =
dyn_cast
<ParmVarDecl>(Decl)) {
90
} else if (VarDecl *VDecl =
dyn_cast
<VarDecl>(Decl)) {
396
CXXMethodDecl* MD =
dyn_cast
<CXXMethodDecl>(New);
479
=
dyn_cast
<CXXRecordDecl>(New->getDeclContext())) {
492
} else if (CXXConstructorDecl *Ctor =
dyn_cast
<CXXConstructorDecl>(New)) {
725
CXXRecordDecl *Class =
dyn_cast
<CXXRecordDecl>(classdecl);
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp
476
if (ConstantFPSDNode *CFP =
dyn_cast
<ConstantFPSDNode>(Op))
480
if (ConstantPoolSDNode *CP =
dyn_cast
<ConstantPoolSDNode>(Op.getOperand(1)))
481
if (const ConstantFP *CFP =
dyn_cast
<ConstantFP>(CP->getConstVal()))
642
if (ConstantFPSDNode *CFP =
dyn_cast
<ConstantFPSDNode>(N->getOperand(0)))
732
if (ConstantSDNode *CN =
dyn_cast
<ConstantSDNode>(OpVal)) {
734
} else if (ConstantFPSDNode *CN =
dyn_cast
<ConstantFPSDNode>(OpVal)) {
[
all
...]
/external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp
198
const MCConstantExpr *CE =
dyn_cast
<MCConstantExpr>(getImm());
215
const MCConstantExpr *CE =
dyn_cast
<MCConstantExpr>(getImm());
232
const MCConstantExpr *CE =
dyn_cast
<MCConstantExpr>(getImm());
248
const MCConstantExpr *CE =
dyn_cast
<MCConstantExpr>(getImm());
270
if (const MCConstantExpr *CE =
dyn_cast
<MCConstantExpr>(Expr))
[
all
...]
/external/llvm/lib/Target/ARM/
ARMFastISel.cpp
640
if (const ConstantFP *CFP =
dyn_cast
<ConstantFP>(C))
642
else if (const GlobalValue *GV =
dyn_cast
<GlobalValue>(C))
704
if (const Instruction *I =
dyn_cast
<Instruction>(Obj)) {
712
} else if (const ConstantExpr *C =
dyn_cast
<ConstantExpr>(Obj)) {
717
if (PointerType *Ty =
dyn_cast
<PointerType>(Obj->getType()))
752
if (StructType *STy =
dyn_cast
<StructType>(*GTI)) {
759
if (const ConstantInt *CI =
dyn_cast
<ConstantInt>(Op)) {
809
if (const GlobalValue *GV =
dyn_cast
<GlobalValue>(Obj)) {
[
all
...]
ARMISelLowering.cpp
[
all
...]
/external/llvm/lib/VMCore/
Core.cpp
481
if (Constant *C =
dyn_cast
<Constant>(unwrap(Val)))
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
CFRefCount.cpp
[
all
...]
/external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp
580
&& (CN =
dyn_cast
<ConstantSDNode > (basePtr.getOperand(1))) != 0) {
[
all
...]
/external/clang/include/clang/AST/
DeclTemplate.h
487
return CommonOrPrev.
dyn_cast
<RedeclarableTemplateDecl*>();
[
all
...]
/external/clang/lib/AST/
RecordLayoutBuilder.cpp
[
all
...]
ExprCXX.cpp
119
while (const ImplicitCastExpr *ICE =
dyn_cast
<ImplicitCastExpr>(Arg)) {
422
dyn_cast
<MemberExpr>(getCallee()->IgnoreParens()))
431
dyn_cast
<MemberExpr>(getCallee()->IgnoreParens()))
[
all
...]
TypeLoc.cpp
250
while (ParenTypeLoc* PTL =
dyn_cast
<ParenTypeLoc>(&TL))
/external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp
607
if (InvokeInst *II =
dyn_cast
<InvokeInst> (I))
708
for (; PHINode *PN =
dyn_cast
<PHINode>(SF.CurInst); ++SF.CurInst) {
770
if (StructType *STy =
dyn_cast
<StructType>(*I)) {
[
all
...]
/external/llvm/lib/Analysis/
DebugInfo.cpp
68
if (ConstantInt *CI =
dyn_cast
<ConstantInt>(DbgNode->getOperand(Elt)))
800
if (DbgDeclareInst *DDI =
dyn_cast
<DbgDeclareInst>(BI))
891
MDNode *N =
dyn_cast
<MDNode>(DDI->getVariable());
/external/clang/include/clang/Analysis/
ProgramPoint.h
162
const T* getStmtAs() const { return llvm::
dyn_cast
<T>(getStmt()); }
/external/clang/lib/Analysis/
ReachableCode.cpp
45
if (const Expr *Ex =
dyn_cast
<Expr>(S))
/external/clang/lib/Frontend/
ASTUnit.cpp
161
ND =
dyn_cast
<NamedDecl>(ND->getUnderlyingDecl());
197
} else if (RecordDecl *Record =
dyn_cast
<RecordDecl>(ND)) {
533
memBuf = fileOrBuf.
dyn_cast
<const llvm::MemoryBuffer *>()) {
693
if (NamedDecl *ND =
dyn_cast
<NamedDecl>(D)) {
704
=
dyn_cast
<ObjCForwardProtocolDecl>(D)) {
713
if (ObjCClassDecl *Class = llvm::
dyn_cast
<ObjCClassDecl>(D)) {
[
all
...]
/external/llvm/include/llvm/
GlobalValue.h
281
// Methods for support type inquiry through isa, cast, and
dyn_cast
:
InlineAsm.h
180
// Methods for support type inquiry through isa, cast, and
dyn_cast
:
Completed in 1075 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>