HomeSort by relevance Sort by last modified time
    Searched refs:Directive (Results 1 - 15 of 15) sorted by null

  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 114 /// Directive - Abstract class representing a parsed verify directive.
116 class Directive {
118 static Directive *create(bool RegexKind, SourceLocation DirectiveLoc,
130 virtual ~Directive() { }
132 // Returns true if directive text is valid.
140 Directive(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc,
149 Directive(const Directive&); // DO NOT IMPLEMENT
150 void operator=(const Directive&); // DO NOT IMPLEMEN
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 35 StringRef Directive,
38 return (Obj->*Handler)(Directive, DirectiveLoc);
MCAsmParser.h 52 StringRef Directive,
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 26 typedef VerifyDiagnosticConsumer::Directive Directive;
156 /// StandardDirective - Directive with string matching.
158 class StandardDirective : public Directive {
162 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
174 /// RegexDirective - Directive with regular-expression matching.
176 class RegexDirective : public Directive {
180 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
265 /// diagnostics. If so, then put them in the appropriate directive list.
295 // If a directive has been found but we're not intereste
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 456 /// directive.
491 unsigned Directive = Subtarget.getDarwinDirective();
492 if (Subtarget.hasMFOCRF() && Directive < PPC::DIR_970)
493 Directive = PPC::DIR_970;
494 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
495 Directive = PPC::DIR_7400;
496 if (Subtarget.isPPC64() && Directive < PPC::DIR_64)
497 Directive = PPC::DIR_64;
498 assert(Directive <= PPC::DIR_64 && "Directive out of range.")
    [all...]
PPCInstrInfo.cpp 56 unsigned Directive = TM->getSubtarget<PPCSubtarget>().getDarwinDirective();
57 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 ||
58 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) {
71 unsigned Directive = TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
74 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &&
75 Directive != PPC::DIR_E500mc && Directive != PPC::DIR_E5500)
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 28 void AddDirectiveHandler(StringRef Directive) {
29 getParser().AddDirectiveHandler(this, Directive,
125 bool ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc);
134 bool COFFAsmParser::ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) {
135 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
138 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
144 return TokError("expected identifier in directive");
154 return TokError("unexpected token in directive");
167 return TokError("unexpected token in section switching directive");
180 return TokError("expected identifier in directive");
    [all...]
AsmParser.cpp 108 /// invoked after the directive identifier is read and is responsible for
109 /// parsing and validating the rest of the directive. The handler is passed
110 /// in the directive name and the location of the directive keyword.
141 StringRef Directive,
143 DirectiveMap[Directive] = std::make_pair(Object, Handler);
201 /// ProcessIncbinFile - Process the specified file for the .incbin directive.
235 // Directive Parsing.
249 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
287 /// \brief Generic implementations of directive handling, etc. which is share
    [all...]
DarwinAsmParser.cpp 26 /// \brief Implementation of directive handling which is shared across all
30 void AddDirectiveHandler(StringRef Directive) {
31 getParser().AddDirectiveHandler(this, Directive,
129 // Named Section Directive
295 // Darwin silently ignores the .ident directive.
313 return TokError("unexpected token in section switching directive");
327 // section, then just issuing the section switch directive will not realign
342 return TokError("expected identifier in directive");
348 return TokError("unexpected token in '.desc' directive");
356 return TokError("unexpected token in '.desc' directive");
    [all...]
ELFAsmParser.cpp 26 void AddDirectiveHandler(StringRef Directive) {
27 getParser().AddDirectiveHandler(this, Directive,
157 bool ELFAsmParser::ParseDirectiveSymbolAttribute(StringRef Directive, SMLoc) {
158 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
165 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
171 return TokError("expected identifier in directive");
181 return TokError("unexpected token in directive");
193 return TokError("unexpected token in section switching directive");
205 return TokError("expected identifier in directive");
209 return TokError("unexpected token in directive");
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 539 // Note: a .zerofill directive does not switch sections.
542 // This is a mach-o specific directive.
561 // This is a mach-o specific directive and section.
640 const char *Directive = 0;
643 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
644 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
645 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
647 Directive = MAI.getData64bitsDirective(AddrSpace);
649 if (Directive) break;
663 assert(Directive && "Invalid size for machine code value!")
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
11 /// \brief Implements # directive processing for the Preprocessor.
30 // Utility Methods for Preprocessor Directive Handling.
92 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
101 /// this is due to a a \#define, 2 if \#undef directive, 0 if it is something
177 // There should be no tokens after the directive, but we allow them as an
184 // or if this is a macro-style preprocessing directive, because it is more
198 /// SkipExcludedConditionalBlock - We just read a \#if or related directive and
202 /// this \#if directive, so \#else/\#elif blocks should never be entered.
204 /// already seen one so a \#else directive is a duplicate. When this returns
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 298 /// push_macro directive, we keep a MacroInfo stack used to restore
637 /// would foul up preprocessor directive handling.
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp     [all...]
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 

Completed in 2085 milliseconds