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

  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 23 // virtual void Run(const MatchFinder::MatchResult &Result) {
73 /// MatchCallback with a MatchResult containing information about the match.
74 struct MatchResult {
75 MatchResult(const BoundNodes &Nodes, clang::ASTContext *Context);
96 virtual void run(const MatchResult &Result) = 0;
286 void run(const MatchFinder::MatchResult &Result) override {
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/AsmParser/
MSP430AsmParser.cpp 259 unsigned MatchResult =
262 switch (MatchResult) {
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 738 struct MatchResult {
741 MatchResult(size_t MatchPos, size_t MatchLen, Error E)
743 MatchResult(Match M, Error E) : TheMatch(M), TheError(std::move(E)) {}
744 MatchResult(Error E) : TheError(std::move(E)) {}
757 MatchResult match(StringRef Buffer, const SourceMgr &SM) const;
FileCheck.cpp 1223 Pattern::MatchResult Pattern::match(StringRef Buffer,
1227 return MatchResult(Buffer.size(), 0, Error::success());
1235 return MatchResult(Pos, /*MatchLen=*/FixedStr.size(), Error::success());
1329 return MatchResult(TheMatch, Value.takeError());
1333 return MatchResult(TheMatch, Error::success());
2048 Pattern::MatchResult MatchResult,
2052 bool HasError = !ExpectedMatch || MatchResult.TheError;
2070 Buffer, MatchResult.TheMatch->Pos,
2071 MatchResult.TheMatch->Len, Diags)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/AsmParser/
AVRAsmParser.cpp 321 unsigned MatchResult =
324 switch (MatchResult) {
627 auto MatchResult = MatchOperandParserImpl(Operands, Mnemonic);
629 if (MatchResult == MatchOperand_Success) {
633 if (MatchResult == MatchOperand_ParseFail) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/AsmParser/
M68kAsmParser.cpp 765 auto MatchResult = MatchOperandParserImpl(Operands, Name);
766 if (MatchResult == MatchOperand_Success) {
826 unsigned MatchResult =
829 switch (MatchResult) {
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 1040 Callback->run(MatchFinder::MatchResult(BoundNodesView, Context));
1324 MatchFinder::MatchResult::MatchResult(const BoundNodes &Nodes,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 638 unsigned MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo,
640 switch (MatchResult) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 977 unsigned MatchResult = MatchInstructionImpl(
979 switch (MatchResult) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 1499 unsigned MatchResult;
1504 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo, MissingFeatures,
1506 switch (MatchResult) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/AsmParser/
VEAsmParser.cpp 765 unsigned MatchResult =
767 switch (MatchResult) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 4533 typedef PartialSpecMatchResult MatchResult;
4534 SmallVector<MatchResult, 4> Matched;
4567 SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
4580 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
4591 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
4629 for (MatchResult P : Matched)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 5033 unsigned MatchResult =
5039 if (MatchResult != Match_Success) {
5043 auto ShortFormNEONMatchResult = MatchResult;
5046 MatchResult =
5053 if (MatchResult == Match_InvalidOperand && ErrorInfo == 1 &&
5056 MatchResult = ShortFormNEONMatchResult;
5062 switch (MatchResult) {
5090 return showMatchError(IDLoc, MatchResult, ErrorInfo, Operands);
5107 MatchResult = Match_InvalidSuffix;
5109 return showMatchError(ErrorLoc, MatchResult, ErrorInfo, Operands)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 10925 unsigned MatchResult;
10929 MatchResult = MatchInstruction(Operands, Inst, NearMisses, MatchingInlineAsm,
10932 switch (MatchResult) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 5931 unsigned MatchResult =
5934 switch (MatchResult) {

Completed in 107 milliseconds