Home
last modified time | relevance | path

Searched refs:bce (Results 1 – 25 of 1572) sorted by relevance

12345678910>>...63

/dports/www/firefox-esr/firefox-91.8.0/js/src/frontend/
H A DEmitterScope.cpp116 if ((*bce)->parent) { in enclosing()
117 *bce = (*bce)->parent; in enclosing()
154 for (EmitterScope* es = enclosing(&bce); es; es = es->enclosing(&bce)) { in searchAndCache()
183 bce->cx, bce->compilationState.input, bce->parserAtoms(), name, hops)); in searchAndCache()
367 bce->cx, bce->compilationState, kind, bindings, firstFrameSlot, in enterLexical()
431 bce->cx, bce->compilationState, kind, bindings, firstFrameSlot, in enterClassBody()
484 bce->cx, bce->compilationState, scopeKind, in enterNamedLambda()
655 bce->cx, bce->compilationState, ScopeKind::FunctionBodyVar, in enterFunctionExtraBodyVar()
762 bce->cx, bce->compilationState, scopeKind, evalsc->bindings, in enterEval()
868 bce->cx, bce->compilationState, modulesc->bindings, in enterModule()
[all …]
H A DForOfLoopControl.cpp49 if (!bce->emitDupAt(slotFromTop)) { in emitEndCodeNeedingIteratorClose()
57 if (!bce->emit1(JSOp::Undefined)) { in emitEndCodeNeedingIteratorClose()
61 if (!bce->emit1(JSOp::StrictNe)) { in emitEndCodeNeedingIteratorClose()
88 if (!bce->emit1(JSOp::Throw)) { in emitEndCodeNeedingIteratorClose()
137 BytecodeEmitter* bce, in emitIteratorCloseInInnermostScopeWithTryNote() argument
140 if (!emitIteratorCloseInScope(bce, *bce->innermostEmitterScope(), in emitIteratorCloseInInnermostScopeWithTryNote()
171 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
177 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
181 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
192 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
[all …]
H A DBytecodeControlStructures.cpp24 : NestableControl(bce, kind) { in BreakableControl()
29 return bce->emitJumpTargetAndPatch(breaks); in patchBreaks()
39 : BreakableControl(bce, loopKind), tdzCache_(bce) { in LoopControl()
51 return bce->emitJumpTargetAndPatch(continues); in emitContinueTarget()
60 if (!bce->emit1(JSOp::Nop)) { in emitLoopHead()
73 head_ = {bce->bytecodeSection().offset()}; in emitLoopHead()
87 if (!bce->emitJumpNoFallthrough(op, &jump)) { in emitLoopEnd()
90 bce->patchJumpsToTarget(jump, head_); in emitLoopEnd()
95 if (!bce->emitJumpTarget(&breakTarget)) { in emitLoopEnd()
98 if (!patchBreaks(bce)) { in emitLoopEnd()
[all …]
H A DEmitterScope.h67 [[nodiscard]] bool ensureCache(BytecodeEmitter* bce);
69 [[nodiscard]] bool checkSlotLimits(BytecodeEmitter* bce,
76 [[nodiscard]] bool putNameInCache(BytecodeEmitter* bce,
83 EmitterScope* enclosing(BytecodeEmitter** bce) const;
97 [[nodiscard]] bool appendScopeNote(BytecodeEmitter* bce);
110 explicit EmitterScope(BytecodeEmitter* bce);
112 void dump(BytecodeEmitter* bce);
118 [[nodiscard]] bool enterNamedLambda(BytecodeEmitter* bce,
123 [[nodiscard]] bool enterGlobal(BytecodeEmitter* bce,
128 [[nodiscard]] bool enterWith(BytecodeEmitter* bce);
[all …]
H A DTDZCheckCache.cpp18 TDZCheckCache::TDZCheckCache(BytecodeEmitter* bce) in TDZCheckCache() argument
19 : Nestable<TDZCheckCache>(&bce->innermostTDZCheckCache), in TDZCheckCache()
20 cache_(bce->cx->frontendCollectionPool()) {} in TDZCheckCache()
22 bool TDZCheckCache::ensureCache(BytecodeEmitter* bce) { in ensureCache() argument
23 return cache_ || cache_.acquire(bce->cx); in ensureCache()
26 Maybe<MaybeCheckTDZ> TDZCheckCache::needsTDZCheck(BytecodeEmitter* bce, in needsTDZCheck() argument
28 if (!ensureCache(bce)) { in needsTDZCheck()
48 ReportOutOfMemory(bce->cx); in needsTDZCheck()
55 bool TDZCheckCache::noteTDZCheck(BytecodeEmitter* bce, in noteTDZCheck() argument
58 if (!ensureCache(bce)) { in noteTDZCheck()
[all …]
/dports/www/firefox/firefox-99.0/js/src/frontend/
H A DEmitterScope.cpp115 if ((*bce)->parent) { in enclosing()
116 *bce = (*bce)->parent; in enclosing()
153 for (EmitterScope* es = enclosing(&bce); es; es = es->enclosing(&bce)) { in searchAndCache()
182 bce->cx, bce->compilationState.input, bce->parserAtoms(), name, hops)); in searchAndCache()
366 bce->cx, bce->compilationState, kind, bindings, firstFrameSlot, in enterLexical()
430 bce->cx, bce->compilationState, kind, bindings, firstFrameSlot, in enterClassBody()
483 bce->cx, bce->compilationState, scopeKind, in enterNamedLambda()
654 bce->cx, bce->compilationState, ScopeKind::FunctionBodyVar, in enterFunctionExtraBodyVar()
761 bce->cx, bce->compilationState, scopeKind, evalsc->bindings, in enterEval()
867 bce->cx, bce->compilationState, modulesc->bindings, in enterModule()
[all …]
H A DForOfLoopControl.cpp46 if (!bce->emitDupAt(slotFromTop)) { in emitEndCodeNeedingIteratorClose()
54 if (!bce->emit1(JSOp::Undefined)) { in emitEndCodeNeedingIteratorClose()
58 if (!bce->emit1(JSOp::StrictNe)) { in emitEndCodeNeedingIteratorClose()
85 if (!bce->emit1(JSOp::Throw)) { in emitEndCodeNeedingIteratorClose()
134 BytecodeEmitter* bce, in emitIteratorCloseInInnermostScopeWithTryNote() argument
137 if (!emitIteratorCloseInScope(bce, *bce->innermostEmitterScope(), in emitIteratorCloseInInnermostScopeWithTryNote()
168 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
174 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
178 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
189 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
[all …]
H A DBytecodeControlStructures.cpp23 : NestableControl(bce, kind) { in BreakableControl()
28 return bce->emitJumpTargetAndPatch(breaks); in patchBreaks()
38 : BreakableControl(bce, loopKind), tdzCache_(bce) { in LoopControl()
50 return bce->emitJumpTargetAndPatch(continues); in emitContinueTarget()
59 if (!bce->emit1(JSOp::Nop)) { in emitLoopHead()
72 head_ = {bce->bytecodeSection().offset()}; in emitLoopHead()
86 if (!bce->emitJumpNoFallthrough(op, &jump)) { in emitLoopEnd()
89 bce->patchJumpsToTarget(jump, head_); in emitLoopEnd()
94 if (!bce->emitJumpTarget(&breakTarget)) { in emitLoopEnd()
97 if (!patchBreaks(bce)) { in emitLoopEnd()
[all …]
H A DEmitterScope.h66 [[nodiscard]] bool ensureCache(BytecodeEmitter* bce);
68 [[nodiscard]] bool checkSlotLimits(BytecodeEmitter* bce,
75 [[nodiscard]] bool putNameInCache(BytecodeEmitter* bce,
82 EmitterScope* enclosing(BytecodeEmitter** bce) const;
96 [[nodiscard]] bool appendScopeNote(BytecodeEmitter* bce);
109 explicit EmitterScope(BytecodeEmitter* bce);
111 void dump(BytecodeEmitter* bce);
117 [[nodiscard]] bool enterNamedLambda(BytecodeEmitter* bce,
122 [[nodiscard]] bool enterGlobal(BytecodeEmitter* bce,
127 [[nodiscard]] bool enterWith(BytecodeEmitter* bce);
[all …]
H A DTDZCheckCache.cpp18 TDZCheckCache::TDZCheckCache(BytecodeEmitter* bce) in TDZCheckCache() argument
19 : Nestable<TDZCheckCache>(&bce->innermostTDZCheckCache), in TDZCheckCache()
20 cache_(bce->cx->frontendCollectionPool()) {} in TDZCheckCache()
22 bool TDZCheckCache::ensureCache(BytecodeEmitter* bce) { in ensureCache() argument
23 return cache_ || cache_.acquire(bce->cx); in ensureCache()
26 Maybe<MaybeCheckTDZ> TDZCheckCache::needsTDZCheck(BytecodeEmitter* bce, in needsTDZCheck() argument
28 if (!ensureCache(bce)) { in needsTDZCheck()
48 ReportOutOfMemory(bce->cx); in needsTDZCheck()
55 bool TDZCheckCache::noteTDZCheck(BytecodeEmitter* bce, in noteTDZCheck() argument
58 if (!ensureCache(bce)) { in noteTDZCheck()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/frontend/
H A DEmitterScope.cpp116 if ((*bce)->parent) { in enclosing()
117 *bce = (*bce)->parent; in enclosing()
154 for (EmitterScope* es = enclosing(&bce); es; es = es->enclosing(&bce)) { in searchAndCache()
183 bce->cx, bce->compilationState.input, bce->parserAtoms(), name, hops)); in searchAndCache()
367 bce->cx, bce->compilationState, kind, bindings, firstFrameSlot, in enterLexical()
431 bce->cx, bce->compilationState, kind, bindings, firstFrameSlot, in enterClassBody()
484 bce->cx, bce->compilationState, scopeKind, in enterNamedLambda()
655 bce->cx, bce->compilationState, ScopeKind::FunctionBodyVar, in enterFunctionExtraBodyVar()
762 bce->cx, bce->compilationState, scopeKind, evalsc->bindings, in enterEval()
868 bce->cx, bce->compilationState, modulesc->bindings, in enterModule()
[all …]
H A DForOfLoopControl.cpp49 if (!bce->emitDupAt(slotFromTop)) { in emitEndCodeNeedingIteratorClose()
57 if (!bce->emit1(JSOp::Undefined)) { in emitEndCodeNeedingIteratorClose()
61 if (!bce->emit1(JSOp::StrictNe)) { in emitEndCodeNeedingIteratorClose()
88 if (!bce->emit1(JSOp::Throw)) { in emitEndCodeNeedingIteratorClose()
137 BytecodeEmitter* bce, in emitIteratorCloseInInnermostScopeWithTryNote() argument
140 if (!emitIteratorCloseInScope(bce, *bce->innermostEmitterScope(), in emitIteratorCloseInInnermostScopeWithTryNote()
171 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
177 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
181 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
192 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
[all …]
H A DBytecodeControlStructures.cpp24 : NestableControl(bce, kind) { in BreakableControl()
29 return bce->emitJumpTargetAndPatch(breaks); in patchBreaks()
39 : BreakableControl(bce, loopKind), tdzCache_(bce) { in LoopControl()
51 return bce->emitJumpTargetAndPatch(continues); in emitContinueTarget()
60 if (!bce->emit1(JSOp::Nop)) { in emitLoopHead()
73 head_ = {bce->bytecodeSection().offset()}; in emitLoopHead()
87 if (!bce->emitJumpNoFallthrough(op, &jump)) { in emitLoopEnd()
90 bce->patchJumpsToTarget(jump, head_); in emitLoopEnd()
95 if (!bce->emitJumpTarget(&breakTarget)) { in emitLoopEnd()
98 if (!patchBreaks(bce)) { in emitLoopEnd()
[all …]
H A DEmitterScope.h67 [[nodiscard]] bool ensureCache(BytecodeEmitter* bce);
69 [[nodiscard]] bool checkSlotLimits(BytecodeEmitter* bce,
76 [[nodiscard]] bool putNameInCache(BytecodeEmitter* bce,
83 EmitterScope* enclosing(BytecodeEmitter** bce) const;
97 [[nodiscard]] bool appendScopeNote(BytecodeEmitter* bce);
110 explicit EmitterScope(BytecodeEmitter* bce);
112 void dump(BytecodeEmitter* bce);
118 [[nodiscard]] bool enterNamedLambda(BytecodeEmitter* bce,
123 [[nodiscard]] bool enterGlobal(BytecodeEmitter* bce,
128 [[nodiscard]] bool enterWith(BytecodeEmitter* bce);
[all …]
H A DTDZCheckCache.cpp18 TDZCheckCache::TDZCheckCache(BytecodeEmitter* bce) in TDZCheckCache() argument
19 : Nestable<TDZCheckCache>(&bce->innermostTDZCheckCache), in TDZCheckCache()
20 cache_(bce->cx->frontendCollectionPool()) {} in TDZCheckCache()
22 bool TDZCheckCache::ensureCache(BytecodeEmitter* bce) { in ensureCache() argument
23 return cache_ || cache_.acquire(bce->cx); in ensureCache()
26 Maybe<MaybeCheckTDZ> TDZCheckCache::needsTDZCheck(BytecodeEmitter* bce, in needsTDZCheck() argument
28 if (!ensureCache(bce)) { in needsTDZCheck()
48 ReportOutOfMemory(bce->cx); in needsTDZCheck()
55 bool TDZCheckCache::noteTDZCheck(BytecodeEmitter* bce, in noteTDZCheck() argument
58 if (!ensureCache(bce)) { in noteTDZCheck()
[all …]
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/core/
H A Dtest_enums.py23 import bokeh.core.enums as bce # isort:skip namespace
96 e = bce.Enumeration()
101 e = bce.enumeration("foo", "bar", "baz")
102 assert isinstance(e, bce.Enumeration)
111 assert isinstance(e, bce.Enumeration)
120 assert isinstance(e, bce.Enumeration)
129 e = bce.enumeration("foo", "bar", "baz")
139 assert tuple(bce.Anchor) == (
179 assert tuple(bce.HatchPattern) == (
204 assert tuple(bce.LegendLocation) == (
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/frontend/
H A DEmitterScope.cpp70 bce->sc->isFunctionBox() && (bce->sc->asFunctionBox()->isGenerator() || in updateFrameFixedSlots()
106 if ((*bce)->parent) { in enclosing()
107 *bce = (*bce)->parent; in enclosing()
116 return es->scope(bce); in enclosingScope()
286 for (EmitterScope* es = enclosing(&bce); es; es = es->enclosing(&bce)) { in searchAndCache()
333 bce->bodyScopeIndex = bce->perScriptData().gcThingList().length(); in internEmptyGlobalScopeAsBody()
341 Rooted<AbstractScopePtr> enclosing(bce->cx, enclosingScope(bce)); in internScopeCreationData()
356 bce->bodyScopeIndex = bce->perScriptData().gcThingList().length(); in internBodyScopeCreationData()
457 if (!ensureCache(bce)) { in enterLexical()
520 if (!ensureCache(bce)) { in enterNamedLambda()
[all …]
H A DForOfLoopControl.cpp49 if (!bce->emitDupAt(slotFromTop)) { in emitEndCodeNeedingIteratorClose()
57 if (!bce->emit1(JSOp::Undefined)) { in emitEndCodeNeedingIteratorClose()
61 if (!bce->emit1(JSOp::StrictNe)) { in emitEndCodeNeedingIteratorClose()
88 if (!bce->emit1(JSOp::Throw)) { in emitEndCodeNeedingIteratorClose()
137 BytecodeEmitter* bce, in emitIteratorCloseInInnermostScopeWithTryNote() argument
140 if (!emitIteratorCloseInScope(bce, *bce->innermostEmitterScope(), in emitIteratorCloseInInnermostScopeWithTryNote()
171 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
177 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
181 if (!bce->emit1(JSOp::Pop)) { in emitPrepareForNonLocalJumpFromScope()
192 if (!bce->emit1(JSOp::Swap)) { in emitPrepareForNonLocalJumpFromScope()
[all …]
H A DBytecodeControlStructures.cpp24 : NestableControl(bce, kind) { in BreakableControl()
29 return bce->emitJumpTargetAndPatch(breaks); in patchBreaks()
35 label_(bce->cx, label), in LabelControl()
39 : BreakableControl(bce, loopKind), tdzCache_(bce) { in LoopControl()
51 return bce->emitJumpTargetAndPatch(continues); in emitContinueTarget()
60 if (!bce->emit1(JSOp::Nop)) { in emitLoopHead()
73 head_ = {bce->bytecodeSection().offset()}; in emitLoopHead()
90 bce->patchJumpsToTarget(jump, head_); in emitLoopEnd()
95 if (!bce->emitJumpTarget(&breakTarget)) { in emitLoopEnd()
98 if (!patchBreaks(bce)) { in emitLoopEnd()
[all …]
H A DEmitterScope.h65 MOZ_MUST_USE bool ensureCache(BytecodeEmitter* bce);
67 MOZ_MUST_USE bool checkSlotLimits(BytecodeEmitter* bce,
80 EmitterScope* enclosing(BytecodeEmitter** bce) const;
82 AbstractScopePtr enclosingScope(BytecodeEmitter* bce) const;
99 MOZ_MUST_USE bool appendScopeNote(BytecodeEmitter* bce);
106 explicit EmitterScope(BytecodeEmitter* bce);
108 void dump(BytecodeEmitter* bce);
116 MOZ_MUST_USE bool enterGlobal(BytecodeEmitter* bce,
121 MOZ_MUST_USE bool enterWith(BytecodeEmitter* bce);
134 AbstractScopePtr scope(const BytecodeEmitter* bce) const;
[all …]
H A DTDZCheckCache.cpp18 TDZCheckCache::TDZCheckCache(BytecodeEmitter* bce) in TDZCheckCache() argument
19 : Nestable<TDZCheckCache>(&bce->innermostTDZCheckCache), in TDZCheckCache()
20 cache_(bce->cx->frontendCollectionPool()) {} in TDZCheckCache()
22 bool TDZCheckCache::ensureCache(BytecodeEmitter* bce) { in ensureCache() argument
23 return cache_ || cache_.acquire(bce->cx); in ensureCache()
26 Maybe<MaybeCheckTDZ> TDZCheckCache::needsTDZCheck(BytecodeEmitter* bce, in needsTDZCheck() argument
28 if (!ensureCache(bce)) { in needsTDZCheck()
48 ReportOutOfMemory(bce->cx); in needsTDZCheck()
55 bool TDZCheckCache::noteTDZCheck(BytecodeEmitter* bce, JSAtom* name, in noteTDZCheck() argument
57 if (!ensureCache(bce)) { in noteTDZCheck()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Security/Test/Mono.Security.X509.Extensions/
H A DBasicConstraintsExtensionTest.cs36 Assert.IsFalse (bce.Critical, "Critical"); in Empty()
38 Assert.IsNotNull (bce.Name, "Name"); in Empty()
39 Assert.IsFalse (bce.Name == bce.Oid, "Name!=Oid"); in Empty()
48 Empty (bce); in Constructor_Empty()
56 Empty (bce); in Constructor_Extension()
64 Empty (bce); in Constructor_ASN1()
71 bce.Critical = true; in CertificateAuthority_Critical()
72 bce.CertificateAuthority = true; in CertificateAuthority_Critical()
73 bce.PathLenConstraint = 0; in CertificateAuthority_Critical()
86 bce.CertificateAuthority = true; in CertificateAuthority_NoPathLengthConstraint()
[all …]
/dports/x11-toolkits/lesstif/lesstif-0.95.2/lib/Xm-2.1/
H A DBaseClass.c91 if (!bce || !*bce) in _XmIsSlowSubclass()
339 bce = *ext; in _XmGetWrapperData()
1386 if (!bce || !*bce) in ClassPartInitLeafWrapper()
1425 if (!bce || !*bce) in ClassPartInitRootWrapper()
1478 if (!bce || !*bce) in InitializeLeafWrapper()
1536 if (!bce || !*bce) in InitializeRootWrapper()
1595 if (!bce || !*bce) in SetValuesLeafWrapper()
1649 if (!bce || !*bce) in SetValuesRootWrapper()
1718 if (!bce || !*bce) in GetValuesLeafWrapper()
1772 if (!bce || !*bce) in GetValuesRootWrapper()
[all …]
/dports/databases/p5-Genezzo/Genezzo-0.72/lib/Genezzo/BufCa/
H A DBufCa.pm112 unless (defined($bce))
119 push (@{$self->{bce_arr}}, $bce);
176 unless (defined($bce))
182 push (@{$self->{bce_arr}}, $bce);
199 unless (defined($bce) && (!$bce->_pin()))
241 my $bce;
244 $bce = $self->{bce_arr}->[$bnum];
245 $bce->_pin(1);
271 return \$bce;
313 my $bce = $self->{bce_arr}->[$i];
[all …]
/dports/databases/p5-Genezzo/Genezzo-0.72/t/
H A DBufCa1.t38 my $ref = $bce->{bigbuf};
40 if ($bce->_dirty())
56 if ($bce->_dirty())
64 if ($bce->_dirty(0))
81 if ($bce->_dirty())
143 my $bce = $$bceref;
147 if ($bce->_dirty())
163 if ($bce->_dirty())
188 if ($bce->_dirty())
203 $bce = $$bceref;
[all …]

12345678910>>...63