HomeSort by: relevance | last modified time | path
    Searched refs:Annotation (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolAnnotation.h 20 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
PDBTypes.h 252 Annotation,
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
GIMatchDagInstr.cpp 18 if (const auto *Annotation = getOpcodeAnnotation())
19 OS << Annotation->TheDef->getName();
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SymbolDumper.cpp 458 for (auto &Annotation : InlineSite.annotations()) {
459 switch (Annotation.OpCode) {
461 W.printString("(Annotation Padding)");
466 W.printHex(Annotation.Name, Annotation.U1);
473 W.printNumber(Annotation.Name, Annotation.U1);
477 W.printNumber(Annotation.Name, Annotation.S1);
482 ObjDelegate->getFileNameForFileOffset(Annotation.U1)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCXXScopeSpec.cpp 986 /// A structure that stores a nested-name-specifier annotation,
1000 NestedNameSpecifierAnnotation *Annotation
1002 Annotation->NNS = SS.getScopeRep();
1003 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
1004 return Annotation;
1015 NestedNameSpecifierAnnotation *Annotation
1017 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiInstPrinter.cpp 141 StringRef Annotation,
146 printAnnotation(OS, Annotation);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp 73 FACTORY_SYMTAG_CASE(Annotation, PDBSymbolAnnotation)
PDBExtras.cpp 247 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Annotation, OS)
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 310 uint32_t Annotation = GetCompressedAnnotation(Next);
311 Result.S1 = DecodeSignedOperand(Annotation >> 4);
312 Result.U1 = Annotation & 0xf;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h 343 /// Adds an !annotation metadata node with \p Annotation to this instruction.
344 /// If this instruction already has !annotation metadata, append \p Annotation
346 void addAnnotationMetadata(StringRef Annotation);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCCodeView.cpp 410 static bool compressAnnotation(BinaryAnnotationsOpCode Annotation,
412 return compressAnnotation(static_cast<uint32_t>(Annotation), Buffer);
513 // record. Account for the ChangeCodeLength annotation emitted after the
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 2513 CXString Annotation;
2548 Annotation =
2550 fprintf(file, "\"%s\"", clang_getCString(Annotation));
2551 clang_disposeString(Annotation);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 463 void visitAnnotationMetadata(MDNode *Annotation);
2122 "expected string with name of the !prof annotation", MD);
4339 "expected string with name of the !prof annotation", MD);
4376 void Verifier::visitAnnotationMetadata(MDNode *Annotation) {
4377 Assert(isa<MDTuple>(Annotation), "annotation must be a tuple");
4378 Assert(Annotation->getNumOperands() >= 1,
4379 "annotation must have at least one operand");
4380 for (const MDOperand &Op : Annotation->operands())
4548 if (MDNode *Annotation = I.getMetadata(LLVMContext::MD_annotation)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 245 /// not have a corresponding nullability annotation.
6525 /// Given a C++ nested-name-specifier, produce an annotation value
6535 /// Given an annotation pointer for a nested-name-specifier, restore
6538 /// \param Annotation The annotation pointer, produced by
6541 /// \param AnnotationRange The source range corresponding to the annotation.
6544 /// of the annotation pointer.
6545 void RestoreNestedNameSpecifierAnnotation(void *Annotation,
10090 /// AddAnnotationAttr - Adds an annotation Annot with Args arguments to D.

Completed in 37 milliseconds