HomeSort by: relevance | last modified time | path
    Searched defs:Match (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
re.h 74 bool Match(const std::string& str);
111 inline bool Regex::Match(const std::string& str) {
148 inline bool Regex::Match(const std::string& str) {
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
re.h 69 bool Match(const std::string& str);
105 inline bool Regex::Match(const std::string& str) {
142 inline bool Regex::Match(const std::string& str) {
  /src/sys/external/bsd/acpica/dist/events/
evrgnini.c 389 BOOLEAN Match;
400 Match = AcpiUtIsPciRootBridge (Hid->String);
403 if (Match)
408 /* The _HID did not match. Get the _CID and check for a PCI Root Bridge */
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_suppressions.cc 81 bool SuppressionContext::Match(const char *str, const char *type,
107 // Context must not mutate once Match has been called.
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_suppressions.cpp 92 bool SuppressionContext::Match(const char *str, const char *type,
118 // Context must not mutate once Match has been called.
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_suppressions.cpp 91 bool SuppressionContext::Match(const char *str, const char *type,
117 // Context must not mutate once Match has been called.
  /src/sys/external/bsd/gnu-efi/dist/lib/
hand.c 124 BOOLEAN Match;
193 // passed in. If it does match, and the next node is the End of the
195 // Path, then we have found a match.
198 Match = FALSE;
226 Match = TRUE;
231 Match = TRUE;
252 if (Match == FALSE) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 115 bool Match = true;
122 Match = false;
124 Match = false;
133 Match = false;
154 MatchReg &= Match;
938 "#operands for dag node doesn't match .td file!");
1260 // used), but this does not match the semantics of our early-clobber flag.
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp 107 bool Match = match(In, m_And(m_Shl(m_LShr(m_Value(BF), m_ConstantInt(CSR)),
111 if (!Match) {
114 Match = match(In, m_And(m_Shl(m_AShr(m_Value(BF), m_ConstantInt(CSR)),
118 if (!Match) {
122 Match = match(In, m_And(m_Shl(m_Value(BF), m_ConstantInt(CSL)),
124 if (Match && NoSR0)
127 if (!Match) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
PrintfFormatString.cpp 130 std::string Match = "^[[:space:]]*"
133 llvm::Regex R(Match);
136 if (R.match(Str, &Matches)) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
LoopUnrolling.cpp 142 // Initialization should match the form: 'int i = 6' or 'i = 42'.
192 auto Match =
193 match(stmt(anyOf(callByRef(equalsNode(VD)), getAddrTo(equalsNode(VD)),
196 if (!Match.empty())
215 // TODO: Match the cases where the bound is not a concrete literal but an
217 auto Matches = match(forLoopMatcher(), *LoopStmt, ASTCtx);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
JSONCompilationDatabase.cpp 235 StringRef Match = MatchTrie.findEquivalent(NativeFilePath, ES);
236 if (Match.empty())
238 const auto CommandsRefI = IndexByFile.find(Match);
278 // `distcc g++ file.c` This is the mode we're trying to match.
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.cpp 339 // Match the rest of the identifier regex: [0-9a-zA-Z_]*
516 /// otherwise return the bracket. Match: '[' and '[{ ( [^}]+ | }[^]] )* }]'
624 bool Match = true;
628 Match = false;
637 if (Match) {
897 // Match the rest of the identifier regex: [0-9a-zA-Z_]*
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
X86EVEX2VEXTablesEmitter.cpp 127 // Match is allowed if either is VEX_WIG, or they match, or EVEX
232 // For each EVEX instruction look for a VEX match in the appropriate vector
234 // Allow EVEX2VEXOverride to explicitly specify a match.
243 auto Match = llvm::find_if(VEXInsts[Opcode], IsMatch(EVEXInst));
244 if (Match != VEXInsts[Opcode].end())
245 VEXInst = *Match;
251 // In case a match is found add new entry to the appropriate table
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64SIMDInstrOpt.cpp 517 bool Match = false;
533 Match = true;
538 if (!Match)
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 102 bool match(StringRef S) override {
121 bool match(StringRef S) override {
122 return Regex.match(S);
161 // A marker is the longest match for /#[A-Za-z0-9_-]+/.
175 // When true, P marks begin-position of the match, and calling Advance sets C
176 // to end-position of the match.
180 // If FinishDirectiveToken, then assume the match is the start of a comment
181 // directive for -verify, and extend the match to include the entire first
257 StringRef Match() { return StringRef(P, PEnd - P); }
422 Markers.addMarker(PH.Match(), Pos)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 61 /// Evaluates a format to true if it can be used in a match.
617 /// A fixed string to match as the pattern or empty if this pattern requires
618 /// a regex match.
621 /// A regex string to match as the pattern or empty if this pattern requires
622 /// a fixed string to match.
626 /// an expression in the RegExStr regex at match time. For example, in the
734 struct Match {
739 Optional<Match> TheMatch;
742 : TheMatch(Match{MatchPos, MatchLen}), TheError(std::move(E)) {}
743 MatchResult(Match M, Error E) : TheMatch(M), TheError(std::move(E)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCWin64EH.cpp 518 // Epilogs - Epilogs that potentialy match the current epilog.
532 bool Match = true;
537 Match = false;
541 if (Match)
622 // Check that the epilog actually is a perfect match for the end (backwrds)
685 // Iterate over the prolog and check that all opcodes exactly match
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
ConfigManager.cpp 1119 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; };
1124 [&Match](const DenseMap<StringRef, StringRef>::value_type &OldNew) {
1125 return Match(OldNew.getFirst()) || Match(OldNew.getSecond());
1134 auto It2 = find_if(Config.RPathsToRemove, Match);
1141 auto It3 = find_if(Config.RPathToAdd, Match);
1148 auto It4 = find_if(Config.RPathToPrepend, Match);
  /src/games/fortune/fortune/
fortune.c 107 static bool Found_one; /* did we find a match? */
122 static bool Match = FALSE; /* dump fortunes matching a pattern */
200 if (Match)
343 case 'i': /* case-insensitive match */
345 errx(1, "Can't match fortunes on this system (Sorry)");
348 Match++;
351 case 'i': /* case-insensitive match */
1241 * Find all the fortunes which match the pattern we've been given.
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 302 # match those on a word boundary.
341 # Match start of assembly blocks
409 def Match(pattern, s):
411 # The regexp compilation caching is inlined in both Match and Search for
416 return _regexp_compile_cache[pattern].match(s)
708 if Match(r'T(EST|est)', self.current_function):
922 line = line.replace(r'\\', 'XX') # after this, \\" does not match to \"
1021 if not _RE_PATTERN_INCLUDE.match(elided):
1195 '#ifndef and #define don\'t match, suggested CPP variable is: %s' %
1352 if _RE_PATTERN_INVALID_INCREMENT.match(line)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
MCTargetAsmParser.h 123 MatchOperand_NoMatch, // operand did not match
128 Match,
134 // possible operand classes that the operand might match and call the
138 // is no match, there is currently no mechanism to distinguish which operand is
139 // a closer match. The DiagnosticPredicate distinguishes between 'completely
140 // no match' and 'near match', so the assembler can decide whether to give a
158 // PredicateMethods that return a 'bool' (match or no match).
162 explicit DiagnosticPredicate(bool Match)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp 224 // match for extract/delete operations when there are multiple matches. This is
452 // looking for members that match the path list.
1156 if (const char *Match = matchFlagWithArg("rsp-quoting", ArgIt, ArgsArr)) {
1157 StringRef MatchRef = Match;
1163 fail(std::string("Invalid response file quoting style ") + Match);
1178 const char *Match = nullptr;
1202 Match = matchFlagWithArg("format", ArgIt, Argv);
1203 if (Match) {
1204 FormatType = StringSwitch<Format>(Match)
1211 fail(std::string("Invalid format ") + Match);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
FormatString.h 261 Match = 1,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 1424 bool Match = true;
1442 Match = false;
1454 Match = false;
1459 Match = false;
1467 if (!Match) {
1473 assert(Match && "BFI mismatch");

Completed in 70 milliseconds

1 2