| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| H A D | StringMatcher.cpp | 29 StringMatcher::StringPair*> &Matches) { in FindFirstNonCommonLetter() argument 30 assert(!Matches.empty()); in FindFirstNonCommonLetter() 31 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) { in FindFirstNonCommonLetter() 33 char Letter = Matches[0]->first[i]; in FindFirstNonCommonLetter() 35 for (unsigned str = 0, e = Matches.size(); str != e; ++str) in FindFirstNonCommonLetter() 36 if (Matches[str]->first[i] != Letter) in FindFirstNonCommonLetter() 40 return Matches[0]->first.size(); in FindFirstNonCommonLetter() 49 const std::vector<const StringPair *> &Matches, unsigned CharNo, in EmitStringMatcherForChar() argument 51 assert(!Matches.empty() && "Must have at least one string to match!"); in EmitStringMatcherForChar() 56 if (CharNo == Matches[0]->first.size()) { in EmitStringMatcherForChar() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/ |
| H A D | package.d | 126 $(REG_ROW any character except [{|*+?()^$, Matches the character itself. ) 129 $(REG_ROW [class], Matches a single character 131 $(REG_ROW [^class], Matches a single character that 133 $(REG_ROW \cC, Matches the control character corresponding to letter C) 134 $(REG_ROW \xXX, Matches a character with hexadecimal value of XX. ) 135 $(REG_ROW \uXXXX, Matches a character with hexadecimal value of XXXX. ) 136 $(REG_ROW \U00YYYYYY, Matches a character with hexadecimal value of YYYYYY. ) 137 $(REG_ROW \f, Matches a formfeed character. ) 138 $(REG_ROW \n, Matches a linefeed character. ) 139 $(REG_ROW \r, Matches a carriage return character. ) [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | Regex.cpp | 86 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches, in match() argument 96 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; in match() 118 if (Matches) { // match position requested in match() 119 Matches->clear(); in match() 124 Matches->push_back(StringRef()); in match() 128 Matches->push_back(StringRef(String.data()+pm[i].rm_so, in match() 138 SmallVector<StringRef, 8> Matches; in sub() local 141 if (!match(String, &Matches, Error)) in sub() 146 std::string Res(String.begin(), Matches[0].begin()); in sub() 194 RefValue < Matches.size()) in sub() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | common.md | 21 "Matches any general register.") 24 "Matches any valid memory." 30 "Matches an offsettable memory reference." 39 "Matches a non-offsettable memory reference." 48 "Matches a pre-dec or post-dec operand." 55 "Matches a pre-inc or post-inc operand." 61 "Matches a general address." 65 "Matches a general integer constant." 70 "Matches a symbolic integer constant." 76 "Matches a non-symbolic integer constant." [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | common.md | 21 "Matches any general register.") 24 "Matches any valid memory." 30 "Matches an offsettable memory reference." 39 "Matches a non-offsettable memory reference." 48 "Matches a pre-dec or post-dec operand." 55 "Matches a pre-inc or post-inc operand." 61 "Matches a general address." 65 "Matches a general integer constant." 70 "Matches a symbolic integer constant." 76 "Matches a non-symbolic integer constant." [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeEnumTypes.cpp | 26 : Matches(), Index(0), Session(PDBSession) { in NativeEnumTypes() 34 Matches.push_back(*TI); in NativeEnumTypes() 43 Matches.push_back(*TI); in NativeEnumTypes() 52 : Matches(std::move(Indices)), Index(0), Session(PDBSession) {} in NativeEnumTypes() 55 return static_cast<uint32_t>(Matches.size()); in getChildCount() 59 if (N < Matches.size()) { in getChildAtIndex() 60 SymIndexId Id = Session.getSymbolCache().findSymbolByTypeIndex(Matches[N]); in getChildAtIndex()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/loongarch/ |
| H A D | constraints.md | 31 ;; "i" "Matches a general integer constant." (Global non-architectural) 39 ;; "n" "Matches a non-symbolic integer constant." (Global non-architectural) 40 ;; "o" "Matches an offsettable memory reference." (Global non-architectural) 41 ;; "p" "Matches a general address." (Global non-architectural) 44 ;; "s" "Matches a symbolic integer constant." (Global non-architectural) 48 ;; "w" "Matches any valid memory." 56 ;; "E" "Matches a floating-point constant." (Global non-architectural) 57 ;; "F" "Matches a floating-point constant." (Global non-architectural) 73 ;; "V" "Matches a non-offsettable memory reference." (Global non-architectural) 75 ;; "X" "Matches anything." (Global non-architectural) [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/ |
| H A D | package.d | 117 $(REG_ROW any character except [{|*+?()^$, Matches the character itself. ) 120 $(REG_ROW [class], Matches a single character 122 $(REG_ROW [^class], Matches a single character that 124 $(REG_ROW \cC, Matches the control character corresponding to letter C) 125 $(REG_ROW \xXX, Matches a character with hexadecimal value of XX. ) 126 $(REG_ROW \uXXXX, Matches a character with hexadecimal value of XXXX. ) 127 $(REG_ROW \U00YYYYYY, Matches a character with hexadecimal value of YYYYYY. ) 128 $(REG_ROW \f, Matches a formfeed character. ) 129 $(REG_ROW \n, Matches a linefeed character. ) 130 $(REG_ROW \r, Matches a carriage return character. ) [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | ExprMutationAnalyzer.cpp | 130 const Stmt *tryEachMatch(ArrayRef<ast_matchers::BoundNodes> Matches, in tryEachMatch() argument 133 for (const auto &Nodes : Matches) { in tryEachMatch() 229 ExprMutationAnalyzer::findExprMutation(ArrayRef<BoundNodes> Matches) { in findExprMutation() argument 230 return tryEachMatch<Expr>(Matches, this, &ExprMutationAnalyzer::findMutation); in findExprMutation() 234 ExprMutationAnalyzer::findDeclMutation(ArrayRef<BoundNodes> Matches) { in findDeclMutation() argument 235 return tryEachMatch<Decl>(Matches, this, &ExprMutationAnalyzer::findMutation); in findDeclMutation() 239 ArrayRef<ast_matchers::BoundNodes> Matches) { in findExprPointeeMutation() argument 240 return tryEachMatch<Expr>(Matches, this, in findExprPointeeMutation() 245 ArrayRef<ast_matchers::BoundNodes> Matches) { in findDeclPointeeMutation() argument 246 return tryEachMatch<Decl>(Matches, this, in findDeclPointeeMutation() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| H A D | ExprMutationAnalyzer.h | 53 const Stmt *findExprMutation(ArrayRef<ast_matchers::BoundNodes> Matches); 54 const Stmt *findDeclMutation(ArrayRef<ast_matchers::BoundNodes> Matches); 56 findExprPointeeMutation(ArrayRef<ast_matchers::BoundNodes> Matches); 58 findDeclPointeeMutation(ArrayRef<ast_matchers::BoundNodes> Matches);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/ |
| H A D | StringMatcher.h | 36 const std::vector<StringPair> &Matches; variable 42 : StrVariableName(strVariableName), Matches(matches), OS(os) {} in StringMatcher() 47 bool EmitStringMatcherForChar(const std::vector<const StringPair *> &Matches,
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangCommentHTMLTagsEmitter.cpp | 24 std::vector<StringMatcher::StringPair> Matches; in EmitClangCommentHTMLTags() local 26 Matches.emplace_back(std::string(Tag->getValueAsString("Spelling")), in EmitClangCommentHTMLTags() 33 StringMatcher("Name", Matches, OS).Emit(); in EmitClangCommentHTMLTags()
|
| H A D | ClangCommentCommandInfoEmitter.cpp | 63 std::vector<StringMatcher::StringPair> Matches; in EmitClangCommentCommandInfo() local 69 Matches.emplace_back(std::move(Name), std::move(Return)); in EmitClangCommentCommandInfo() 74 StringMatcher("Name", Matches, OS).Emit(); in EmitClangCommentCommandInfo()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | RunLoopAutoreleaseLeakChecker.cpp | 168 auto Matches = match(GroupM, *D, AM.getASTContext()); in checkTempObjectsInSamePool() local 169 for (BoundNodes Match : Matches) in checkTempObjectsInSamePool() 188 auto Matches = match(GroupM, *D, AM.getASTContext()); in checkTempObjectsInNoPool() local 190 for (BoundNodes Match : Matches) in checkTempObjectsInNoPool()
|
| H A D | GCDAntipatternChecker.cpp | 212 auto Matches = match(SemaphoreMatcherM, *D->getBody(), AM.getASTContext()); in checkASTCodeBody() local 213 for (BoundNodes Match : Matches) in checkASTCodeBody() 217 Matches = match(GroupMatcherM, *D->getBody(), AM.getASTContext()); in checkASTCodeBody() 218 for (BoundNodes Match : Matches) in checkASTCodeBody()
|
| H A D | PointerIterationChecker.cpp | 87 auto Matches = match(MatcherM, *D, AM.getASTContext()); in checkASTCodeBody() local 88 for (const auto &Match : Matches) in checkASTCodeBody()
|
| H A D | PointerSortingChecker.cpp | 101 auto Matches = match(MatcherM, *D, AM.getASTContext()); in checkASTCodeBody() local 102 for (const auto &Match : Matches) in checkASTCodeBody()
|
| H A D | OSObjectCStyleCast.cpp | 113 auto Matches = in checkASTCodeBody() local 115 for (BoundNodes Match : Matches) in checkASTCodeBody()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-refactor/ |
| H A D | TestSupport.cpp | 327 SmallVector<StringRef, 4> Matches; in findTestSelectionRanges() local 341 if (!RangeRegex.match(Comment, &Matches) || Comment.contains("CHECK")) { in findTestSelectionRanges() 348 if (!Matches[2].empty()) { in findTestSelectionRanges() 350 if (Matches[2].drop_front().getAsInteger(10, ColumnOffset)) in findTestSelectionRanges() 356 if (!Matches[3].empty()) { in findTestSelectionRanges() 360 if (!EndLocRegex.match(Matches[3], &EndLocMatches)) { in findTestSelectionRanges() 376 Matches[1].str(), SmallVector<TestSelectionRange, 8>{Range})); in findTestSelectionRanges()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | LoopUnrolling.cpp | 217 auto Matches = match(forLoopMatcher(), *LoopStmt, ASTCtx); in shouldCompletelyUnroll() local 218 if (Matches.empty()) in shouldCompletelyUnroll() 221 auto CounterVar = Matches[0].getNodeAs<VarDecl>("initVarName"); in shouldCompletelyUnroll() 223 Matches[0].getNodeAs<IntegerLiteral>("boundNum")->getValue(); in shouldCompletelyUnroll() 225 Matches[0].getNodeAs<IntegerLiteral>("initNum")->getValue(); in shouldCompletelyUnroll() 226 auto CondOp = Matches[0].getNodeAs<BinaryOperator>("conditionOperator"); in shouldCompletelyUnroll()
|
| H A D | LoopWidening.cpp | 70 auto Matches = match( in getWidenedLoopState() local 74 for (BoundNodes Match : Matches) { in getWidenedLoopState()
|
| /netbsd-src/share/i18n/csmapper/APPLE/ |
| H A D | UCS%CENTEURO.src | 28 # c02 2005-Apr-04 Update header comments. Matches internal xml 30 # b3,c1 2002-Dec-19 Update URLs. Matches internal utom<b1>. 31 # b02 1999-Sep-22 Update contact e-mail address. Matches 35 # mapping changes. Matches internal utom<n3>, 39 # Matches internal ufrm<n5>.
|
| H A D | CENTEURO%UCS.src | 28 # c02 2005-Apr-04 Update header comments. Matches internal xml 30 # b3,c1 2002-Dec-19 Update URLs. Matches internal utom<b1>. 31 # b02 1999-Sep-22 Update contact e-mail address. Matches 35 # mapping changes. Matches internal utom<n3>, 39 # Matches internal ufrm<n5>.
|
| H A D | CYRILLIC%UCS.src | 28 # c03 2005-Apr-05 Update header comments. Matches internal xml 30 # b3,c1 2002-Dec-19 Update URLs, notes. Matches internal 35 # Update contact e-mail address. Matches 39 # mapping changes. Matches internal utom<n3>, 43 # Matches internal ufrm<n5>.
|
| H A D | UCS%CYRILLIC.src | 28 # c03 2005-Apr-05 Update header comments. Matches internal xml 30 # b3,c1 2002-Dec-19 Update URLs, notes. Matches internal 35 # Update contact e-mail address. Matches 39 # mapping changes. Matches internal utom<n3>, 43 # Matches internal ufrm<n5>.
|