OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TypeSpecType
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/Sema/
DeclSpec.cpp
334
llvm_unreachable("Invalid
TypeSpecType
!");
528
if (
TypeSpecType
== TST_unspecified && S.getLangOpts().CPlusPlus) {
618
if (
TypeSpecType
!= TST_unspecified) {
619
PrevSpec = DeclSpec::getSpecifierName((TST)
TypeSpecType
, Policy);
623
TypeSpecType
= T;
638
if (
TypeSpecType
!= TST_unspecified) {
639
PrevSpec = DeclSpec::getSpecifierName((TST)
TypeSpecType
, Policy);
643
TypeSpecType
= T;
668
if (
TypeSpecType
!= TST_unspecified) {
669
PrevSpec = DeclSpec::getSpecifierName((TST)
TypeSpecType
, Policy)
[
all
...]
SemaDecl.cpp
[
all
...]
/external/clang/include/clang/Sema/
DeclSpec.h
335
/*TST*/unsigned
TypeSpecType
: 6;
378
/// TSTNameLoc - If
TypeSpecType
is any of class, enum, struct, union,
418
TypeSpecType
(TST_unspecified),
461
TypeSpecType
= DeclSpec::TST_unspecified;
470
TST getTypeSpecType() const { return (TST)
TypeSpecType
; }
475
bool isTypeRep() const { return isTypeRep((TST)
TypeSpecType
); }
478
assert(isTypeRep((TST)
TypeSpecType
) && "DeclSpec does not store a type");
482
assert(isDeclRep((TST)
TypeSpecType
) && "DeclSpec does not store a decl");
486
assert(isExprRep((TST)
TypeSpecType
) && "DeclSpec does not store an expr");
503
assert(isDeclRep((TST)
TypeSpecType
) || TypeSpecType == TST_typename)
[
all
...]
Completed in 2385 milliseconds