Home
last modified time | relevance | path

Searched refs:SourceOrderOrNumArrayIndices (Results 1 – 3 of 3) sorted by relevance

/external/clang/include/clang/AST/
DDeclCXX.h1964 unsigned SourceOrderOrNumArrayIndices : 13; variable
2105 return IsWritten ? static_cast<int>(SourceOrderOrNumArrayIndices) : -1; in getSourceOrder()
2118 assert(SourceOrderOrNumArrayIndices == 0 && in setSourceOrder()
2123 SourceOrderOrNumArrayIndices = static_cast<unsigned>(pos); in setSourceOrder()
2132 return IsWritten ? 0 : SourceOrderOrNumArrayIndices; in getNumArrayIndices()
/external/clang/lib/AST/
DDeclCXX.cpp1706 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1717 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1728 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1738 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1751 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices) in CXXCtorInitializer()
/external/clang/lib/Serialization/
DASTReader.cpp7977 unsigned SourceOrderOrNumArrayIndices; in ReadCXXCtorInitializers() local
7980 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7982 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7983 Indices.reserve(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()
7984 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i) in ReadCXXCtorInitializers()
8018 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()