Home
last modified time | relevance | path

Searched refs:aCounter (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/dports/x11-toolkits/py-fltk/pyFltk-1.3.4.1/fltk/test/
H A Dcounters.py33 aCounter = None # type 'Fl_Counter' from '()' variable
39 aCounter.value(dial.value()) # code
45 global aCounter
57 aCounter = Fl_Counter(20, 155, 195, 25, "Counter")
58 aCounter.precision(3)
59 aCounter.pyChildren=[]
60 aCounter.label('Counter')
61 aCounter.callback(adjusterChanged)
62 o_1_0.pyChildren.append(aCounter)
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/media/webaudio/
H A DAudioParamTimeline.h74 float GetValueAtTime(TimeType aTime, size_t aCounter);
97 float AudioNodeInputValue(size_t aCounter) const;
105 AudioParamTimeline::GetValueAtTime(double aTime, size_t aCounter) in GetValueAtTime() argument
107 MOZ_ASSERT(!aCounter); in GetValueAtTime()
115 AudioParamTimeline::GetValueAtTime(int64_t aTime, size_t aCounter) in GetValueAtTime() argument
117 MOZ_ASSERT(aCounter < WEBAUDIO_BLOCK_SIZE); in GetValueAtTime()
118 MOZ_ASSERT(!aCounter || !HasSimpleValue()); in GetValueAtTime()
121 return BaseClass::GetValueAtTime(static_cast<int64_t>(aTime + aCounter)) + in GetValueAtTime()
122 (mStream ? AudioNodeInputValue(aCounter) : 0.0f); in GetValueAtTime()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/media/webaudio/
H A DAudioParamTimeline.h64 float GetValueAtTime(TimeType aTime, size_t aCounter);
84 float AudioNodeInputValue(size_t aCounter) const;
92 inline float AudioParamTimeline::GetValueAtTime(double aTime, size_t aCounter) { in GetValueAtTime() argument
93 MOZ_ASSERT(!aCounter); in GetValueAtTime()
102 size_t aCounter) { in GetValueAtTime() argument
103 MOZ_ASSERT(aCounter < WEBAUDIO_BLOCK_SIZE); in GetValueAtTime()
104 MOZ_ASSERT(!aCounter || !HasSimpleValue()); in GetValueAtTime()
107 return BaseClass::GetValueAtTime(static_cast<int64_t>(aTime + aCounter)) + in GetValueAtTime()
108 (mStream ? AudioNodeInputValue(aCounter) : 0.0f); in GetValueAtTime()
/dports/www/firefox-esr/firefox-91.8.0/dom/media/webaudio/
H A DAudioParamTimeline.h64 float GetValueAtTime(TimeType aTime, size_t aCounter);
84 float AudioNodeInputValue(size_t aCounter) const;
92 inline float AudioParamTimeline::GetValueAtTime(double aTime, size_t aCounter) { in GetValueAtTime() argument
93 MOZ_ASSERT(!aCounter); in GetValueAtTime()
102 size_t aCounter) { in GetValueAtTime() argument
103 MOZ_ASSERT(aCounter < WEBAUDIO_BLOCK_SIZE); in GetValueAtTime()
104 MOZ_ASSERT(!aCounter || !HasSimpleValue()); in GetValueAtTime()
107 return BaseClass::GetValueAtTime(static_cast<int64_t>(aTime + aCounter)) + in GetValueAtTime()
108 (mTrack ? AudioNodeInputValue(aCounter) : 0.0f); in GetValueAtTime()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/media/webaudio/
H A DAudioParamTimeline.h65 float GetValueAtTime(TimeType aTime, size_t aCounter);
85 float AudioNodeInputValue(size_t aCounter) const;
93 inline float AudioParamTimeline::GetValueAtTime(double aTime, size_t aCounter) { in GetValueAtTime() argument
94 MOZ_ASSERT(!aCounter); in GetValueAtTime()
103 size_t aCounter) { in GetValueAtTime() argument
104 MOZ_ASSERT(aCounter < WEBAUDIO_BLOCK_SIZE); in GetValueAtTime()
105 MOZ_ASSERT(!aCounter || !HasSimpleValue()); in GetValueAtTime()
108 return BaseClass::GetValueAtTime(static_cast<int64_t>(aTime + aCounter)) + in GetValueAtTime()
109 (mTrack ? AudioNodeInputValue(aCounter) : 0.0f); in GetValueAtTime()
/dports/www/firefox/firefox-99.0/dom/media/webaudio/
H A DAudioParamTimeline.h64 float GetValueAtTime(TimeType aTime, size_t aCounter);
84 float AudioNodeInputValue(size_t aCounter) const;
92 inline float AudioParamTimeline::GetValueAtTime(double aTime, size_t aCounter) { in GetValueAtTime() argument
93 MOZ_ASSERT(!aCounter); in GetValueAtTime()
102 size_t aCounter) { in GetValueAtTime() argument
103 MOZ_ASSERT(aCounter < WEBAUDIO_BLOCK_SIZE); in GetValueAtTime()
104 MOZ_ASSERT(!aCounter || !HasSimpleValue()); in GetValueAtTime()
107 return BaseClass::GetValueAtTime(static_cast<int64_t>(aTime + aCounter)) + in GetValueAtTime()
108 (mTrack ? AudioNodeInputValue(aCounter) : 0.0f); in GetValueAtTime()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/media/webaudio/
H A DAudioParamTimeline.h64 float GetValueAtTime(TimeType aTime, size_t aCounter);
84 float AudioNodeInputValue(size_t aCounter) const;
92 inline float AudioParamTimeline::GetValueAtTime(double aTime, size_t aCounter) { in GetValueAtTime() argument
93 MOZ_ASSERT(!aCounter); in GetValueAtTime()
102 size_t aCounter) { in GetValueAtTime() argument
103 MOZ_ASSERT(aCounter < WEBAUDIO_BLOCK_SIZE); in GetValueAtTime()
104 MOZ_ASSERT(!aCounter || !HasSimpleValue()); in GetValueAtTime()
107 return BaseClass::GetValueAtTime(static_cast<int64_t>(aTime + aCounter)) + in GetValueAtTime()
108 (mTrack ? AudioNodeInputValue(aCounter) : 0.0f); in GetValueAtTime()
/dports/www/firefox-esr/firefox-91.8.0/dom/xslt/xslt/
H A DtxXSLTNumberCounters.cpp48 txFormattedCounter*& aCounter) { in getCounterFor() argument
51 aCounter = 0; in getCounterFor()
58 aCounter = new txRomanCounter(ch == 'I'); in getCounterFor()
63 aCounter = new txAlphaCounter(ch); in getCounterFor()
69 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
72 MOZ_ASSERT(aCounter); in getCounterFor()
82 aCounter = new txDecimalCounter(length, aGroupSize, aGroupSeparator); in getCounterFor()
85 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
87 MOZ_ASSERT(aCounter); in getCounterFor()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/xslt/xslt/
H A DtxXSLTNumberCounters.cpp48 txFormattedCounter*& aCounter) { in getCounterFor() argument
51 aCounter = 0; in getCounterFor()
58 aCounter = new txRomanCounter(ch == 'I'); in getCounterFor()
63 aCounter = new txAlphaCounter(ch); in getCounterFor()
69 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
72 MOZ_ASSERT(aCounter); in getCounterFor()
82 aCounter = new txDecimalCounter(length, aGroupSize, aGroupSeparator); in getCounterFor()
85 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
87 MOZ_ASSERT(aCounter); in getCounterFor()
/dports/www/firefox/firefox-99.0/dom/xslt/xslt/
H A DtxXSLTNumberCounters.cpp48 txFormattedCounter*& aCounter) { in getCounterFor() argument
51 aCounter = 0; in getCounterFor()
58 aCounter = new txRomanCounter(ch == 'I'); in getCounterFor()
63 aCounter = new txAlphaCounter(ch); in getCounterFor()
69 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
72 MOZ_ASSERT(aCounter); in getCounterFor()
82 aCounter = new txDecimalCounter(length, aGroupSize, aGroupSeparator); in getCounterFor()
85 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
87 MOZ_ASSERT(aCounter); in getCounterFor()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/xslt/xslt/
H A DtxXSLTNumberCounters.cpp48 txFormattedCounter*& aCounter) { in getCounterFor() argument
51 aCounter = 0; in getCounterFor()
58 aCounter = new txRomanCounter(ch == 'I'); in getCounterFor()
63 aCounter = new txAlphaCounter(ch); in getCounterFor()
69 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
72 MOZ_ASSERT(aCounter); in getCounterFor()
82 aCounter = new txDecimalCounter(length, aGroupSize, aGroupSeparator); in getCounterFor()
85 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
87 MOZ_ASSERT(aCounter); in getCounterFor()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/xslt/xslt/
H A DtxXSLTNumberCounters.cpp56 txFormattedCounter*& aCounter) in getCounterFor() argument
60 aCounter = 0; in getCounterFor()
68 aCounter = new txRomanCounter(ch == 'I'); in getCounterFor()
73 aCounter = new txAlphaCounter(ch); in getCounterFor()
79 aCounter = new txDecimalCounter(1, aGroupSize, in getCounterFor()
83 MOZ_ASSERT(aCounter); in getCounterFor()
94 aCounter = new txDecimalCounter(length, aGroupSize, aGroupSeparator); in getCounterFor()
98 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
100 MOZ_ASSERT(aCounter); in getCounterFor()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/xslt/xslt/
H A DtxXSLTNumberCounters.cpp48 txFormattedCounter*& aCounter) { in getCounterFor() argument
51 aCounter = 0; in getCounterFor()
58 aCounter = new txRomanCounter(ch == 'I'); in getCounterFor()
63 aCounter = new txAlphaCounter(ch); in getCounterFor()
69 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
72 MOZ_ASSERT(aCounter); in getCounterFor()
82 aCounter = new txDecimalCounter(length, aGroupSize, aGroupSeparator); in getCounterFor()
85 aCounter = new txDecimalCounter(1, aGroupSize, aGroupSeparator); in getCounterFor()
87 MOZ_ASSERT(aCounter); in getCounterFor()
/dports/cad/opencascade/opencascade-7.6.0/inc/
H A DLDOM_DeclareSequence.hxx149 Standard_Integer aCounter; \
154 aCounter = anI - 1; \
157 aCounter = Abs (anI - myICur); \
158 if (anI <= aCounter) { \
160 aCounter = anI - 1; \
162 }else if (myLength - anI < aCounter) { \
164 aCounter = myLength - anI; \
169 while (aCounter--) aCurrent = aCurrent -> myNext; \
171 while (aCounter--) aCurrent = aCurrent -> myPrev; \
/dports/cad/opencascade/opencascade-7.6.0/src/LDOM/
H A DLDOM_DeclareSequence.hxx149 Standard_Integer aCounter; \
154 aCounter = anI - 1; \
157 aCounter = Abs (anI - myICur); \
158 if (anI <= aCounter) { \
160 aCounter = anI - 1; \
162 }else if (myLength - anI < aCounter) { \
164 aCounter = myLength - anI; \
169 while (aCounter--) aCurrent = aCurrent -> myNext; \
171 while (aCounter--) aCurrent = aCurrent -> myPrev; \
/dports/devel/py-cadquery-pywrap/pywrap-e8c7bc9/opencascade/
H A DLDOM_DeclareSequence.hxx149 Standard_Integer aCounter; \
154 aCounter = anI - 1; \
157 aCounter = Abs (anI - myICur); \
158 if (anI <= aCounter) { \
160 aCounter = anI - 1; \
162 }else if (myLength - anI < aCounter) { \
164 aCounter = myLength - anI; \
169 while (aCounter--) aCurrent = aCurrent -> myNext; \
171 while (aCounter--) aCurrent = aCurrent -> myPrev; \
/dports/lang/spidermonkey78/firefox-78.9.0/xpcom/tests/gtest/
H A DTestThreadManager.cpp22 WaitCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in WaitCondition() argument
23 : mCounter(aCounter), mMaxCount(aMaxCount) {} in WaitCondition()
62 explicit CountRunnable(Atomic<uint32_t>& aCounter) in CountRunnable() argument
63 : Runnable("CountRunnable"), mCounter(aCounter) {} in CountRunnable()
102 ErrorCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in ErrorCondition() argument
103 : mCounter(aCounter), mMaxCount(aMaxCount) {} in ErrorCondition()
/dports/lang/spidermonkey60/firefox-60.9.0/xpcom/tests/gtest/
H A DTestThreadManager.cpp23 WaitCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in WaitCondition() argument
24 : mCounter(aCounter) in WaitCondition()
77 explicit CountRunnable(Atomic<uint32_t>& aCounter) in CountRunnable() argument
79 , mCounter(aCounter) in CountRunnable()
122 ErrorCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in ErrorCondition() argument
123 : mCounter(aCounter) in ErrorCondition()
/dports/mail/thunderbird/thunderbird-91.8.0/xpcom/tests/gtest/
H A DTestThreadManager.cpp23 WaitCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in WaitCondition() argument
24 : mCounter(aCounter), mMaxCount(aMaxCount) {} in WaitCondition()
65 explicit CountRunnable(Atomic<uint32_t>& aCounter) in CountRunnable() argument
66 : Runnable("CountRunnable"), mCounter(aCounter) {} in CountRunnable()
105 ErrorCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in ErrorCondition() argument
106 : mCounter(aCounter), mMaxCount(aMaxCount) {} in ErrorCondition()
/dports/www/firefox/firefox-99.0/xpcom/tests/gtest/
H A DTestThreadManager.cpp23 WaitCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in WaitCondition() argument
24 : mCounter(aCounter), mMaxCount(aMaxCount) {} in WaitCondition()
65 explicit CountRunnable(Atomic<uint32_t>& aCounter) in CountRunnable() argument
66 : Runnable("CountRunnable"), mCounter(aCounter) {} in CountRunnable()
105 ErrorCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in ErrorCondition() argument
106 : mCounter(aCounter), mMaxCount(aMaxCount) {} in ErrorCondition()
/dports/www/firefox-esr/firefox-91.8.0/xpcom/tests/gtest/
H A DTestThreadManager.cpp23 WaitCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in WaitCondition() argument
24 : mCounter(aCounter), mMaxCount(aMaxCount) {} in WaitCondition()
65 explicit CountRunnable(Atomic<uint32_t>& aCounter) in CountRunnable() argument
66 : Runnable("CountRunnable"), mCounter(aCounter) {} in CountRunnable()
105 ErrorCondition(Atomic<uint32_t>& aCounter, uint32_t aMaxCount) in ErrorCondition() argument
106 : mCounter(aCounter), mMaxCount(aMaxCount) {} in ErrorCondition()
/dports/www/firefox-esr/firefox-91.8.0/mozglue/baseprofiler/public/
H A DBaseProfilerCounts.h28 MFBT_API void profiler_add_sampled_counter(BaseProfilerCount* aCounter);
29 MFBT_API void profiler_remove_sampled_counter(BaseProfilerCount* aCounter);
82 BaseProfilerCount(const char* aLabel, ProfilerAtomicSigned* aCounter, in BaseProfilerCount() argument
88 mCounter(aCounter), in BaseProfilerCount()
101 void Sample(int64_t& aCounter, uint64_t& aNumber) { in Sample() argument
104 aCounter = *mCounter; in Sample()
/dports/lang/spidermonkey78/firefox-78.9.0/tools/profiler/public/
H A DProfilerCounts.h24 void profiler_add_sampled_counter(BaseProfilerCount* aCounter);
25 void profiler_remove_sampled_counter(BaseProfilerCount* aCounter);
80 BaseProfilerCount(const char* aLabel, ProfilerAtomicSigned* aCounter, in BaseProfilerCount() argument
86 mCounter(aCounter), in BaseProfilerCount()
102 virtual void Sample(int64_t& aCounter, uint64_t& aNumber) { in Sample() argument
105 aCounter = *mCounter; in Sample()
/dports/mail/thunderbird/thunderbird-91.8.0/tools/profiler/public/
H A DProfilerCounts.h24 void profiler_add_sampled_counter(BaseProfilerCount* aCounter);
25 void profiler_remove_sampled_counter(BaseProfilerCount* aCounter);
80 BaseProfilerCount(const char* aLabel, ProfilerAtomicSigned* aCounter, in BaseProfilerCount() argument
86 mCounter(aCounter), in BaseProfilerCount()
102 virtual void Sample(int64_t& aCounter, uint64_t& aNumber) { in Sample() argument
105 aCounter = *mCounter; in Sample()
/dports/www/firefox/firefox-99.0/tools/profiler/public/
H A DProfilerCounts.h24 void profiler_add_sampled_counter(BaseProfilerCount* aCounter);
25 void profiler_remove_sampled_counter(BaseProfilerCount* aCounter);
80 BaseProfilerCount(const char* aLabel, ProfilerAtomicSigned* aCounter, in BaseProfilerCount() argument
86 mCounter(aCounter), in BaseProfilerCount()
102 virtual void Sample(int64_t& aCounter, uint64_t& aNumber) { in Sample() argument
105 aCounter = *mCounter; in Sample()

12345678910>>...13