Searched defs:Match (Results 26 - 46 of 46) sorted by relevance

12

/external/regex-re2/re2/
H A Dcompile.cc168 Frag Match(int32 id);
420 Frag Compiler::Match(int32 match_id) { function in class:re2::Compiler
733 Frag f = Match(re->match_id());
1014 // Success! Finish by putting Match node at end, and record start.
1018 Frag all = c.Cat(f, c.Match(0));
H A Dre2.cc356 if (!re.Match(*str, 0, str->size(), UNANCHORED, vec, nvec))
383 if (!re.Match(*str, p - str->data(), str->size(), UNANCHORED, vec, nvec))
418 if (!re.Match(text, 0, text.size(), UNANCHORED, vec, nvec))
525 bool RE2::Match(const StringPiece& text, function in class:re2::RE2
620 LOG(INFO) << "Match " << trunc(pattern_)
626 LOG(INFO) << "Match " << trunc(pattern_)
632 LOG(INFO) << "Match " << trunc(pattern_)
649 LOG(INFO) << "Match " << trunc(pattern_)
655 LOG(INFO) << "Match " << trunc(pattern_)
663 LOG(INFO) << "Match " << trun
[all...]
/external/vixl/src/vixl/a64/
H A Ddebugger-a64.cc255 static bool Match(const char* name, const char** aliases);
1081 bool DebugCommand::Match(const char* name, const char** aliases) { function in class:vixl::DebugCommand
1126 if (Match(name, Command::kAliases)) { \
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h235 enum MatchKind { NoMatch = 0, Match = 1, NoMatchPedantic }; enumerator in enum:clang::analyze_format_string::ArgType::MatchKind
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcpplint.py341 # Match start of assembly blocks
409 def Match(pattern, s): function
411 # The regexp compilation caching is inlined in both Match and Search for
708 if Match(r'T(EST|est)', self.current_function):
1451 and not Match(r'};*\s*(//|/\*).*\bnamespace\b', line)):
1468 if not Match((r'};*\s*(//|/\*).*\bnamespace\s+' + re.escape(self.name) +
1476 if not Match(r'};*\s*(//|/\*).*\bnamespace[\*/\.\\\s]*$', line):
1549 if Match(r'^\s*#\s*(if|ifdef|ifndef)\b', line):
1553 elif Match(r'^\s*#\s*(else|elif)\b', line):
1568 elif Match(
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py428 # Match start of assembly blocks
504 def Match(pattern, s): function
506 # The regexp compilation caching is inlined in both Match and Search for
517 The compiled regex is kept in a cache shared by Match and Search.
618 not Match(r'^\s*$', clean_lines.elided[linenum - 1])):
833 if Match(r'T(EST|est)', self.current_function):
1081 leading_space = Match(r'^(\s*)\S', line)
1091 matched = Match(r'^(.*)\b(?:R|u8R|uR|UR|LR)"([^\s\\()]*)\((.*)$', line)
1698 initial_indent = Match(r'^( *)\S', clean_lines.raw_lines[linenum])
1727 indent = Match(
[all...]
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp1132 int Match = 0; local
1134 Match = 0;
1135 Match += serialPatternMatch(LoopHeader);
1136 Match += ifPatternMatch(LoopHeader);
1137 } while (Match > 0);
/external/v8/src/
H A Dd8.cc165 bool CounterMap::Match(void* key1, void* key2) { function in class:v8::CounterMap
H A Dast.h1377 static bool Match(void* literal1, void* literal2) { function in class:v8::internal::FINAL
1395 // TODO(dcarney): remove. this is only needed for Match and Hash.
2107 // Match special cases.
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp3032 QualType Match; local
3082 if (!Match.isNull()) return QualType();
3083 Match = ArgType;
3086 return Match;
H A DSemaOverload.cpp883 NamedDecl *&Match, bool NewIsUsingDecl) {
919 Match = *I;
936 Match = *I;
1116 // type is given Exact Match rank, and a conversion of an
1210 // type is given Exact Match rank, and a conversion of an
5748 bool Match = true; local
5761 Match = false;
5777 Match = false;
5789 Match = false;
5794 if (Match
882 CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old, NamedDecl *&Match, bool NewIsUsingDecl) argument
[all...]
H A DSemaTemplate.cpp1504 bool Match; member in struct:__anon1230::DependencyChecker
1507 DependencyChecker(unsigned Depth) : Depth(Depth), Match(false) {}
1509 DependencyChecker(TemplateParameterList *Params) : Match(false) {
1523 Match = true;
1575 return Checker.Match;
1597 /// \brief Match the given template parameter lists to the given scope
5458 /// \brief Match two template parameters within template parameter lists.
5916 if (Checker.Match && Checker.MatchLoc.isInvalid())
5926 if (Checker.Match && Checker.MatchLoc.isInvalid())
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp521 // Match simple R + imm12 operands.
527 // Match frame index.
710 // Match simple R +/- imm12 operands.
1267 // Match simple R + imm12 operands.
1273 // Match frame index.
1319 // Match simple R - imm8 operands.
1452 bool Match = false; local
1456 Match = true;
1460 Match = true;
1464 Match
1526 bool Match = false; local
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp792 /// @name Auto-generated Match Functions
2587 unsigned Match[4]; local
2589 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) {
2591 Match[I] = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2594 if (Match[I] == Match_MissingFeature)
2605 std::count(std::begin(Match), std::end(Match), Match_Success);
2621 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I)
2622 if (Match[I] == Match_Success)
2644 if (std::count(std::begin(Match), st
2732 SmallVector<unsigned, 8> Match; local
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvparser.cpp323 bool mkvparser::Match(IMkvReader* pReader, long long& pos, unsigned long id_, function in class:mkvparser
366 bool mkvparser::Match(IMkvReader* pReader, long long& pos, unsigned long id_, function in class:mkvparser
/external/libvpx/libwebm/
H A Dmkvparser.cpp327 bool Match(IMkvReader* pReader, long long& pos, unsigned long expected_id, function in namespace:mkvparser
365 bool Match(IMkvReader* pReader, long long& pos, unsigned long expected_id, function in namespace:mkvparser
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2085 /// Match - Find the maximal addressing mode that a load/store of V can fold,
2093 static ExtAddrMode Match(Value *V, Type *AccessTy, function in class:__anon10409::AddressingModeMatcher
2738 // Match the base operand of the GEP.
2750 // Match the remaining variable portion of the GEP.
3179 ExtAddrMode NewAddrMode = AddressingModeMatcher::Match(
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp3954 llvm::CallInst *Match = local
3961 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi.services_3.2.100.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 970 milliseconds

12