Home
last modified time | relevance | path

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

/external/llvm/unittests/ExecutionEngine/JIT/
DJITEventListenerTest.cpp48 unsigned NextIndex; member
50 RecordingJITEventListener() : NextIndex(0) {} in RecordingJITEventListener()
55 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details}; in NotifyFunctionEmitted()
60 FunctionFreedEvent Event = {NextIndex++, OldPtr}; in NotifyFreeingMachineCode()
/external/clang/lib/AST/
DVTableBuilder.cpp1976 uint64_t NextIndex = Index + 1; in dumpLayout() local
1977 if (AddressPointsByIndex.count(NextIndex)) { in dumpLayout()
1978 if (AddressPointsByIndex.count(NextIndex) == 1) { in dumpLayout()
1980 AddressPointsByIndex.find(NextIndex)->second; in dumpLayout()
1987 AddressPointsByIndex.lower_bound(NextIndex)->second.getBaseOffset(); in dumpLayout()
1992 AddressPointsByIndex.lower_bound(NextIndex), E = in dumpLayout()
1993 AddressPointsByIndex.upper_bound(NextIndex); I != E; ++I) { in dumpLayout()
/external/clang/lib/Serialization/
DASTReader.cpp1316 unsigned NextIndex = 4; in ReadMacroRecord() local
1317 MI->setVisibility(IsPublic, ReadSourceLocation(F, Record, NextIndex)); in ReadMacroRecord()
1321 bool isC99VarArgs = Record[NextIndex++]; in ReadMacroRecord()
1322 bool isGNUVarArgs = Record[NextIndex++]; in ReadMacroRecord()
1324 unsigned NumArgs = Record[NextIndex++]; in ReadMacroRecord()
1326 MacroArgs.push_back(getLocalIdentifier(F, Record[NextIndex++])); in ReadMacroRecord()
1343 if (NextIndex + 1 == Record.size() && PP.getPreprocessingRecord() && in ReadMacroRecord()
1344 Record[NextIndex]) { in ReadMacroRecord()
1347 GlobalID = getGlobalPreprocessedEntityID(F, Record[NextIndex]); in ReadMacroRecord()