HomeSort by: relevance | last modified time | path
    Searched defs:Previous (Results 1 - 23 of 23) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/common/
dmswitch.c 89 ACPI_PARSE_OBJECT_LIST *Previous;
136 Previous = Current = AcpiGbl_TempListHead;
155 Previous->Next = Current->Next;
165 Previous = Current;
acfileio.c 86 ACPI_NEW_TABLE_DESC *Previous = Current;
92 AcpiOsFree (Previous);
93 Previous = Current;
  /src/sys/external/bsd/acpica/dist/compiler/
cvdisasm.c 83 ACPI_COMMENT_NODE *Previous;
88 Previous = Current;
97 AcpiOsReleaseObject(AcpiGbl_RegCommentCache, Previous);
427 * If the previous file is a descendent of the current file,
429 * to the previous have been emitted.
preprocess.h 94 struct pr_define_info *Previous;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
edit_distance.h 56 // iteration, and the top-left entry is stored in Previous.
76 unsigned Previous = y - 1;
81 Previous + (FromArray[y-1] == ToArray[x-1] ? 0u : 1u),
85 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous;
88 Previous = OldRow;
  /src/sys/external/bsd/acpica/dist/disassembler/
dmresrc.c 201 BOOLEAN Previous = FALSE;
216 if (Previous)
221 Previous = TRUE;
310 /* Finish a previous StartDependentFns */
  /src/sys/external/bsd/acpica/dist/hardware/
hwpci.c 129 * NOTE: Created 08/2010. Replaces the previous OSL AcpiOsDerivePciId
333 ACPI_PCI_DEVICE *Previous;
339 Previous = Next;
340 Next = Previous->Next;
341 ACPI_FREE (Previous);
409 * If the previous device was a bridge, use the previous
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.h 57 unsigned Previous;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
StringTableBuilder.cpp 148 StringRef Previous;
151 if (Previous.endswith(S)) {
165 Previous = S;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_profiling.cc 226 s32 Previous = atomic_exchange(&ProfilerLogFlushStatus,
229 if (Previous == XRayLogFlushStatus::XRAY_LOG_FLUSHING) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclContextInternals.h 302 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendAction.cpp 44 ASTDeserializationListener *Previous;
49 ASTDeserializationListener *Previous, bool DeletePrevious)
50 : Previous(Previous), DeletePrevious(DeletePrevious) {}
53 delete Previous;
57 if (Previous)
58 Previous->ReaderInitialized(Reader);
62 if (Previous)
63 Previous->IdentifierRead(ID, II);
66 if (Previous)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
ContinuationIndenter.cpp 116 return Tok.isMemberAccess() && Tok.Previous && Tok.Previous->closesScope();
122 const FormatToken &Previous = *Current.Previous;
128 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
129 ((Previous.isNot(TT_CtorInitializerComma) ||
132 (Previous.isNot(TT_InheritanceComma) ||
143 (LessTok.Previous && LessTok.Previous->is(tok::equal))));
279 const FormatToken &Previous = *Current.Previous
    [all...]
FormatToken.h 428 /// The previous token in the unwrapped line.
429 FormatToken *Previous = nullptr;
472 return Previous->closesScopeAfterBlock();
484 /// following the ``Previous`` pointers, ignoring comments.
629 /// Returns the previous token ignoring comments.
631 FormatToken *Tok = Previous;
633 Tok = Tok->Previous;
717 if (is(tok::comment) && Previous)
718 return Previous->endsSequenceInternal(K1);
724 if (is(tok::comment) && Previous)
    [all...]
TokenAnnotator.cpp 48 if (Left->Previous && Left->Previous->is(tok::greater) &&
49 Left->Previous->MatchingParen &&
50 Left->Previous->MatchingParen->is(TT_TemplateOpener))
51 Left = Left->Previous->MatchingParen;
54 return Left->Previous && Left->Previous->is(tok::r_square) &&
55 Left->Previous->MatchingParen &&
56 Left->Previous->MatchingParen->is(TT_LambdaLSquare);
83 if (!CurrentToken || !CurrentToken->Previous)
    [all...]
UnwrappedLineParser.cpp 65 // \p Previous. The original column of \p MinColumnToken is used to determine
66 // whether \p FormatTok is indented enough to the right to continue \p Previous.
68 const FormatToken *Previous,
70 if (!Previous || !MinColumnToken)
75 isLineComment(*Previous) &&
447 const FormatToken *PrevTok = Tok->Previous;
1003 FormatToken *Previous = FormatTok;
1014 bool PreviousMustBeValue = mustBeJSIdentOrValue(Keywords, Previous);
1016 Previous->is(TT_TemplateString) && Previous->TokenText.endswith("${")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSA.cpp 499 Optional<ListIndex> Previous;
502 Optional<ListIndex> Previous)
503 : Loc(Loc), First(First), Last(Last), Previous(Previous) {}
506 Optional<ListIndex> Previous)
507 : DefPath(Loc, Init, Init, Previous) {}
717 N = curNode().Previous;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 1708 MachineBasicBlock::iterator Previous = SplitPoint;
1709 --Previous;
1712 Previous->getOpcode() == TII.getCallFrameDestroyOpcode()) {
1728 --Previous;
1729 if (Previous->isCall())
1731 } while(Previous->getOpcode() != TII.getCallFrameSetupOpcode());
1733 return Previous;
1736 while (MIIsInTerminatorSequence(*Previous)) {
1737 SplitPoint = Previous;
1738 if (Previous == Start
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Driver.cpp 355 // (assembler and preprocessor), or bypass a previous driver ('collect2').
2213 Arg *Previous = nullptr;
2217 if (Previous) {
2219 << Previous->getSpelling() << A->getSpelling();
2222 Previous = A;
4195 /// Get previous dependent action or null if that does not exist. If
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 584 // The previous declaration was not a class decl. Check if we have a
939 // Override the new type parameter's bound type with the previous type,
967 // Update the new type parameter's bound to match the previous one.
998 // A previous decl with a different name is because of
1070 // Merge attributes from previous declarations.
1141 // Look for previous declaration of alias name
1227 // Create a new protocol that is completely distinct from previous
1262 // Merge attributes from previous declarations.
1752 return; // Possibly due to previous error
1840 if (ObjCCategoryDecl *Previous
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 584 struct acpi_gpe_block_info *Previous;
602 struct acpi_gpe_xrupt_info *Previous;
1490 struct acpi_debug_mem_block *Previous; \
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 285 Decl *Previous);
289 Redeclarable<DeclT> *D, Decl *Previous,
292 static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous,
2488 // We temporarily set the first (canonical) declaration as the previous one
2489 // which is the one that matters and mark the real previous DeclID to be
3260 /// Find the context in which we should search for previous declarations when
3388 auto &Previous = Reader.AnonymousDeclarationsForMerging[CanonDC];
3389 if (Index < Previous.size() && Previous[Index])
3390 return Previous[Index]
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 377 "should not have found a non-externally-declarable previous decl");
969 /// Undo a previous pushUndelayed().
2317 : ShouldSkip(false), CheckSameAsPrevious(false), Previous(nullptr),
2321 NamedDecl *Previous;
2646 LookupResult &Previous);
2648 LookupResult &Previous, bool &Redeclaration);
2651 LookupResult &Previous,
2659 bool CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous);
2669 LookupResult &Previous,
2692 FunctionDecl *NewFD, LookupResult &Previous,
    [all...]

Completed in 190 milliseconds