HomeSort by relevance Sort by last modified time
    Searched refs:Prev (Results 26 - 50 of 72) sorted by null

12 3

  /external/llvm/include/llvm/ADT/
ilist.h 20 // that the nodes contain next/prev pointers. This list replacement does not
27 // of this, users of the direct next/prev links will see an extra link on the
32 // 1. The user must provide {g|s}et{Next|Prev} methods, or specialize
34 // prev links.
53 /// that provides default next/prev implementations for common operations.
62 static void setPrev(NodeTy *N, NodeTy *Prev) { N->setPrev(Prev); }
73 /// strategy. The sentinel is stored in the prev field of ilist's Head.
133 // can change what next/prev fields are used to store the links...
294 /// holds the next/prev pointers. The only state of the list itself is a singl
    [all...]
SmallBitVector.h 228 /// "Prev" bit. Returns -1 if the next set bit is not found.
229 int find_next(unsigned Prev) const {
233 Bits &= ~uintptr_t(0) << (Prev + 1);
234 if (Bits == 0 || Prev + 1 >= getSmallSize())
242 return getPointer()->find_next(Prev);
BitVector.h 165 /// "Prev" bit. Returns -1 if the next set bit is not found.
166 int find_next(unsigned Prev) const {
167 ++Prev;
168 if (Prev >= Size)
171 unsigned WordPos = Prev / BITWORD_SIZE;
172 unsigned BitPos = Prev % BITWORD_SIZE;
  /external/clang/include/clang/Lex/
MacroInfo.h 348 void setPrevious(MacroDirective *Prev) {
349 Previous = Prev;
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 123 X *Prev;
125 X *getPrev() { return Prev; } // expected-note{{member is declared here}}
  /external/clang/lib/AST/
DeclTemplate.cpp 136 for (const RedeclarableTemplateDecl *Prev = getPreviousDecl(); Prev;
137 Prev = Prev->getPreviousDecl()) {
138 if (Prev->Common) {
139 Common = Prev->Common;
143 PrevDecls.push_back(Prev);
    [all...]
Decl.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 162 MachineOperand *Prev; // Access list for register. See MRI.
578 Op.Contents.Reg.Prev = 0;
684 return Contents.Reg.Prev != 0;
SelectionDAGNodes.h 212 /// pointer to the SDNode using the value, and Next and Prev pointers,
220 /// Prev, Next - Pointers to the uses list of the SDNode referred by
222 SDUse **Prev, *Next;
228 SDUse() : Val(), User(NULL), Prev(NULL), Next(NULL) {}
283 if (Next) Next->Prev = &Next;
284 Prev = List;
289 *Prev = Next;
290 if (Next) Next->Prev = Prev;
    [all...]
  /external/llvm/lib/Object/
MachOObject.cpp 153 const LoadCommandInfo &Prev = getLoadCommandInfo(Index - 1);
154 Offset = Prev.Offset + Prev.Command.Size;
  /external/clang/lib/Lex/
UnicodeCharSets.h 49 uint32_t Prev = 0;
52 if (Prev >= I->Lower) {
54 DEBUG(llvm::dbgs().write_hex(Prev));
66 Prev = I->Upper;
PPDirectives.cpp 46 MIChain->Prev = 0;
48 MIChainHead->Prev = MIChain;
72 if (MacroInfoChain *Prev = MIChain->Prev) {
74 Prev->Next = Next;
76 Next->Prev = Prev;
81 MIChainHead->Prev = 0;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 294 CallSiteEntry &Prev = CallSites.back();
295 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
297 Prev.EndLabel = Site.EndLabel;
DwarfDebug.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 354 CallSiteEntry &Prev = CallSites.back();
355 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
357 Prev.EndLabel = Site.EndLabel;
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 547 iterator Prev = LR-1;
548 if (Prev->valno == V2 && Prev->end == LR->start) {
549 Prev->end = LR->end;
553 I = Prev+1;
554 LR = Prev;
  /external/llvm/lib/MC/
MCAssembler.cpp 454 MCFragment *Prev = F->getPrevNode();
460 assert((!Prev || isFragmentValid(Prev)) &&
466 if (Prev)
467 F->Offset = Prev->Offset + getAssembler().computeFragmentSize(*this, *Prev);
479 // Prev |##########| F |
534 // | Prev |####|####| F |
    [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 239 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
240 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
628 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
631 if (!Prev) return 0;
632 PrevDecl = cast<EnumDecl>(Prev);
    [all...]
SemaLookup.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 786 unsigned Prev = 0;
798 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
803 Prev = i + 1;
808 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
814 Prev = i + 1;
819 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
825 Prev = i;
833 Prev = EndPos + 1;
840 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
841 Prev = i
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/clang/lib/Format/
TokenAnnotator.cpp 157 AnnotatedToken &Prev = *CurrentToken->Parent;
159 if (Prev.Parent->is(tok::identifier) &&
160 Prev.isOneOf(tok::star, tok::amp, tok::ampamp) &&
162 Prev.Type = TT_BinaryOperator;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp     [all...]
  /external/clang/lib/Frontend/
TextDiagnostic.cpp 431 unsigned Prev = map.startOfPreviousColumn(NewStart);
432 if (isWhitespace(SourceLine[Prev]))
434 NewStart = Prev;
    [all...]

Completed in 504 milliseconds

12 3