Home
last modified time | relevance | path

Searched refs:AnyChar (Results 1 – 25 of 158) sorted by relevance

1234567

/dports/shells/nsh/nsh-0.4.2/src/
H A Dpattern.rs14 AnyChar, enumerator
40 LiteralOrGlob::AnyChar => string.push('?'), in into_string()
52 LiteralOrGlob::AnyChar => true, in expand_glob()
64 LiteralOrGlob::AnyChar => { in expand_glob()
109 AnyChar, enumerator
133 RegexSpan::AnyChar => true, in match_one()
201 LiteralOrGlob::AnyChar => { in pattern_word_match()
202 spans.push(RegexSpan::AnyChar); in pattern_word_match()
312 fragments: vec![LiteralOrGlob::AnyChar], in wildcard()
347 LiteralOrGlob::AnyChar, in wildcard()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Util/
H A DSearchPattern.cs84 op = new Op (OpCode.AnyChar); in Compile()
149 case OpCode.AnyChar: in Match()
190 AnyChar, // ? enumerator
/dports/www/xsp/xsp-4.5/src/Mono.WebServer/
H A DSearchPattern.cs83 op = new Op (OpCode.AnyChar); in Compile()
148 case OpCode.AnyChar: in Match()
189 AnyChar, // ? enumerator
/dports/devel/py-plex/py38-plex-1.1.5/examples/
H A Dexample6.py21 (AnyChar, IGNORE)
25 (AnyChar, IGNORE)
H A Dpython.py71 Rep(AnyBut("\\\n'") | (Str("\\") + AnyChar)) +
76 Rep(AnyBut('\\\n"') | (Str("\\") + AnyChar)) +
79 non_dq = AnyBut('"') | (Str('\\') + AnyChar)
/dports/textproc/kf5-syntax-highlighting/syntax-highlighting-5.89.0/src/lib/
H A Dhighlightingdata_p.hpp54 AnyChar, enumerator
74 struct AnyChar { struct
150 AnyChar anyChar;
H A Drule_p.h118 class AnyChar final : public Rule
121 AnyChar(const HighlightingContextData::Rule::AnyChar &data);
H A Drule.cpp164 case Type::AnyChar: in createRule()
165 return std::make_shared<AnyChar>(ruleData.data.anyChar); in createRule()
216 AnyChar::AnyChar(const HighlightingContextData::Rule::AnyChar &data) in AnyChar() function in AnyChar
221 MatchResult AnyChar::doMatch(QStringView text, int offset, const QStringList &) const in doMatch()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.IO/
H A DSearchPattern.cs106 op = new Op (OpCode.AnyChar); in Compile()
173 case OpCode.AnyChar: in Match()
215 AnyChar, // ? enumerator
/dports/devel/py-plex/py38-plex-1.1.5/tests/
H A Dtest9.py77 Rep(AnyBut("\\\n'") | (Str("\\") + AnyChar)) +
81 Rep(AnyBut('\\\n"') | (Str("\\") + AnyChar)) +
83 non_dq = AnyBut('"') | (Str('\\') + AnyChar)
/dports/devel/boost-docs/boost_1_72_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/devel/boost-python-libs/boost_1_72_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/databases/percona57-server/boost_1_59_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/databases/xtrabackup/boost_1_59_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/databases/percona57-client/boost_1_59_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/devel/boost-libs/boost_1_72_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/devel/hyperscan/boost_1_75_0/libs/proto/test/
H A Dtoy_spirit2.cpp165 struct AnyChar struct
178 : proto::function<AnyChar, CharLiteral>
182 : proto::function<AnyChar, CharLiteral, CharLiteral>
201 when< AnyChar, _value >
/dports/textproc/p5-Syntax-Highlight-Engine-Kate/Syntax-Highlight-Engine-Kate-0.14/samples/
H A Dhighlight.basetest2 <AnyChar>
4 </AnyChar>
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Json.Test.Unit/
H A DJsonPrimitiveTest.cs20 Assert.Equal(AnyInstance.AnyChar, (char)(new JsonPrimitive(AnyInstance.AnyChar))); in JsonPrimitiveConstructorTest()
74 AnyInstance.AnyString, AnyInstance.AnyChar, in TryCreateTest()
173 { new string(AnyInstance.AnyChar, 1), new JsonPrimitive(AnyInstance.AnyChar) }, in NonNumberToStringConversionTest()
255 …Assert.Equal<char>(AnyInstance.AnyChar, (char)(new JsonPrimitive(new string(AnyInstance.AnyChar, 1… in StringToNonNumberConversionTest()
381 Assert.Equal(JsonType.String, new JsonPrimitive(AnyInstance.AnyChar).JsonType); in JsonTypeTest()
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/Cython/Compiler/
H A DLexicon.py18 Str, Any, AnyBut, AnyChar, Rep, Rep1, Opt, Bol, Eol, Eof, \
57 Str('U') + four_hex + four_hex | AnyChar)
/dports/lang/cython/Cython-0.29.24/Cython/Compiler/
H A DLexicon.py18 Str, Any, AnyBut, AnyChar, Rep, Rep1, Opt, Bol, Eol, Eof, \
57 Str('U') + four_hex + four_hex | AnyChar)
/dports/lang/cython/Cython-0.29.24/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/Cython/Compiler/
H A DLexicon.py18 Str, Any, AnyBut, AnyChar, Rep, Rep1, Opt, Bol, Eol, Eof, \
57 Str('U') + four_hex + four_hex | AnyChar)
/dports/lang/cython/stage/usr/local/lib/python3.8/site-packages/Cython/Compiler/
H A DLexicon.py18 Str, Any, AnyBut, AnyChar, Rep, Rep1, Opt, Bol, Eol, Eof, \
57 Str('U') + four_hex + four_hex | AnyChar)

1234567