Home
last modified time | relevance | path

Searched refs:ScopeIndex (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/jsparagus-stencil/src/
H A Dscope.rs181 pub enclosing: ScopeIndex,
221 pub enclosing: ScopeIndex,
231 enclosing: ScopeIndex, in new() argument
249 enclosing: ScopeIndex, in new_block() argument
262 enclosing: ScopeIndex, in new_function_lexical() argument
336 pub enclosing: ScopeIndex,
375 Alias(ScopeIndex),
385 pub struct ScopeIndex { struct
388 impl ScopeIndex { impl
463 global: ScopeIndex,
[all …]
H A Dgcthings.rs3 use crate::scope::ScopeIndex;
13 Scope(ScopeIndex),
65 pub fn push_scope(&mut self, scope_index: ScopeIndex) -> GCThingIndex { in push_scope()
/dports/www/firefox/firefox-99.0/third_party/rust/jsparagus-stencil/src/
H A Dscope.rs256 pub enclosing: ScopeIndex,
263 enclosing: ScopeIndex, in new() argument
304 pub enclosing: ScopeIndex,
314 enclosing: ScopeIndex, in new() argument
332 enclosing: ScopeIndex, in new_block() argument
345 enclosing: ScopeIndex, in new_function_lexical() argument
478 Alias(ScopeIndex),
488 pub struct ScopeIndex { struct
491 impl ScopeIndex { implementation
566 global: ScopeIndex,
[all …]
H A Dgcthings.rs2 use crate::scope::ScopeIndex;
14 Scope(ScopeIndex),
66 pub fn push_scope(&mut self, scope_index: ScopeIndex) -> GCThingIndex { in push_scope()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/jsparagus-stencil/src/
H A Dscope.rs256 pub enclosing: ScopeIndex,
263 enclosing: ScopeIndex, in new() argument
304 pub enclosing: ScopeIndex,
314 enclosing: ScopeIndex, in new() argument
332 enclosing: ScopeIndex, in new_block() argument
345 enclosing: ScopeIndex, in new_function_lexical() argument
478 Alias(ScopeIndex),
488 pub struct ScopeIndex { struct
491 impl ScopeIndex { argument
566 global: ScopeIndex,
[all …]
H A Dgcthings.rs2 use crate::scope::ScopeIndex;
14 Scope(ScopeIndex),
66 pub fn push_scope(&mut self, scope_index: ScopeIndex) -> GCThingIndex { in push_scope()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/jsparagus-stencil/src/
H A Dscope.rs256 pub enclosing: ScopeIndex,
263 enclosing: ScopeIndex, in new() argument
304 pub enclosing: ScopeIndex,
314 enclosing: ScopeIndex, in new() argument
332 enclosing: ScopeIndex, in new_block() argument
345 enclosing: ScopeIndex, in new_function_lexical() argument
478 Alias(ScopeIndex),
488 pub struct ScopeIndex { struct
491 impl ScopeIndex { argument
566 global: ScopeIndex,
[all …]
H A Dgcthings.rs2 use crate::scope::ScopeIndex;
14 Scope(ScopeIndex),
66 pub fn push_scope(&mut self, scope_index: ScopeIndex) -> GCThingIndex { in push_scope()
/dports/www/firefox-esr/firefox-91.8.0/js/src/frontend/
H A DAbstractScopePtr.h33 class ScopeIndex : public frontend::TypedIndex<Scope> {
41 static constexpr ScopeIndex invalid() { return ScopeIndex(InvalidIndex); } in invalid()
55 ScopeIndex index_;
63 ScopeIndex index) in AbstractScopePtr()
68 return AbstractScopePtr(compilationState, ScopeIndex::invalid()); in compilationEnclosingScope()
H A DStencil.h236 ScopeIndex enclosing_;
276 : enclosing_(enclosing.valueOr(ScopeIndex(0))),
303 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
308 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
313 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
320 ScopeIndex* index);
332 ScopeIndex* index);
343 ScopeIndex* index);
352 ScopeIndex enclosing() const { in enclosing()
689 explicit TaggedScriptThingIndex(ScopeIndex index) in TaggedScriptThingIndex()
[all …]
H A DEmitterScope.h85 mozilla::Maybe<ScopeIndex> enclosingScopeIndex(BytecodeEmitter* bce) const;
93 [[nodiscard]] bool internScopeStencil(BytecodeEmitter* bce, ScopeIndex index);
96 ScopeIndex index);
142 mozilla::Maybe<ScopeIndex> scopeIndex(const BytecodeEmitter* bce) const;
H A DEmitterScope.cpp124 mozilla::Maybe<ScopeIndex> EmitterScope::enclosingScopeIndex( in enclosingScopeIndex()
365 ScopeIndex scopeIndex; in enterLexical()
429 ScopeIndex scopeIndex; in enterClassBody()
482 ScopeIndex scopeIndex; in enterNamedLambda()
582 ScopeIndex scopeIndex; in enterFunction()
653 ScopeIndex scopeIndex; in enterFunctionExtraBodyVar()
707 ScopeIndex scopeIndex; in enterGlobal()
760 ScopeIndex scopeIndex; in enterEval()
866 ScopeIndex scopeIndex; in enterModule()
889 ScopeIndex scopeIndex; in enterWith()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/frontend/
H A DAbstractScopePtr.h33 class ScopeIndex : public frontend::TypedIndex<Scope> {
41 static constexpr ScopeIndex invalid() { return ScopeIndex(InvalidIndex); } in invalid()
55 ScopeIndex index_;
63 ScopeIndex index) in AbstractScopePtr()
68 return AbstractScopePtr(compilationState, ScopeIndex::invalid()); in compilationEnclosingScope()
H A DStencil.h236 ScopeIndex enclosing_;
276 : enclosing_(enclosing.valueOr(ScopeIndex(0))),
303 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
308 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
313 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
320 ScopeIndex* index);
332 ScopeIndex* index);
343 ScopeIndex* index);
352 ScopeIndex enclosing() const { in enclosing()
689 explicit TaggedScriptThingIndex(ScopeIndex index) in TaggedScriptThingIndex()
[all …]
H A DEmitterScope.h85 mozilla::Maybe<ScopeIndex> enclosingScopeIndex(BytecodeEmitter* bce) const;
93 [[nodiscard]] bool internScopeStencil(BytecodeEmitter* bce, ScopeIndex index);
96 ScopeIndex index);
142 mozilla::Maybe<ScopeIndex> scopeIndex(const BytecodeEmitter* bce) const;
H A DEmitterScope.cpp124 mozilla::Maybe<ScopeIndex> EmitterScope::enclosingScopeIndex( in enclosingScopeIndex()
365 ScopeIndex scopeIndex; in enterLexical()
429 ScopeIndex scopeIndex; in enterClassBody()
482 ScopeIndex scopeIndex; in enterNamedLambda()
582 ScopeIndex scopeIndex; in enterFunction()
653 ScopeIndex scopeIndex; in enterFunctionExtraBodyVar()
707 ScopeIndex scopeIndex; in enterGlobal()
760 ScopeIndex scopeIndex; in enterEval()
866 ScopeIndex scopeIndex; in enterModule()
889 ScopeIndex scopeIndex; in enterWith()
[all …]
/dports/www/firefox/firefox-99.0/js/src/frontend/
H A DStencil.h233 ScopeIndex enclosing_;
276 : enclosing_(enclosing.valueOr(ScopeIndex(0))),
303 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
308 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
313 mozilla::Maybe<ScopeIndex> enclosing, ScopeIndex* index);
320 ScopeIndex* index);
332 ScopeIndex* index);
343 ScopeIndex* index);
352 ScopeIndex enclosing() const { in enclosing()
746 explicit TaggedScriptThingIndex(ScopeIndex index) in TaggedScriptThingIndex()
[all …]
H A DScopeIndex.h18 class ScopeIndex : public frontend::TypedIndex<Scope> {
26 static constexpr ScopeIndex invalid() { return ScopeIndex(InvalidIndex); } in invalid()
H A DAbstractScopePtr.h35 ScopeIndex index_;
43 ScopeIndex index) in AbstractScopePtr()
48 return AbstractScopePtr(compilationState, ScopeIndex::invalid()); in compilationEnclosingScope()
H A DEmitterScope.h84 mozilla::Maybe<ScopeIndex> enclosingScopeIndex(BytecodeEmitter* bce) const;
92 [[nodiscard]] bool internScopeStencil(BytecodeEmitter* bce, ScopeIndex index);
95 ScopeIndex index);
141 mozilla::Maybe<ScopeIndex> scopeIndex(const BytecodeEmitter* bce) const;
H A DEmitterScope.cpp123 mozilla::Maybe<ScopeIndex> EmitterScope::enclosingScopeIndex( in enclosingScopeIndex()
364 ScopeIndex scopeIndex; in enterLexical()
428 ScopeIndex scopeIndex; in enterClassBody()
481 ScopeIndex scopeIndex; in enterNamedLambda()
581 ScopeIndex scopeIndex; in enterFunction()
652 ScopeIndex scopeIndex; in enterFunctionExtraBodyVar()
706 ScopeIndex scopeIndex; in enterGlobal()
759 ScopeIndex scopeIndex; in enterEval()
865 ScopeIndex scopeIndex; in enterModule()
888 ScopeIndex scopeIndex; in enterWith()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/jsparagus-scope/src/
H A Dbuilder.rs45 ScopeDataMap, ScopeIndex, VarScopeData,
339 scope_index: ScopeIndex,
345 fn new(scope_index: ScopeIndex) -> Self { in new()
531 scope_index: ScopeIndex,
640 scope_index: ScopeIndex,
792 scope_index: ScopeIndex,
976 enclosing: ScopeIndex, in into_scope_data_set() argument
1291 var_scope_index: ScopeIndex,
1292 lexical_scope_index: ScopeIndex,
1298 fn new(var_scope_index: ScopeIndex, lexical_scope_index: ScopeIndex) -> Self { in new() argument
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/frontend/
H A DStencil.h244 Handle<AbstractScopePtr> enclosing, ScopeIndex* index);
250 Handle<AbstractScopePtr> enclosing, ScopeIndex* index);
255 Handle<AbstractScopePtr> enclosing, ScopeIndex* index);
260 ScopeIndex* index);
265 Handle<AbstractScopePtr> enclosing, ScopeIndex* index);
271 Handle<AbstractScopePtr> enclosing, ScopeIndex* index);
275 Handle<AbstractScopePtr> enclosing, ScopeIndex* index);
336 ObjLiteralCreationData, RegExpIndex, ScopeIndex,
/dports/www/firefox/firefox-99.0/third_party/rust/jsparagus-scope/src/
H A Dbuilder.rs357 owner_scope_index: ScopeIndex,
380 owner_scope_index: ScopeIndex, in push() argument
514 scope_index: ScopeIndex,
814 scope_index: ScopeIndex,
865 enclosing: ScopeIndex, in into_scope_data() argument
933 scope_index: ScopeIndex,
1294 scope_index: ScopeIndex,
1415 enclosing: ScopeIndex, in into_scope_data_set() argument
1881 var_scope_index: ScopeIndex,
1886 fn new(var_scope_index: ScopeIndex, lexical_scope_index: ScopeIndex) -> Self { in new() argument
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/jsparagus-scope/src/
H A Dbuilder.rs357 owner_scope_index: ScopeIndex,
380 owner_scope_index: ScopeIndex, in push() argument
514 scope_index: ScopeIndex,
814 scope_index: ScopeIndex,
865 enclosing: ScopeIndex, in into_scope_data() argument
933 scope_index: ScopeIndex,
1294 scope_index: ScopeIndex,
1415 enclosing: ScopeIndex, in into_scope_data_set() argument
1881 var_scope_index: ScopeIndex,
1886 fn new(var_scope_index: ScopeIndex, lexical_scope_index: ScopeIndex) -> Self { in new() argument
[all …]

12345678910>>...14