HomeSort by: relevance | last modified time | path
    Searched defs:Source (Results 1 - 25 of 74) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclFriend.cpp 73 ExternalASTSource *Source = getParentASTContext().getExternalSource();
74 Decl *First = data().FirstFriend.get(Source);
ExternalASTMerger.cpp 25 template <typename T> struct Source {
27 Source(T t) : t(t) {}
31 template <typename U> operator Source<U>() { return Source<U>(t); }
34 typedef std::pair<Source<NamedDecl *>, ASTImporter *> Candidate;
44 Source<const DeclContext *>
45 LookupSameContext(Source<TranslationUnitDecl *> SourceTU, const DeclContext *DC,
51 Source<const DeclContext *> SourceParentDC =
64 Source<DeclarationName> SourceName = *SourceNameOrErr;
96 /// arbitrary names in the source context
    [all...]
DeclCXX.cpp 65 ExternalASTSource *Source = C.getExternalSource();
67 assert(Source && "getFromExternalSource with no external source");
70 I.setDecl(cast<NamedDecl>(Source->GetExternalDecl(
1592 ExternalASTSource *Source = getParentASTContext().getExternalSource();
1593 return getLambdaData().ContextDecl.get(Source);
TypeLoc.cpp 1 //===- TypeLoc.cpp - Type Source Info Wrapper -----------------------------===//
72 /// Returns the alignment of the type source info data block.
92 /// Returns the size of the type source info data block.
152 TypeLoc Source;
155 TypeLocCopier(TypeLoc source) : Source(source) {}
160 dest.copyLocal(Source.castAs<CLASS##TypeLoc>()); \
211 // FIXME: Currently QualifiedTypeLoc does not have a source range
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
InstructionInfoView.cpp 25 ArrayRef<llvm::MCInst> Source = getSource();
26 if (!Source.size())
29 IIVDVec IIVD(Source.size());
43 for (const auto &I : enumerate(zip(IIVD, Source))) {
136 ArrayRef<llvm::MCInst> Source = getSource();
137 if (!Source.size())
140 IIVDVec IIVD(Source.size());
InstructionView.h 30 llvm::ArrayRef<llvm::MCInst> Source;
42 : STI(STI), MCIP(Printer), Source(S), MCPU(MCPU),
57 llvm::ArrayRef<llvm::MCInst> getSource() const { return Source; }
ResourcePressureView.cpp 55 ArrayRef<llvm::MCInst> Source = getSource();
56 const unsigned SourceIdx = Event.IR.getSourceIndex() % Source.size();
64 ResourceUsage[R2VIndex + NumResourceUnits * Source.size()] += Use.second;
136 ArrayRef<llvm::MCInst> Source = getSource();
137 const unsigned Executions = LastInstructionIdx / Source.size() + 1;
139 double Usage = ResourceUsage[I + Source.size() * E];
157 ArrayRef<llvm::MCInst> Source = getSource();
158 const unsigned Executions = LastInstructionIdx / Source.size() + 1;
159 for (const MCInst &MCI : Source) {
181 ArrayRef<llvm::MCInst> Source = getSource()
    [all...]
SummaryView.h 42 llvm::ArrayRef<llvm::MCInst> Source;
  /src/sys/external/bsd/acpica/dist/namespace/
nsrepair.c 11 * Redistribution and use in source and binary forms, with or without
14 * 1. Redistributions of source code must retain the above copyright
501 ACPI_OPERAND_OBJECT **Source;
538 Source = ObjDesc->Package.Elements;
539 Dest = Source;
545 if (!*Source)
551 *Dest = *Source;
555 Source++;
nsrepair2.c 12 * Redistribution and use in source and binary forms, with or without
15 * 1. Redistributions of source code must retain the above copyright
586 char *Source;
626 Source = ReturnObject->String.Pointer;
627 if (*Source == '*')
629 Source++;
644 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++)
646 *Dest = (char) toupper ((int) *Source);
1044 ACPI_OPERAND_OBJECT **Source;
    [all...]
  /src/sys/external/bsd/acpica/dist/resources/
rsmisc.c 11 * Redistribution and use in source and binary forms, with or without
14 * 1. Redistributions of source code must retain the above copyright
83 void *Source;
123 * Source is the external AML byte stream buffer,
126 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
153 ((ACPI_GET8 (Source) >> Info->Value) & 0x01));
161 ((ACPI_GET8 (Source) >> Info->Value) & 0x03));
169 ((ACPI_GET8 (Source) >> Info->Value) & 0x07));
177 ((ACPI_GET8 (Source) >> Info->Value) & 0x3F));
182 ItemCount = ACPI_GET8 (Source);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Source.h 1 //===--- Source.h - Source location provider for the VM --------*- C++ -*-===//
84 SourceInfo(const Stmt *E) : Source(E) {}
85 SourceInfo(const Decl *D) : Source(D) {}
89 const Stmt *asStmt() const { return Source.dyn_cast<const Stmt *>(); }
90 const Decl *asDecl() const { return Source.dyn_cast<const Decl *>(); }
93 operator bool() const { return !Source.isNull(); }
96 llvm::PointerUnion<const Decl *, const Stmt *> Source;
106 /// Returns source information for a given PC in a function.
Descriptor.h 54 const DeclTy Source;
112 const Decl *asDecl() const { return Source.dyn_cast<const Decl *>(); }
113 const Expr *asExpr() const { return Source.dyn_cast<const Expr *>(); }
  /src/sys/external/bsd/gnu-efi/dist/lib/
sread.c 27 VOID *Source;
91 FHand->Source = SourceBuffer;
246 FHand->Source = SourceBuffer;
289 FreePool (FHand->Source);
313 if (FHand->Source) {
327 CopyMem (Buffer, (CHAR8 *) FHand->Source + Offset, *ReadSize);
366 // If we allocated the Source buffer, free it
370 FreePool (FHand->Source);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/
DIContext.h 30 /// A format-neutral container for source line information.
39 Optional<StringRef> Source;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroCleanup.cpp 87 auto *Source = cast<ConstantStruct>(
91 auto *SourceSize = Source->getOperand(1);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerConstantIntrinsics.cpp 80 BasicBlock *Source = BI->getParent();
81 Other->removePredecessor(Source);
83 BranchInst::Create(Target, Source);
85 DTU->applyUpdates({{DominatorTree::Delete, Source, Other}});
  /src/sys/external/bsd/acpica/dist/tables/
tbfadt.c 11 * Redistribution and use in source and binary forms, with or without
14 * 1. Redistributions of source code must retain the above copyright
163 UINT16 Source;
779 FadtPmInfoTable[i].Source);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
RefactoringCallbacks.cpp 215 CharSourceRange Source =
217 ToText += Lexer::getSourceText(Source, *Result.SourceManager,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 1 //===--- SourceCode.cpp - Source code manipulation routines -----*- C++ -*-===//
9 // This file provides functions that simplify extraction of source code.
293 "Loc must be a valid character and not the first of the source file.");
374 StringRef Source =
379 Source.substr(0, SM.getFileOffset(Range.getBegin()));
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 639 SDValue Source = Vector;
642 Source = Vector->getOperand(0);
647 CurDAG->getMachineNode(Op, SDLoc(N), MVT::f16, MVT::f16, Source);
3719 llvm_unreachable("Unhandled source type");
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 36 CodeGenInstruction Source; // The source pseudo instruction definition.
42 Source(s), Dest(d), OperandMap(m) {}
101 // Source operand maps to destination operand. The Data element
186 // argument in the source instruction, in either the (outs) or (ins) list.
189 // Record the mapping of the source to result arguments for use by
207 "' has no matching source operand");
211 // Map the source operand to the destination operand index for each
226 emitSourceFileHeader("Pseudo-instruction MC lowering Source Fragment", o);
236 CodeGenInstruction &Source = Expansion.Source
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExternalASTSource.h 10 // construction of AST nodes from some external source.
58 /// external source, such as a precompiled header. External AST
65 /// Generation number for this external AST source. Must be increased
79 ExternalASTSource *Source;
82 explicit Deserializing(ExternalASTSource *source) : Source(source) {
83 assert(Source);
84 Source->StartedDeserializing();
88 Source->FinishedDeserializing()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Job.h 106 /// Source - The action which caused the creation of this job.
107 const Action &Source;
165 Command(const Action &Source, const Tool &Creator,
181 const Action &getSource() const { return Source; }
230 CC1Command(const Action &Source, const Tool &Creator,
  /src/external/apache2/llvm/dist/clang/tools/clang-import-test/
clang-import-test.cpp 246 /// This is the main unit of parsed source code maintained by clang-import-test.
255 if (ExternalASTSource *Source = CI->getASTContext().getExternalSource())
256 return static_cast<ExternalASTMerger *>(Source)->GetOrigins();
349 ExternalASTSource *Source = CI.CI->getASTContext().getExternalSource();
350 auto *Merger = static_cast<ExternalASTMerger *>(Source);

Completed in 99 milliseconds

1 2 3