/build/soong/androidmk/parser/ |
makething.go | 10 AsDirective() (Directive, bool) 31 type Directive struct { 90 func (makeThing) AsDirective() (d Directive, ok bool) { 94 func (d Directive) AsDirective() (Directive, bool) { 98 func (d Directive) Dump() string {
|
/external/clang/include/clang/Frontend/ |
VerifyDiagnosticConsumer.h | 66 /// the diagnostic will appear, rather than placing the expected-* directive in 115 /// including regexes wrapped in double curly braces in the directive, such as: 133 /// VerifyDiagnosticConsumer expects at least one expected-* directive to 135 /// following directive can be used to indicate this: 144 /// Directive - Abstract class representing a parsed verify directive. 146 class Directive { 148 static std::unique_ptr<Directive> create(bool RegexKind, 164 virtual ~Directive() { } 166 // Returns true if directive text is valid [all...] |
/external/llvm/lib/MC/ |
WinCOFFStreamer.cpp | 230 SmallString<128> Directive; 231 raw_svector_ostream OS(Directive); 239 EmitBytes(Directive);
|
MCAsmStreamer.cpp | 490 // The intel_syntax directive has one optional argument 589 // Note: a .zerofill directive does not switch sections. 592 // This is a mach-o specific directive. 615 // This is a mach-o specific directive and section. 696 const char *Directive = nullptr; 699 case 1: Directive = MAI->getData8bitsDirective(); break; 700 case 2: Directive = MAI->getData16bitsDirective(); break; 701 case 4: Directive = MAI->getData32bitsDirective(); break; 702 case 8: Directive = MAI->getData64bitsDirective(); break; 705 if (!Directive) { [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCHazardRecognizers.cpp | 162 unsigned Directive = 165 if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 || 166 Directive == PPC::DIR_PWR8 ) 222 unsigned Directive = 226 if (Directive == PPC::DIR_PWR6 || Directive == PPC::DIR_PWR7 || 227 Directive == PPC::DIR_PWR8 || CurSlots == 6) {
|
PPCTargetTransformInfo.cpp | 234 unsigned Directive = ST->getDarwinDirective(); 237 if (Directive == PPC::DIR_440) 242 if (Directive == PPC::DIR_A2) 246 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) 251 if (Directive == PPC::DIR_PWR7 || 252 Directive == PPC::DIR_PWR8)
|
PPCAsmPrinter.cpp | [all...] |
PPCInstrInfo.cpp | 76 unsigned Directive = 78 if (Directive == PPC::DIR_440 || Directive == PPC::DIR_A2 || 79 Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500) { 93 unsigned Directive = 96 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8) 100 if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 & [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/ |
Token.java | 23 Alias, Anchor, BlockEnd, BlockEntry, BlockMappingStart, BlockSequenceStart, Directive, DocumentEnd, DocumentStart, FlowEntry, FlowMappingEnd, FlowMappingStart, FlowSequenceEnd, FlowSequenceStart, Key, Scalar, StreamEnd, StreamStart, Tag, Value, Whitespace, Comment, Error
|
/external/clang/lib/Parse/ |
ParseOpenMP.cpp | 86 /// threadprivate-directive: 90 assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!"); 154 /// threadprivate-directive: 158 /// executable-directive: 170 assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!"); 181 // Name of critical directive. 183 StmtResult Directive = StmtError(); 200 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation()); 245 // Parse directive name of the 'critical' directive if any [all...] |
/prebuilts/go/darwin-x86/src/encoding/xml/ |
xml.go | 54 // StartElement, EndElement, CharData, Comment, ProcInst, or Directive. 110 // A Directive represents an XML directive of the form <!text>. 112 type Directive []byte 114 func (d Directive) Copy() Directive { return Directive(makeCopy(d)) } 123 case Directive: 652 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc. 713 return Directive(d.buf.Bytes()), ni [all...] |
/prebuilts/go/linux-x86/src/encoding/xml/ |
xml.go | 54 // StartElement, EndElement, CharData, Comment, ProcInst, or Directive. 110 // A Directive represents an XML directive of the form <!text>. 112 type Directive []byte 114 func (d Directive) Copy() Directive { return Directive(makeCopy(d)) } 123 case Directive: 652 // Probably a directive: <!DOCTYPE ...>, <!ENTITY ...>, etc. 713 return Directive(d.buf.Bytes()), ni [all...] |
/external/clang/lib/Frontend/ |
VerifyDiagnosticConsumer.cpp | 26 typedef VerifyDiagnosticConsumer::Directive Directive; 159 /// StandardDirective - Directive with string matching. 161 class StandardDirective : public Directive { 166 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max) { } 178 /// RegexDirective - Directive with regular-expression matching. 180 class RegexDirective : public Directive { 185 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max), 307 /// diagnostics. If so, then put them in the appropriate directive list. 356 // If a directive has been found but we're not intereste [all...] |
/external/clang/lib/Sema/ |
SemaOpenMP.cpp | 39 /// \brief Default data sharing attributes, which can be applied to directive. 104 OpenMPDirectiveKind Directive; 119 Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope), 124 Directive(OMPD_unknown), DirectiveName(), CurScope(nullptr), 133 /// \brief true, if check for DSA must be from parent directive, false, if 134 /// from current directive. 199 /// match specified \a CPred predicate in any directive which matches \a DPred 205 /// match specified \a CPred predicate in any innermost directive which 218 /// \brief Returns true if the directive at level \Level matches in the 224 /// \brief Finds a directive which matches specified \a DPred predicate [all...] |
/external/clang/lib/Lex/ |
PPDirectives.cpp | 1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===// 11 /// \brief Implements # directive processing for the Preprocessor. 33 // Utility Methods for Preprocessor Directive Handling. 87 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens"); 256 // There should be no tokens after the directive, but we allow them as an 263 // or if this is a macro-style preprocessing directive, because it is more 277 /// SkipExcludedConditionalBlock - We just read a \#if or related directive and 281 /// this \#if directive, so \#else/\#elif blocks should never be entered. 283 /// already seen one so a \#else directive is a duplicate. When this returns, 329 // If this token is not a preprocessor directive, just skip it [all...] |
/prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/ |
org.apache.felix.bundlerepository-1.6.6.jar | |
/prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/ |
velocity-1.5.jar | |
/prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/ |
velocity-1.7.jar | |
/external/guice/extensions/persist/lib/ |
hsqldb.jar | |
/external/dagger2/lib/ |
auto-value-1.0.jar | |
/prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/ |
pmd-5.1.1.jar | |