OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FDecl
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/AST/
Expr.cpp
838
const FunctionDecl *
FDecl
= dyn_cast<FunctionDecl>(DRE->getDecl());
839
if (!
FDecl
)
842
if (!
FDecl
->getIdentifier())
845
return
FDecl
->getBuiltinID();
[
all
...]
/external/clang/lib/Sema/
SemaChecking.cpp
286
bool Sema::CheckFunctionCall(FunctionDecl *
FDecl
, CallExpr *TheCall) {
288
IdentifierInfo *FnInfo =
FDecl
->getIdentifier();
301
i =
FDecl
->specific_attr_begin<FormatAttr>(),
302
e =
FDecl
->specific_attr_end<FormatAttr>(); i != e ; ++i) {
316
i =
FDecl
->specific_attr_begin<NonNullAttr>(),
317
e =
FDecl
->specific_attr_end<NonNullAttr>(); i != e; ++i) {
324
switch (
FDecl
->getBuiltinID()) {
344
if (
FDecl
->getLinkage() == ExternalLinkage &&
345
(!getLangOptions().CPlusPlus ||
FDecl
->isExternC())) {
399
FunctionDecl *
FDecl
= cast<FunctionDecl>(DRE->getDecl())
[
all
...]
SemaLookup.cpp
[
all
...]
SemaCodeComplete.cpp
[
all
...]
SemaExpr.cpp
443
FunctionDecl *
FDecl
) {
456
if (
FDecl
&&
FDecl
->getBuiltinID() == Builtin::BI__builtin_va_start)
[
all
...]
SemaOverload.cpp
[
all
...]
Completed in 56 milliseconds