Home
last modified time | relevance | path

Searched +refs:root +refs:expand +refs:context +refs:frame +refs:id (Results 1 – 25 of 4250) sorted by relevance

12345678910>>...170

/dports/lang/racket-minimal/racket-8.3/src/expander/expand/
H A Ddefinition-context.rkt18 internal-definition-context-frame-id
64 (root-expand-context-frame-id ctx))
99 (define counter (root-expand-context-counter ctx))
298 #:parent root-expand-context
304 (or (root-expand-context-use-site-scopes ctx)
306 [frame-id #:parent root-expand-context
310 [(not intdefs) (root-expand-context-frame-id ctx)]
316 … (for/fold ([frame-id (and (not (eq? 'expression (expand-context-context ctx)))
317 (root-expand-context-frame-id ctx))])
321 [(and frame-id i-frame-id (not (eq? frame-id i-frame-id)))
[all …]
H A Droot-expand-context.rkt10 (provide (struct*-out root-expand-context)
11 make-root-expand-context
16 root-expand-context-encode-for-module
17 root-expand-context-decode-for-module)
19 ;; A `root-expand-context` is a subset of `expand-context` that is
23 (struct* root-expand-context
33 … * frame-id ; #f or a gensym to identify a binding frame; 'all matches any for use-site scopes
46 (root-expand-context self-mpi
54 (string->uninterned-symbol "root-frame") ; frame-id
85 (root-expand-context-frame-id ctx)
[all …]
H A Dcontext.rkt10 "free-id-set.rkt"
12 "root-expand-context.rkt"
42 (struct* expand-context root-expand-context
84 (expand-context (root-expand-context-self-mpi root-ctx)
91 (root-expand-context-frame-id root-ctx)
101 (root-expand-context-frame-id root-ctx) ; binding-layer
130 [self-mpi #:parent root-expand-context (root-expand-context-self-mpi root-ctx)]
137 [frame-id #:parent root-expand-context (root-expand-context-frame-id root-ctx)]
138 [counter #:parent root-expand-context (root-expand-context-counter root-ctx)]
139 [lift-key #:parent root-expand-context (root-expand-context-lift-key root-ctx)]
[all …]
H A Ddef-id.rkt8 "context.rkt"
9 "root-expand-context.rkt"
38 #:frame-id frame-id
63 (define b (make-module-binding self phase defined-sym #:frame-id frame-id
74 (or (bound-identifier=? id m-id phase)
89 (select-defined-syms-and-bind! tl-ids (root-expand-context-defined-syms ctx)
90 (root-expand-context-self-mpi ctx)
91 (expand-context-phase ctx)
92 (root-expand-context-all-scopes-stx ctx)
93 #:frame-id (root-expand-context-frame-id ctx)
[all …]
H A Dbody.rkt54 [post-expansion #:parent root-expand-context
58 [use-site-scopes #:parent root-expand-context (box null)]
59 [frame-id #:parent root-expand-context frame-id]
132 (define counter (root-expand-context-counter ctx))
136 #:frame-id frame-id #:in exp-body
182 (define counter (root-expand-context-counter ctx))
186 #:frame-id frame-id #:in exp-body
269 [use-site-scopes #:parent root-expand-context (box null)]
272 [post-expansion #:parent root-expand-context #f]))
301 #:frame-id frame-id #:ctx finish-ctx
[all …]
H A Dmain.rkt203 (root-expand-context-top-level-bind-scope ctx)
204 (add-scope s (root-expand-context-top-level-bind-scope ctx))))
453 [(and (root-expand-context-use-site-scopes ctx)
459 (matching-frame? (root-expand-context-frame-id ctx)
465 (define b (root-expand-context-use-site-scopes ctx))
475 (define (matching-frame? current-frame-id bind-frame-id)
476 (and current-frame-id
477 (or (eq? current-frame-id bind-frame-id)
486 (apply-post-expansion (root-expand-context-post-expansion ctx)
572 (root-expand-context-counter ctx)
[all …]
H A Dmodule.rkt134 (define root-ctx (make-root-expand-context
147 (define frame-id (root-expand-context-frame-id root-ctx))
153 #:root-expand-context root-ctx
158 (define ctx (struct*-copy expand-context (copy-root-expand-context init-ctx root-ctx)
175 (define defined-syms (root-expand-context-defined-syms root-ctx)) ; phase -> sym -> id
345 #:frame-id frame-id
419 [frame-id #:parent root-expand-context #f]
707 #:frame-id frame-id
800 #:frame-id frame-id
822 #:frame-id frame-id
[all …]
H A Dexpr.rkt43 (define counter (root-expand-context-counter ctx))
66 [frame-id #:parent root-expand-context #f]))
225 (define counter (root-expand-context-counter ctx))
230 #:frame-id frame-id #:in s
236 #:frame-id frame-id #:in s
336 (when frame-id
349 #:frame-id frame-id #:ctx rec-ctx
478 (define use-site-scopes (root-expand-context-use-site-scopes ctx))
618 (eq? (module-binding-module b) (root-expand-context-self-mpi ctx)))
647 (define tl-id (add-scope id (root-expand-context-top-level-bind-scope ctx)))
[all …]
/dports/lang/racket/racket-8.3/src/expander/expand/
H A Ddefinition-context.rkt18 internal-definition-context-frame-id
64 (root-expand-context-frame-id ctx))
99 (define counter (root-expand-context-counter ctx))
298 #:parent root-expand-context
304 (or (root-expand-context-use-site-scopes ctx)
306 [frame-id #:parent root-expand-context
310 [(not intdefs) (root-expand-context-frame-id ctx)]
316 … (for/fold ([frame-id (and (not (eq? 'expression (expand-context-context ctx)))
317 (root-expand-context-frame-id ctx))])
321 [(and frame-id i-frame-id (not (eq? frame-id i-frame-id)))
[all …]
H A Droot-expand-context.rkt10 (provide (struct*-out root-expand-context)
11 make-root-expand-context
16 root-expand-context-encode-for-module
17 root-expand-context-decode-for-module)
19 ;; A `root-expand-context` is a subset of `expand-context` that is
23 (struct* root-expand-context
33 … * frame-id ; #f or a gensym to identify a binding frame; 'all matches any for use-site scopes
46 (root-expand-context self-mpi
54 (string->uninterned-symbol "root-frame") ; frame-id
85 (root-expand-context-frame-id ctx)
[all …]
H A Dcontext.rkt10 "free-id-set.rkt"
12 "root-expand-context.rkt"
42 (struct* expand-context root-expand-context
84 (expand-context (root-expand-context-self-mpi root-ctx)
91 (root-expand-context-frame-id root-ctx)
101 (root-expand-context-frame-id root-ctx) ; binding-layer
130 [self-mpi #:parent root-expand-context (root-expand-context-self-mpi root-ctx)]
137 [frame-id #:parent root-expand-context (root-expand-context-frame-id root-ctx)]
138 [counter #:parent root-expand-context (root-expand-context-counter root-ctx)]
139 [lift-key #:parent root-expand-context (root-expand-context-lift-key root-ctx)]
[all …]
H A Ddef-id.rkt8 "context.rkt"
9 "root-expand-context.rkt"
38 #:frame-id frame-id
63 (define b (make-module-binding self phase defined-sym #:frame-id frame-id
74 (or (bound-identifier=? id m-id phase)
89 (select-defined-syms-and-bind! tl-ids (root-expand-context-defined-syms ctx)
90 (root-expand-context-self-mpi ctx)
91 (expand-context-phase ctx)
92 (root-expand-context-all-scopes-stx ctx)
93 #:frame-id (root-expand-context-frame-id ctx)
[all …]
H A Dbody.rkt54 [post-expansion #:parent root-expand-context
58 [use-site-scopes #:parent root-expand-context (box null)]
59 [frame-id #:parent root-expand-context frame-id]
132 (define counter (root-expand-context-counter ctx))
136 #:frame-id frame-id #:in exp-body
182 (define counter (root-expand-context-counter ctx))
186 #:frame-id frame-id #:in exp-body
269 [use-site-scopes #:parent root-expand-context (box null)]
272 [post-expansion #:parent root-expand-context #f]))
301 #:frame-id frame-id #:ctx finish-ctx
[all …]
H A Dmain.rkt203 (root-expand-context-top-level-bind-scope ctx)
204 (add-scope s (root-expand-context-top-level-bind-scope ctx))))
453 [(and (root-expand-context-use-site-scopes ctx)
459 (matching-frame? (root-expand-context-frame-id ctx)
465 (define b (root-expand-context-use-site-scopes ctx))
475 (define (matching-frame? current-frame-id bind-frame-id)
476 (and current-frame-id
477 (or (eq? current-frame-id bind-frame-id)
486 (apply-post-expansion (root-expand-context-post-expansion ctx)
572 (root-expand-context-counter ctx)
[all …]
H A Dmodule.rkt134 (define root-ctx (make-root-expand-context
147 (define frame-id (root-expand-context-frame-id root-ctx))
153 #:root-expand-context root-ctx
158 (define ctx (struct*-copy expand-context (copy-root-expand-context init-ctx root-ctx)
175 (define defined-syms (root-expand-context-defined-syms root-ctx)) ; phase -> sym -> id
345 #:frame-id frame-id
419 [frame-id #:parent root-expand-context #f]
707 #:frame-id frame-id
800 #:frame-id frame-id
822 #:frame-id frame-id
[all …]
H A Dexpr.rkt43 (define counter (root-expand-context-counter ctx))
66 [frame-id #:parent root-expand-context #f]))
225 (define counter (root-expand-context-counter ctx))
230 #:frame-id frame-id #:in s
236 #:frame-id frame-id #:in s
336 (when frame-id
349 #:frame-id frame-id #:ctx rec-ctx
478 (define use-site-scopes (root-expand-context-use-site-scopes ctx))
618 (eq? (module-binding-module b) (root-expand-context-self-mpi ctx)))
647 (define tl-id (add-scope id (root-expand-context-top-level-bind-scope ctx)))
[all …]
/dports/lang/racket-minimal/racket-8.3/src/expander/eval/
H A Dtop-level-instance.rkt7 "../expand/root-expand-context.rkt"
11 "../expand/env.rkt"
12 "../expand/require.rkt"
13 "../expand/require+provide.rkt")
22 top-level-bind!-id
23 (lambda (id mpi orig-phase phase-shift ns sym trans? trans-val)
26 #:frame-id (root-expand-context-frame-id
27 (namespace-get-root-expand-ctx ns))))
28 (add-binding! id b phase)
32 (maybe-install-free=id! trans-val id phase))]
[all …]
/dports/lang/racket/racket-8.3/src/expander/eval/
H A Dtop-level-instance.rkt7 "../expand/root-expand-context.rkt"
11 "../expand/env.rkt"
12 "../expand/require.rkt"
13 "../expand/require+provide.rkt")
22 top-level-bind!-id
23 (lambda (id mpi orig-phase phase-shift ns sym trans? trans-val)
26 #:frame-id (root-expand-context-frame-id
27 (namespace-get-root-expand-ctx ns))))
28 (add-binding! id b phase)
32 (maybe-install-free=id! trans-val id phase))]
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/extras/simpleperf/scripts/
H A Dreport.py98 self.context = common_report_context[:]
132 cur_event_report.context.append(line)
197 frame.pack(fill=BOTH, expand=1)
216 report_frame.pack(fill=BOTH, expand=1)
224 tree.pack(side=LEFT, fill=BOTH, expand=1)
237 id = tree.insert(
249 id = parent_id
263 id = tree.insert(id, 'end', None, values=[s], open=child_open,
279 root = Tk()
282 parent = root if i == 0 else Toplevel(root)
[all …]
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/
H A Drender_freestyle_svg.py215 row.prop(linestyle, "stroke_color_mode", expand=True)
274 row.prop(svg, "mode", expand=True)
281 row.prop(svg, "line_join_type", expand=True)
311 root = tree.getroot()
328 for j, frame in enumerate(frames):
335 frame.append(frame_anim)
338 indent_xml(root)
427 root = tree.getroot()
458 frame_group.attrib = {'id': id, 'inkscape:groupmode': 'frame', 'inkscape:label': id}
466 indent_xml(root)
[all …]
/dports/lang/racket-minimal/racket-8.3/src/bc/src/
H A Dstartup.inc12236 " root-expand-context/outer-frame-id)"
12437 "(root-expand-context-frame-id ctx_0)"
16229 "(root-expand-context-frame-id root-ctx_0)"
16239 "(root-expand-context-frame-id root-ctx_0)"
16274 "((frame-id27_0)(root-expand-context-frame-id root-ctx_0))"
46042 "(root-expand-context/outer-frame-id"
47068 "(root-expand-context/outer-frame-id"
52025 "(root-expand-context/outer-frame-id"
52149 "(root-expand-context/outer-frame-id"
69865 "(root-expand-context/outer-frame-id"
[all …]
/dports/lang/racket/racket-8.3/src/bc/src/
H A Dstartup.inc12236 " root-expand-context/outer-frame-id)"
12437 "(root-expand-context-frame-id ctx_0)"
16229 "(root-expand-context-frame-id root-ctx_0)"
16239 "(root-expand-context-frame-id root-ctx_0)"
16274 "((frame-id27_0)(root-expand-context-frame-id root-ctx_0))"
46042 "(root-expand-context/outer-frame-id"
47068 "(root-expand-context/outer-frame-id"
52025 "(root-expand-context/outer-frame-id"
52149 "(root-expand-context/outer-frame-id"
69865 "(root-expand-context/outer-frame-id"
[all …]
/dports/www/mediawiki137/mediawiki-1.37.1/includes/parser/
H A DParser.php1595 $text = $frame->expand( $dom );
2930 $text = $frame->expand( $dom, $flags );
3006 $titleWithSpaces = $frame->expand( $piece['title'] );
3053 $text = $this->expandMagicVariable( $id, $frame );
3173 $value = trim( $frame->expand( $bits['value'] ) );
3285 $text = $frame->expand( $text, PPFrame::RECOVER_ORIG );
3398 $allArgs[] = trim( $frame->expand( $v ) );
3885 $nameWithSpaces = $frame->expand( $piece['title'] );
3940 $name = $frame->expand( $params['name'] );
4400 $frame->expand( $node, PPFrame::RECOVER_ORIG )
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/macro-debugger/macro-debugger/
H A Dmacro-debugger.scrbl54 Expands the syntax (or S-expression) and opens a macro stepper frame
62 single module declaration, and opens a macro stepper frame for
70 Creates a macro stepper frame and starts a read-eval-print loop that
128 (lambda (id) (memq (syntax-e id) '(or #%app))))))
178 [#:id id identifier?])
214 (lambda (id) (eq? (syntax-e id) 'or))))
367 example (from racket root directory):
528 example (from racket root directory):
547 [#:show-context? show-context? boolean? #f])
564 more @racket[root] modules. If @racket[show-context?] is true, then
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/includes/parser/
H A DParser.php1553 $text = $frame->expand( $dom );
2887 $text = $frame->expand( $dom, $flags );
2963 $titleWithSpaces = $frame->expand( $piece['title'] );
3008 $text = $this->expandMagicVariable( $id, $frame );
3128 $value = trim( $frame->expand( $bits['value'] ) );
3229 $text = $frame->expand( $text, PPFrame::RECOVER_ORIG );
3331 $allArgs[] = trim( $frame->expand( $v ) );
3831 $nameWithSpaces = $frame->expand( $piece['title'] );
3885 $name = $frame->expand( $params['name'] );
4349 $frame->expand( $node, PPFrame::RECOVER_ORIG ) ) );
[all …]

12345678910>>...170