Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DDeclCXX.cpp1631 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1642 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1653 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1663 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1676 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices) in CXXCtorInitializer()
/external/clang/include/clang/AST/
DDeclCXX.h1932 unsigned SourceOrderOrNumArrayIndices : 13; variable
2073 return IsWritten ? static_cast<int>(SourceOrderOrNumArrayIndices) : -1; in getSourceOrder()
2086 assert(SourceOrderOrNumArrayIndices == 0 && in setSourceOrder()
2091 SourceOrderOrNumArrayIndices = static_cast<unsigned>(pos); in setSourceOrder()
2100 return IsWritten ? 0 : SourceOrderOrNumArrayIndices; in getNumArrayIndices()
/external/clang/lib/Serialization/
DASTReader.cpp7921 unsigned SourceOrderOrNumArrayIndices; in ReadCXXCtorInitializers() local
7924 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7926 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7927 Indices.reserve(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()
7928 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i) in ReadCXXCtorInitializers()
7962 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()