Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp1616 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1627 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1638 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1648 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1661 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices) in CXXCtorInitializer()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h1939 unsigned SourceOrderOrNumArrayIndices : 13; variable
2080 return IsWritten ? static_cast<int>(SourceOrderOrNumArrayIndices) : -1; in getSourceOrder()
2093 assert(SourceOrderOrNumArrayIndices == 0 && in setSourceOrder()
2098 SourceOrderOrNumArrayIndices = static_cast<unsigned>(pos); in setSourceOrder()
2107 return IsWritten ? 0 : SourceOrderOrNumArrayIndices; in getNumArrayIndices()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp7882 unsigned SourceOrderOrNumArrayIndices; in ReadCXXCtorInitializers() local
7885 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7887 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7888 Indices.reserve(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()
7889 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i) in ReadCXXCtorInitializers()
7923 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()