OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CastTy
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/Parse/
ParseExpr.cpp
640
ParsedType
CastTy
;
649
isTypeCast == IsTypeCast,
CastTy
, RParenLoc);
[
all
...]
ParseExprCXX.cpp
[
all
...]
ParseDecl.cpp
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp
24
virtual SVal dispatchCast(SVal val, QualType
castTy
);
25
virtual SVal evalCastFromNonLoc(NonLoc val, QualType
castTy
);
26
virtual SVal evalCastFromLoc(Loc val, QualType
castTy
);
62
SVal SimpleSValBuilder::dispatchCast(SVal Val, QualType
CastTy
) {
64
return Val.getAs<Loc>() ? evalCastFromLoc(Val.castAs<Loc>(),
CastTy
)
65
: evalCastFromNonLoc(Val.castAs<NonLoc>(),
CastTy
);
68
SVal SimpleSValBuilder::evalCastFromNonLoc(NonLoc val, QualType
castTy
) {
70
bool isLocType = Loc::isLocType(
castTy
);
77
unsigned castSize = Context.getTypeSize(
castTy
);
87
// HACK: If both
castTy
and T are integers, ignore the cast. This i
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
[
all
...]
/external/clang/lib/Sema/
SemaChecking.cpp
[
all
...]
Completed in 47 milliseconds