Home
last modified time | relevance | path

Searched refs:this_state (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/lalrpop-0.17.2/src/lr1/
H A Dlookahead.rs32 let index = this_state.index; in conflicts()
36 for (terminal, &next_state) in &this_state.shifts { in conflicts()
38 this_state in conflicts()
50 if this_state.reductions.len() > 1 { in conflicts()
51 for &(_, production) in &this_state.reductions[1..] { in conflicts()
52 let other_production = this_state.reductions[0].1; in conflicts()
84 for (terminal, &next_state) in &this_state.shifts { in conflicts()
87 this_state in conflicts()
100 state: this_state.index, in conflicts()
108 let len = this_state.reductions.len(); in conflicts()
[all …]
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/lalrpop-0.16.3/src/lr1/
H A Dlookahead.rs32 let index = this_state.index; in conflicts()
36 for (terminal, &next_state) in &this_state.shifts { in conflicts()
38 this_state in conflicts()
50 if this_state.reductions.len() > 1 { in conflicts()
51 for &(_, production) in &this_state.reductions[1..] { in conflicts()
52 let other_production = this_state.reductions[0].1; in conflicts()
84 for (terminal, &next_state) in &this_state.shifts { in conflicts()
87 this_state in conflicts()
100 state: this_state.index, in conflicts()
108 let len = this_state.reductions.len(); in conflicts()
[all …]
/dports/net/krill/krill-0.9.4/cargo-crates/lalrpop-0.19.6/src/lr1/
H A Dlookahead.rs32 let index = this_state.index; in conflicts()
36 for (terminal, &next_state) in &this_state.shifts { in conflicts()
38 this_state in conflicts()
50 if this_state.reductions.len() > 1 { in conflicts()
51 for &(_, production) in &this_state.reductions[1..] { in conflicts()
52 let other_production = this_state.reductions[0].1; in conflicts()
84 for (terminal, &next_state) in &this_state.shifts { in conflicts()
87 this_state in conflicts()
100 state: this_state.index, in conflicts()
108 let len = this_state.reductions.len(); in conflicts()
[all …]
/dports/science/code_saturne/code_saturne-7.1.0/src/fvm/
H A Dfvm_triangulate.c1007 this_state->coords = NULL; in fvm_triangulate_state_create()
1008 this_state->list_previous = NULL; in fvm_triangulate_state_create()
1009 this_state->list_next = NULL; in fvm_triangulate_state_create()
1010 this_state->edge_vertices = NULL; in fvm_triangulate_state_create()
1011 this_state->edge_neighbors = NULL; in fvm_triangulate_state_create()
1013 this_state->concave = NULL; in fvm_triangulate_state_create()
1018 return this_state; in fvm_triangulate_state_create()
1034 if (this_state != NULL) { in fvm_triangulate_state_destroy()
1037 BFT_FREE(this_state->coords); in fvm_triangulate_state_destroy()
1043 BFT_FREE(this_state->concave); in fvm_triangulate_state_destroy()
[all …]
/dports/devel/py-pyxb/PyXB-1.2.6/pyxb/binding/
H A Dsaxer.py315 if this_state.inDOMMode():
316 return this_state.startDOMElement(attrs)
325 this_state.setElementBinding(element_binding)
351 return this_state.enterDOMMode(attrs)
364 this_state.setEnclosingCTD(type_class)
366 this_state.setEnclosingCTD(parent_state.enclosingCTD())
378 this_state = super(PyXBSAXHandler, self).endElementNS(name, qname)
379 if this_state.inDOMMode():
383 binding_object = this_state.endDOMElement()
388 binding_object = this_state.endBindingElement()
[all …]
/dports/devel/py-pyxb/PyXB-1.2.6/pyxb/utils/
H A Dsaxdom.py80 …(this_state, parent_state, ns_ctx, name_en) = super(_DOMSAXHandler, self).startElementNS(name, qna…
81 this_state.__attributes = NamedNodeMap()
85this_state.__attributes._addItem(Attr(expanded_name=attr_en, namespace_context=ns_ctx, value=value…
88 this_state = super(_DOMSAXHandler, self).endElementNS(name, qname)
89 ns_ctx = this_state.namespaceContext()
90 …pace_context=ns_ctx, expanded_name=this_state.expandedName(), attributes=this_state.__attributes, …
91 for info in this_state.content():
96 parent_state = this_state.parentState()
97 parent_state.addElementContent(this_state.location(), element, None)
/dports/irc/srvx/srvx-1.3.1/rx/
H A Drxanal.c577 struct rx_superstate * this_state; local
592 this_state = frame->state;
624 frame->state = this_state;
639 rx_unlock_superstate (frame->rx, this_state);
652 rx_unlock_superstate (frame->rx, this_state);
659 rx_unlock_superstate (frame->rx, this_state);
663 this_state = ((struct rx_superstate *)
669 rx_lock_superstate (frame->rx, this_state);
672 if (this_state->contents->is_final)
675 frame->state = this_state;
[all …]
/dports/devel/sol2/sol2-4.0.0-alpha/tests/runtime_tests/source/
H A Dusertypes.inheritance.multi.cpp227 a(sol::this_state ts, sol::this_environment) { in a()
233 sol::object get_property_lua(const char* name, sol::this_state) { in get_property_lua()
251 b(sol::this_state ts, sol::this_environment te, int) : a(ts, te) { in b()
260 b(sol::this_state ts, sol::this_environment te, int, int) : a(ts, te) { in b()
267 c(sol::this_state ts, sol::this_environment te, int ab) : b(ts, te, ab) { in c()
270 c(sol::this_state ts, sol::this_environment te, int ab, int bc) : b(ts, te, ab, bc) { in c()
283 …sol::constructors<b(sol::this_state, sol::this_environment, int), b(sol::this_state, sol::this_env…
293 …sol::constructors<c(sol::this_state, sol::this_environment, int), c(sol::this_state, sol::this_env…
H A Dvariadics.cpp34 self_cons_0(sol::variadic_args args, sol::this_state thisL) { in self_cons_0()
43 self_cons_1(sol::variadic_args args, sol::this_state thisL) { in self_cons_1()
52 static void init_self_cons_2(self_cons_2& mem, sol::variadic_args args, sol::this_state thisL) { in init_self_cons_2()
63 static void init_self_cons_3(self_cons_3* mem, sol::variadic_args args, sol::this_state thisL) { in init_self_cons_3()
83 lua.set_function("v", [](sol::this_state, sol::variadic_args va) -> structure { in __anon94242e450102() argument
109 lua.set_function("v", [](sol::this_state, sol::variadic_args, int, int) {}); in __anon94242e450202() argument
207 lua.set_function("f", [](sol::this_state ts, bool maybe) { in __anon94242e450802()
306 …ertype<self_cons_0>("foo0", sol::constructors<self_cons_0(sol::variadic_args, sol::this_state)>());
307 …ertype<self_cons_1>("foo1", sol::constructors<self_cons_1(sol::variadic_args, sol::this_state)>());
331 …= sol::overload([](sol::this_state, const std::string_view&, const std::string_view&, const std::s… in __anon94242e450c02() argument
[all …]
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/lalrpop-0.17.2/src/lr1/codegen/
H A Dascent.rs270 let this_state = &self.states[this_index.0]; in write_state_fn() localVariable
284 this_state.will_push().len() in write_state_fn()
290 this_state.will_produce() in write_state_fn()
293 for item in this_state.items.vec.iter() { in write_state_fn()
297 for (terminal, action) in &this_state.shifts { in write_state_fn()
304 for (nt, state) in &this_state.gotos { in write_state_fn()
320 for (terminal, &next_index) in &this_state.shifts { in write_state_fn()
335 let reductions: Multimap<_, Vec<_>> = this_state in write_state_fn()
372 this_state.shifts.contains_key(terminal) in write_state_fn()
373 || this_state in write_state_fn()
[all …]
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/lalrpop-0.16.3/src/lr1/codegen/
H A Dascent.rs270 let this_state = &self.states[this_index.0]; in write_state_fn() localVariable
284 this_state.will_push().len() in write_state_fn()
290 this_state.will_produce() in write_state_fn()
293 for item in this_state.items.vec.iter() { in write_state_fn()
297 for (terminal, action) in &this_state.shifts { in write_state_fn()
304 for (nt, state) in &this_state.gotos { in write_state_fn()
320 for (terminal, &next_index) in &this_state.shifts { in write_state_fn()
335 let reductions: Multimap<_, Vec<_>> = this_state in write_state_fn()
372 this_state.shifts.contains_key(terminal) || this_state in write_state_fn()
394 if fallthrough && !this_state.gotos.is_empty() { in write_state_fn()
[all …]
/dports/net/krill/krill-0.9.4/cargo-crates/lalrpop-0.19.6/src/lr1/codegen/
H A Dascent.rs270 let this_state = &self.states[this_index.0]; in write_state_fn() localVariable
284 this_state.will_push().len() in write_state_fn()
290 this_state.will_produce() in write_state_fn()
293 for item in this_state.items.vec.iter() { in write_state_fn()
297 for (terminal, action) in &this_state.shifts { in write_state_fn()
304 for (nt, state) in &this_state.gotos { in write_state_fn()
320 for (terminal, &next_index) in &this_state.shifts { in write_state_fn()
335 let reductions: Multimap<_, Vec<_>> = this_state in write_state_fn()
372 this_state.shifts.contains_key(terminal) in write_state_fn()
373 || this_state in write_state_fn()
[all …]
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/examples/
H A Dself_from_lua.cpp14 thing(sol::this_state ts) { in main()
28 void func(sol::this_state ts) const { in main()
46 sol::constructors<thing(sol::this_state)>(), in main()
/dports/devel/sol2/sol2-4.0.0-alpha/examples/source/
H A Dself_from_lua.cpp13 thing(sol::this_state ts) { in main()
24 void func(sol::this_state ts) const { in main()
41 …lua.new_usertype<thing>("thing", sol::constructors<thing(sol::this_state)>(), "func", &thing::func… in main()
/dports/emulators/mess/mame-mame0226/3rdparty/sol2/docs/source/api/
H A Dthis_state.rst1 this_state chapter
8 struct this_state;
17 lua.set_function("bark", []( sol::this_state s, int a, int b ){
25 lua.set_function("bark", []( int a, int b, sol::this_state s ){
/dports/emulators/mame/mame-mame0226/3rdparty/sol2/docs/source/api/
H A Dthis_state.rst1 this_state chapter
8 struct this_state;
17 lua.set_function("bark", []( sol::this_state s, int a, int b ){
25 lua.set_function("bark", []( int a, int b, sol::this_state s ){
/dports/lang/ocaml/ocaml-4.05.0/yacc/
H A Dlr0.c33 static core *this_state; variable
158 while (this_state) in generate_states()
160 closure(this_state->items, this_state->nitems); in generate_states()
168 this_state = this_state->next; in generate_states()
263 first_state = last_state = this_state = p; in initialize_states()
429 p->number = this_state->number; in save_shifts()
478 p->number = this_state->number; in save_reductions()
/dports/devel/byaccj/byaccj1.15/src/
H A Dlr0.c18 static core *this_state; variable
135 while (this_state) in generate_states()
137 closure(this_state->items, this_state->nitems); in generate_states()
145 this_state = this_state->next; in generate_states()
228 first_state = last_state = this_state = p; in initialize_states()
370 p->number = this_state->number; in save_shifts()
413 p->number = this_state->number; in save_reductions()
/dports/lang/mosml/mosml-ver-2.10.1/src/mosmlyac/
H A Dlr0.c17 static core *this_state; variable
135 while (this_state) in generate_states()
137 closure(this_state->items, this_state->nitems); in generate_states()
145 this_state = this_state->next; in generate_states()
239 first_state = last_state = this_state = p; in initialize_states()
403 p->number = this_state->number; in save_shifts()
452 p->number = this_state->number; in save_reductions()
/dports/lang/mono/mono-5.10.1.57/mcs/jay/
H A Dlr0.c56 static core *this_state; variable
173 while (this_state) in generate_states()
175 closure(this_state->items, this_state->nitems); in generate_states()
183 this_state = this_state->next; in generate_states()
279 first_state = last_state = this_state = p; in initialize_states()
445 p->number = this_state->number; in save_shifts()
494 p->number = this_state->number; in save_reductions()
/dports/devel/cscout/cscout-bd7dfac/btyacc/
H A Dlr0.c14 static core *this_state; variable
131 while (this_state) in generate_states()
133 closure(this_state->items, this_state->nitems); in generate_states()
141 this_state = this_state->next; in generate_states()
235 first_state = last_state = this_state = p; in initialize_states()
399 p->number = this_state->number; in save_shifts()
448 p->number = this_state->number; in save_reductions()
/dports/lang/ocaml-nox11/ocaml-4.05.0/yacc/
H A Dlr0.c33 static core *this_state; variable
158 while (this_state) in generate_states()
160 closure(this_state->items, this_state->nitems); in generate_states()
168 this_state = this_state->next; in generate_states()
263 first_state = last_state = this_state = p; in initialize_states()
429 p->number = this_state->number; in save_shifts()
478 p->number = this_state->number; in save_reductions()
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/gcc-4.1-20060728/gcc/
H A Dtree-eh.c828 if (this_state) in honor_protect_cleanup_actions()
887 if (this_state) in honor_protect_cleanup_actions()
1347 struct leh_state this_state; in lower_try_finally() local
1364 this_state.tf = &this_tf; in lower_try_finally()
1435 struct leh_state this_state; in lower_catch() local
1441 this_state.prev_try = try_region; in lower_catch()
1442 this_state.tf = state->tf; in lower_catch()
1494 struct leh_state this_state; in lower_eh_filter() local
1504 this_state = *state; in lower_eh_filter()
1530 struct leh_state this_state; in lower_cleanup() local
[all …]
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/docs/source/api/
H A Dthis_state.rst1 this_state chapter
8 struct this_state;
12 .. literalinclude:: ../../../examples/this_state.cpp
/dports/devel/sol2/sol2-4.0.0-alpha/documentation/source/api/
H A Dthis_state.rst1 this_state chapter
8 struct this_state;
12 .. literalinclude:: ../../../examples/source/this_state.cpp

12345678910>>...16