Home
last modified time | relevance | path

Searched defs:toks (Results 26 – 50 of 755) sorted by relevance

12345678910>>...31

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/flow/actorcompiler/
H A DActorParser.cs394 void ParseDescrHeading(Descr descr, TokenRange toks) in ParseDescrHeading()
499 LoopStatement ParseLoopStatement(TokenRange toks) in ParseLoopStatement()
514 WhenStatement ParseWhenStatement(TokenRange toks) in ParseWhenStatement()
546 ThrowStatement ParseThrowStatement(TokenRange toks) in ParseThrowStatement()
555 WaitStatement ParseWaitStatement(TokenRange toks) in ParseWaitStatement()
613 WhileStatement ParseWhileStatement(TokenRange toks) in ParseWhileStatement()
626 Statement ParseForStatement(TokenRange toks) in ParseForStatement()
678 Statement ParseIfStatement(TokenRange toks) in ParseIfStatement()
700 Statement ParseTryStatement(TokenRange toks) in ParseTryStatement()
788 Statement ParseCompoundStatement(TokenRange toks) in ParseCompoundStatement()
[all …]
/dports/misc/py-cinder/cinder-12.0.10/cinder/scheduler/evaluator/
H A Devaluator.py38 def __init__(self, toks): argument
73 def __init__(self, toks): argument
81 def __init__(self, toks): argument
95 def __init__(self, toks): argument
113 def __init__(self, toks): argument
124 def __init__(self, toks): argument
142 def __init__(self, toks): argument
159 def __init__(self, toks): argument
177 def __init__(self, toks): argument
189 def __init__(self, toks): argument
[all …]
/dports/graphics/py-pydotplus/pydotplus-2.0.2/lib/pydotplus/
H A Dparser.py57 def __init__(self, toks): argument
92 def push_top_graph_stmt(str, loc, toks): argument
189 def add_elements(g, toks, argument
245 def push_graph_stmt(str, loc, toks): argument
251 def push_subgraph_stmt(str, loc, toks): argument
268 def push_default_stmt(str, loc, toks): argument
284 def push_attr_list(str, loc, toks): argument
307 def push_edge_stmt(str, loc, toks): argument
364 def push_node_stmt(s, loc, toks): argument
424 def parse_html(s, loc, toks): argument
/dports/graphics/py-pydot/pydot-1.4.2/
H A Ddot_parser.py39 def __init__(self, toks): argument
77 def push_top_graph_stmt(str, loc, toks): argument
183 def add_elements(g, toks, defaults_graph=None, argument
248 def push_graph_stmt(str, loc, toks): argument
255 def push_subgraph_stmt(str, loc, toks): argument
272 def push_default_stmt(str, loc, toks): argument
291 def push_attr_list(str, loc, toks): argument
317 def push_edge_stmt(str, loc, toks): argument
378 def push_node_stmt(s, loc, toks): argument
443 def parse_html(s, loc, toks): argument
/dports/sysutils/openipmi/OpenIPMI-2.0.29/lanserv/
H A Demu_cmd.c97 emu_get_uchar_with_vals(emu_out_t *out, char **toks, in emu_get_uchar_with_vals()
142 emu_get_bitmask(emu_out_t *out, char **toks, uint16_t *val, char *errstr, in emu_get_bitmask()
179 emu_get_uint(emu_out_t *out, char **toks, unsigned int *val, char *errstr) in emu_get_uint()
305 sel_enable(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in sel_enable()
326 sel_add(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in sel_add()
404 sensor_add(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in sensor_add()
767 mc_add(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in mc_add()
856 mc_delete(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in mc_delete()
870 mc_enable(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in mc_enable()
1180 quit(emu_out_t *out, emu_data_t *emu, lmc_data_t *mc, char **toks) in quit()
[all …]
/dports/devel/py-pyparsing2/pyparsing-2.4.7/examples/
H A DparsePythonValue.py10 cvtInt = lambda toks: int(toks[0]) argument
11 cvtReal = lambda toks: float(toks[0]) argument
12 cvtTuple = lambda toks : tuple(toks.asList()) argument
13 cvtDict = lambda toks: dict(toks.asList()) argument
14 cvtList = lambda toks: [toks.asList()] argument
H A DparseListString.py27 cvtInt = lambda s,l,toks: int(toks[0]) argument
29 cvtReal = lambda s,l,toks: float(toks[0]) argument
40 cvtInt = lambda s,l,toks: int(toks[0]) argument
41 cvtReal = lambda s,l,toks: float(toks[0]) argument
58 cvtInt = lambda s,l,toks: int(toks[0]) argument
59 cvtReal = lambda s,l,toks: float(toks[0]) argument
60 cvtDict = lambda s,l,toks: dict(toks[0]) argument
/dports/audio/rhvoice/RHVoice-1.2.4/src/scripts/Russian/stress/rulex/
H A Dregex.py23 def __init__(self,src_str,loc,toks): argument
27 def initialize(self,toks): argument
31 def initialize(self,toks): argument
38 def initialize(self,toks): argument
45 def initialize(self,toks): argument
52 def initialize(self,toks): argument
63 def initialize(self,toks): argument
/dports/x11-wm/pwm/pwm-20070720/libtu/
H A Dtester2.c18 static bool test_fn(Tokenizer *tokz, int n, Token *toks) in test_fn()
27 static bool sect_fn(Tokenizer *tokz, int n, Token *toks) in sect_fn()
35 static bool test2_fn(Tokenizer *tokz, int n, Token *toks) in test2_fn()
42 static bool test3_fn(Tokenizer *tokz, int n, Token *toks) in test3_fn()
/dports/devel/py-pyparsing/pyparsing-3.0.6/examples/
H A DparsePythonValue.py9 cvtInt = lambda toks: int(toks[0]) argument
10 cvtReal = lambda toks: float(toks[0]) argument
11 cvtTuple = lambda toks: tuple(toks.asList()) argument
12 cvtDict = lambda toks: dict(toks.asList()) argument
13 cvtList = lambda toks: [toks.asList()] argument
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/unittests/Lex/
H A DLexerTest.cpp69 std::vector<Token> toks; in Lex() local
83 auto toks = Lex(Source); in CheckLex() local
120 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
132 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
145 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
158 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
172 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
186 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
201 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
214 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/unittests/Lex/
H A DLexerTest.cpp69 std::vector<Token> toks; in Lex() local
83 auto toks = Lex(Source); in CheckLex() local
120 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
132 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
145 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
158 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
172 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
186 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
201 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
214 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/unittests/Lex/
H A DLexerTest.cpp66 std::vector<Token> toks; in Lex() local
80 auto toks = Lex(Source); in CheckLex() local
117 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
129 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
142 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
155 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
169 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
183 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
198 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
357 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/unittests/Lex/
H A DLexerTest.cpp71 std::vector<Token> toks; in Lex() local
85 auto toks = Lex(Source); in CheckLex() local
123 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
135 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
148 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
161 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
175 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
189 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
204 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
424 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/unittests/Lex/
H A DLexerTest.cpp71 std::vector<Token> toks; in Lex() local
85 auto toks = Lex(Source); in CheckLex() local
123 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
135 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
148 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
161 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
175 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
189 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
204 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
424 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/unittests/Lex/
H A DLexerTest.cpp71 std::vector<Token> toks; in Lex() local
85 auto toks = Lex(Source); in CheckLex() local
123 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
135 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
148 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
161 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
175 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
189 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
204 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
424 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/unittests/Lex/
H A DLexerTest.cpp71 std::vector<Token> toks; in Lex() local
85 auto toks = Lex(Source); in CheckLex() local
123 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
135 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
148 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
161 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
175 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
189 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
204 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
424 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/lang/clang-mesa/clang-13.0.1.src/unittests/Lex/
H A DLexerTest.cpp71 std::vector<Token> toks; in Lex() local
85 auto toks = Lex(Source); in CheckLex() local
123 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
135 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
148 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
161 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
175 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
189 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
204 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
424 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/unittests/Lex/
H A DLexerTest.cpp70 std::vector<Token> toks; in Lex() local
84 auto toks = Lex(Source); in CheckLex() local
121 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
133 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
146 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
159 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
173 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
187 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
202 std::vector<Token> toks = CheckLex("#define M(x) x\n" in TEST_F() local
361 std::vector<Token> toks = in TEST_F() local
[all …]

12345678910>>...31