Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h1938 unsigned SourceOrderOrNumArrayIndices : 13; variable
2079 return IsWritten ? static_cast<int>(SourceOrderOrNumArrayIndices) : -1; in getSourceOrder()
2092 assert(SourceOrderOrNumArrayIndices == 0 && in setSourceOrder()
2097 SourceOrderOrNumArrayIndices = static_cast<unsigned>(pos); in setSourceOrder()
2106 return IsWritten ? 0 : SourceOrderOrNumArrayIndices; in getNumArrayIndices()
/external/clang/lib/AST/
DDeclCXX.cpp1615 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1626 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1637 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1647 IsWritten(false), SourceOrderOrNumArrayIndices(0) in CXXCtorInitializer()
1660 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices) in CXXCtorInitializer()
/external/clang/lib/Serialization/
DASTReader.cpp7989 unsigned SourceOrderOrNumArrayIndices; in ReadCXXCtorInitializers() local
7992 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7994 SourceOrderOrNumArrayIndices = Record[Idx++]; in ReadCXXCtorInitializers()
7995 Indices.reserve(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()
7996 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i) in ReadCXXCtorInitializers()
8030 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices); in ReadCXXCtorInitializers()