Home
last modified time | relevance | path

Searched refs:matchOne (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/dports/multimedia/musikcube/musikcube-0.96.7/src/musikcore/db/
H A DSqliteExtensions.cpp327 u8 matchOne; /* "?" or "_" */ member
557 u32 matchOne = pInfo->matchOne; /* "?" or "_" */ in patternCompare() local
567 while ((c = Utf8Read(zPattern)) == matchAll || c == matchOne) { in patternCompare()
568 if (c == matchOne && sqlite3Utf8Read(&zString) == 0) { in patternCompare()
678 if (c == matchOne && zPattern != zEscaped && c2 != 0) continue; in patternCompare()
737 if (escape == pInfo->matchAll || escape == pInfo->matchOne) { in likeFunc()
741 if (escape == pInfo->matchOne) pInfo->matchOne = 0; in likeFunc()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/include/mlir/Analysis/
H A DNestedMatcher.h101 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
106 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
122 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/include/mlir/Analysis/
H A DNestedMatcher.h101 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
106 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
122 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/include/mlir/Analysis/
H A DNestedMatcher.h101 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
106 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
122 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/include/mlir/Analysis/
H A DNestedMatcher.h101 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
106 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
122 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/include/mlir/Analysis/
H A DNestedMatcher.h101 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
106 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
122 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/include/mlir/Analysis/
H A DNestedMatcher.h108 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
113 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
136 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/include/mlir/Analysis/
H A DNestedMatcher.h108 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
113 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
136 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/include/mlir/Analysis/
H A DNestedMatcher.h108 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
113 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
136 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/llvm90/llvm-9.0.1.src/lib/Support/
H A DGlobPattern.cpp141 return matchOne(Tokens, S); in match()
145 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
158 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/llvm80/llvm-8.0.1.src/lib/Support/
H A DGlobPattern.cpp142 return matchOne(Tokens, S); in match()
146 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
159 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/include/mlir/Analysis/
H A DNestedMatcher.h108 func.walk([&](Operation *op) { matchOne(op, matches); }); in match()
113 op->walk([&](Operation *child) { matchOne(child, matches); }); in match()
136 void matchOne(Operation *op, SmallVectorImpl<NestedMatch> *matches);
/dports/devel/llvm70/llvm-7.0.1.src/lib/Support/
H A DGlobPattern.cpp142 return matchOne(Tokens, S);
146 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const {
159 if (matchOne(Pats, S.substr(I)))
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/shake-0.19.4/src/Development/Shake/Internal/
H A DFilePattern.hs175 matchOne :: Pat -> String -> Bool
176 matchOne (Lit x) y = x == y function
177 matchOne x@Stars{} y = isJust $ matchStars x y function
178 matchOne Star _ = True function
179 matchOne p _ = throwImpure $ errorInternal $ "unreachablePattern, matchOne " ++ show p function
316 (if finStar then xs else filter (\x -> any (`matchOne` x) fin) xs
317 … ,[(x, f ys) | x <- xs, let ys = concat [b | (a,b) <- nxt, matchOne a x], not $ null ys])
/dports/devel/hs-shake/shake-0.19.6/src/Development/Shake/Internal/
H A DFilePattern.hs175 matchOne :: Pat -> String -> Bool
176 matchOne (Lit x) y = x == y function
177 matchOne x@Stars{} y = isJust $ matchStars x y function
178 matchOne Star _ = True function
179 matchOne p _ = throwImpure $ errorInternal $ "unreachablePattern, matchOne " ++ show p function
316 (if finStar then xs else filter (\x -> any (`matchOne` x) fin) xs
317 … ,[(x, f ys) | x <- xs, let ys = concat [b | (a,b) <- nxt, matchOne a x], not $ null ys])
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/shake-0.19.4/src/Development/Shake/Internal/
H A DFilePattern.hs175 matchOne :: Pat -> String -> Bool
176 matchOne (Lit x) y = x == y function
177 matchOne x@Stars{} y = isJust $ matchStars x y function
178 matchOne Star _ = True function
179 matchOne p _ = throwImpure $ errorInternal $ "unreachablePattern, matchOne " ++ show p function
316 (if finStar then xs else filter (\x -> any (`matchOne` x) fin) xs
317 … ,[(x, f ys) | x <- xs, let ys = concat [b | (a,b) <- nxt, matchOne a x], not $ null ys])
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Support/
H A DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()

12345678910>>...12