Searched defs:phase (Results 1 - 25 of 128) sorted by relevance

123456

/external/walt/ios/WALT/
H A DWALTTouch.h21 @property (nonatomic, assign) UITouchPhase phase; variable
/external/skia/tests/
H A DAsADashTest.cpp26 const SkScalar phase = 2.0; local
27 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase));
36 const SkScalar phase = 2.0; local
38 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase));
45 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
58 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
H A DDashPathEffectTest.cpp22 SkScalar phase = SK_ScalarInfinity; // Used to force a nonsense effect. local
23 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, count, phase));
/external/skqp/tests/
H A DAsADashTest.cpp24 const SkScalar phase = 2.0; local
25 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase));
34 const SkScalar phase = 2.0; local
36 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase));
43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
56 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
H A DDashPathEffectTest.cpp22 SkScalar phase = SK_ScalarInfinity; // Used to force a nonsense effect. local
23 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, count, phase));
/external/proguard/src/proguard/gui/splash/
H A DSawToothTiming.java31 private final long phase; field in class:SawToothTiming
37 * @param phase the phase of the cycle, which is added to the actual time.
39 public SawToothTiming(long period, long phase) argument
42 this.phase = phase;
51 return (double)((time + phase) % period) / (double)period;
H A DSineTiming.java31 private final long phase; field in class:SineTiming
37 * @param phase the phase of the cycle, which is added to the actual time.
39 public SineTiming(long period, long phase) argument
42 this.phase = phase;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
/external/replicaisland/src/com/replica/replicaisland/
H A DPhasedObject.java20 * A basic object that adds an execution phase. When PhasedObjects are combined with
21 * PhasedObjectManagers, objects within the manager will be updated by phase.
25 public int phase; // This is public because the phased is accessed extremely often, so much field in class:PhasedObject
38 phase = phaseValue;
H A DPhasedObjectManager.java30 private PhasedObject mSearchDummy; // A dummy object allocated up-front for searching by phase.
71 public BaseObject find(int phase) { argument
72 mSearchDummy.setPhase(phase);
91 result = ((PhasedObject) object1).phase - ((PhasedObject) object2).phase;
/external/skia/gm/
H A Dstroketext.cpp55 const SkScalar phase = 0; local
59 p.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), phase));
/external/skia/src/core/
H A DSkATrace.cpp34 SkEventTracer::Handle SkATrace::addTraceEvent(char phase, argument
44 if (TRACE_EVENT_PHASE_COMPLETE == phase ||
45 TRACE_EVENT_PHASE_INSTANT == phase) {
49 if (TRACE_EVENT_PHASE_INSTANT == phase) {
/external/skqp/gm/
H A Dstroketext.cpp55 const SkScalar phase = 0; local
59 p.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), phase));
/external/skqp/src/core/
H A DSkATrace.cpp34 SkEventTracer::Handle SkATrace::addTraceEvent(char phase, argument
44 if (TRACE_EVENT_PHASE_COMPLETE == phase ||
45 TRACE_EVENT_PHASE_INSTANT == phase) {
49 if (TRACE_EVENT_PHASE_INSTANT == phase) {
/external/tensorflow/tensorflow/core/common_runtime/
H A Doptimization_registry.cc28 Grouping grouping, int phase, std::unique_ptr<GraphOptimizationPass> pass) {
29 groups_[grouping][phase].push_back(std::move(pass));
36 for (auto& phase : group->second) {
37 VLOG(1) << "Running optimization phase " << phase.first;
38 for (auto& pass : phase.second) {
27 Register( Grouping grouping, int phase, std::unique_ptr<GraphOptimizationPass> pass) argument
/external/curl/tests/libtest/
H A Dlib597.c56 int phase; local
67 for(phase = CONNECT_ONLY_PHASE; phase < LAST_PHASE; ++phase) {
74 /* enable 'CONNECT_ONLY' option when in connect phase */
75 if(phase == CONNECT_ONLY_PHASE)
78 /* enable 'NOBODY' option to send 'QUIT' command in quit phase */
79 if(phase == QUIT_PHASE) {
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_allstates.cpp35 void CPDF_AllStates::SetLineDash(CPDF_Array* pArray, float phase, float scale) { argument
36 m_GraphState.SetLineDash(pArray, phase, scale);
/external/skia/tools/trace/
H A DSkDebugfTracer.cpp11 SkEventTracer::Handle SkDebugfTracer::addTraceEvent(char phase, argument
67 bool open = (phase == TRACE_EVENT_PHASE_COMPLETE);
/external/skqp/tools/trace/
H A DSkDebugfTracer.cpp11 SkEventTracer::Handle SkDebugfTracer::addTraceEvent(char phase, argument
67 bool open = (phase == TRACE_EVENT_PHASE_COMPLETE);
/external/icu/icu4c/source/tools/gennorm2/
H A Dn2builder.h104 int32_t phase; member in class:Normalizer2DataBuilder
/external/libopus/celt/tests/
H A Dtest_unit_dft.c57 double phase = -2*M_PI*bin*k/nfft; local
58 double re = cos(phase);
59 double im = sin(phase);
/external/pdfium/core/fxge/
H A Dcfx_graphstate.cpp22 void CFX_GraphState::SetLineDash(CPDF_Array* pArray, float phase, float scale) { argument
24 pData->m_DashPhase = phase * scale;
/external/skia/samplecode/
H A DSamplePathEffects.cpp29 static sk_sp<SkPathEffect> make_pe(int flags, SkScalar phase) { argument
41 auto outer = SkPath1DPathEffect::Make(path, 12, phase, SkPath1DPathEffect::kRotate_Style);
51 static sk_sp<SkPathEffect> make_warp_pe(SkScalar phase) { argument
61 path, 12, phase, SkPath1DPathEffect::kMorph_Style);
/external/skqp/samplecode/
H A DSamplePathEffects.cpp29 static sk_sp<SkPathEffect> make_pe(int flags, SkScalar phase) { argument
41 auto outer = SkPath1DPathEffect::Make(path, 12, phase, SkPath1DPathEffect::kRotate_Style);
51 static sk_sp<SkPathEffect> make_warp_pe(SkScalar phase) { argument
61 path, 12, phase, SkPath1DPathEffect::kMorph_Style);
/external/v8/src/compiler/
H A Dgraph-visualizer.h28 const char* phase,
53 AsC1V(const char* phase, const Schedule* schedule, argument
59 phase_(phase) {}
68 const char* phase, const RegisterAllocationData* data = nullptr)
69 : phase_(phase), data_(data) {}
67 AsC1VRegisterAllocationData( const char* phase, const RegisterAllocationData* data = nullptr) argument
/external/webrtc/webrtc/base/
H A Devent_tracer_unittest.cc49 static void AddTraceEventHandler(char phase, argument

Completed in 599 milliseconds

123456