HomeSort by relevance Sort by last modified time
    Searched full:phase (Results 76 - 100 of 1410) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/include/effects/
Sk1DPathEffect.h 51 @param phase distance (mod advance) along path for its initial position
55 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
73 SkScalar fInitialOffset; // computed from phase
  /external/webkit/Source/JavaScriptCore/wtf/
Complex.h 39 inline Complex complexFromMagnitudePhase(double magnitude, double phase)
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.h 36 net::NetLog::EventPhase phase,
42 net::NetLog::EventPhase phase,
48 net::NetLog::EventPhase phase,
54 net::NetLog::EventPhase phase,
devtools_netlog_observer.cc 43 net::NetLog::EventPhase phase,
53 OnAddURLRequestEntry(type, time, source, phase, params);
55 OnAddHTTPStreamJobEntry(type, time, source, phase, params);
57 OnAddSocketEntry(type, time, source, phase, params);
64 net::NetLog::EventPhase phase,
68 bool is_begin = phase == net::NetLog::PHASE_BEGIN;
69 bool is_end = phase == net::NetLog::PHASE_END;
159 net::NetLog::EventPhase phase,
182 net::NetLog::EventPhase phase,
186 bool is_end = phase == net::NetLog::PHASE_END
    [all...]
  /external/libxslt/libxslt/
preproc.h 3 * Description: this is the compilation phase, where most of the
  /external/objenesis/tck-android/
pom.xml 68 <phase>integration-test</phase>
83 <phase>integration-test</phase>
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 29 jfloatArray intervalArray, float phase) {
39 return new SkDashPathEffect(intervals, count, SkFloatToScalar(phase));
43 const SkPath* shape, float advance, float phase, int style) {
46 SkFloatToScalar(phase), (SkPath1DPathEffect::Style)style);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java 76 /*package*/ static int nativeCreate(float intervals[], float phase) {
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase);
83 private DashPathEffect_Delegate(float intervals[], float phase) {
86 mPhase = phase;
  /external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp 131 // Now, deal with phase
140 // Unwrap phase deltas
192 double phase = arg(c); local
194 double deltaPhase = phase - lastPhase;
195 lastPhase = phase;
207 // Note how we invert the phase delta wrt frequency since this is how group delay is defined
239 double phase = arg(c); local
241 phase += i * phaseAdj;
243 Complex c2 = complexFromMagnitudePhase(mag, phase);
263 double phase = atan2(realP[i], imagP[i]) local
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 166 enum Phase {
180 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Phase phase, Phase momentumPhase,bool hasPreciseScrollingDeltas, Modifiers, double timestamp);
189 Phase phase() const { return static_cast<Phase>(m_phase); } function in class:WebKit::WebWheelEvent
190 Phase momentumPhase() const { return static_cast<Phase>(m_momentumPhase); }
206 uint32_t m_phase; // Phase
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/toolbar/
toolbar_view.mm 22 NSPoint phase = [[self window] themePatternPhase];
23 [[NSGraphicsContext currentContext] setPatternPhase:phase];
  /external/webkit/Source/WebCore/rendering/
RenderReplaced.cpp 113 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
116 if (paintInfo.phase == PaintPhaseMask) {
121 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth())
124 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection)
131 if (paintInfo.phase == PaintPhaseSelection) {
168 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseOutline && paintInfo.phase != PaintPhaseSelfOutline
    [all...]
InlineBox.cpp 164 if (!paintInfo.shouldPaintWithinRoot(renderer()) || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
174 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
176 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
179 info.phase = PaintPhaseChildBlockBackgrounds;
181 info.phase = PaintPhaseFloat;
183 info.phase = PaintPhaseForeground;
185 info.phase = PaintPhaseOutline
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 40 private static PathEffect makeDash(float phase) {
41 return new DashPathEffect(new float[] { 15, 5, 8, 5 }, phase);
44 private static void makeEffects(PathEffect[] e, float phase) {
47 e[2] = new DashPathEffect(new float[] {10, 5, 5, 5}, phase);
48 e[3] = new PathDashPathEffect(makePathDash(), 12, phase,
  /external/chromium/chrome/browser/net/
chrome_net_log.cc 48 net::NetLog::EventPhase phase,
54 phase(phase),
87 EventPhase phase,
93 OnAddEntry(type, time, source, phase, params));
load_timing_observer.h 71 net::NetLog::EventPhase phase,
88 net::NetLog::EventPhase phase,
94 net::NetLog::EventPhase phase,
100 net::NetLog::EventPhase phase,
106 net::NetLog::EventPhase phase,
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ContextShadowCairo.cpp 152 FloatPoint phase = dest.location(); local
153 phase.move(-tile.x(), -tile.y());
155 return phase;
288 FloatPoint phase = getPhase(destRect, tileRect); local
291 drawPatternToCairoContext(cr, m_layerImage, shadowTemplateSize, tileRect, patternTransform, phase, CAIRO_OPERATOR_OVER, destRect);
298 phase = getPhase(destRect, tileRect);
299 drawPatternToCairoContext(cr, m_layerImage, shadowTemplateSize, tileRect, patternTransform, phase, CAIRO_OPERATOR_OVER, destRect);
306 phase = getPhase(destRect, tileRect);
307 drawPatternToCairoContext(cr, m_layerImage, shadowTemplateSize, tileRect, patternTransform, phase, CAIRO_OPERATOR_OVER, destRect);
314 phase = FloatPoint(destRect.x() - tileRect.x(), destRect.y() - tileRect.y())
    [all...]
  /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.1.1/
commons-logging-1.1.1.pom 21 - tests are executed in the "integration-test" phase rather than the
22 - "test" phase. Please run "mvn integration-test" to run the full suite of
160 <phase>package</phase>
184 <phase>package</phase>
209 <phase>package</phase>
232 <phase>site</phase>
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.mm 247 NSPoint phase = kBrowserFrameViewPatternPhaseOffset;
248 phase.x += (offset.x + topLeftInFrameCoordinates.x);
249 phase.y += (offset.y + topLeftInFrameCoordinates.y);
251 // Align the phase to physical pixels so resizing the window under HiDPI
253 phase = [frameView convertPointToBase:phase];
254 phase.x = floor(phase.x);
255 phase.y = floor(phase.y)
    [all...]
  /external/svox/pico/lib/
picosig2.h 56 picoos_int16 *idx_vect7; /*reserved for dispersed phase */
82 picoos_int32 *int_vec41[CEPST_BUFF_SIZE]; /*reserved for phase smoothing - cepstrum buffers */
83 picoos_int32 *int_vec42[PHASE_BUFF_SIZE]; /*reserved for phase smoothing - phase buffers */
85 picoos_int16 idx_vect10[CEPST_BUFF_SIZE]; /*reserved for pitch value buffering before phase smoothing*/
86 picoos_int16 idx_vect11[CEPST_BUFF_SIZE]; /*reserved for phonetic value bufferingid before phase smoothing*/
87 picoos_int16 idx_vect12[CEPST_BUFF_SIZE]; /*reserved for voicing value bufferingbefore phase smoothing*/
88 picoos_int16 idx_vect13[CEPST_BUFF_SIZE]; /*reserved for unrectified pitch value bufferingbefore phase smoothing*/
89 picoos_int16 idx_vect14[PHASE_BUFF_SIZE]; /*reserved for vox_bnd value buffering before phase smoothing*/
131 picoos_int32 iRand; /*reserved for phase random table poointer ())*
    [all...]
  /external/ipsec-tools/src/racoon/
TODO 22 o require less configuration. phase 2 is easier (as kernel presents racoon
23 some hints), phase 1 is harder. for example,
24 - grab phase 2 lifetime and algorith configuration from sadb_comb payloads in
28 how to guess a reasonable phase 1 SA lifetime
29 (hardcoded default? guess from phase 2 lifetime?)
32 guess phase 1 DH group (for aggressive mode, we cannot negotiate it)
33 guess if we need phase 2 PFS or not (we cannot negotiate it. so
34 we may need to pick from "no PFS" or "same as phase 1 DH group")
37 guess which mode to use for phase 1 negotiation (is main mode useful?
  /external/chromium/net/base/
capturing_net_log.h 29 EventPhase phase,
36 EventPhase phase; member in struct:net::CapturingNetLog::Entry
61 EventPhase phase,
  /external/skia/legacy/include/effects/
Sk1DPathEffect.h 53 @param phase distance (mod advance) along path for its initial position
57 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
81 SkScalar fInitialOffset; // computed from phase
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.h 33 // SVGTextLayoutAttributesBuilder performs the first layout phase for SVG text.
38 // The first layout phase only extracts the relevant information needed in RenderBlockLineLayout
40 // The second layout phase is carried out by SVGTextLayoutEngine.
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 346 static void drawPatternSimple(HDC hdc, const RECT& destRect, HBITMAP hbmp, const POINT& phase)
353 SetBrushOrgEx(hdc, destRect.left - phase.x, destRect.top - phase.y, &oldOrg);
358 static void drawPatternSimple(HDC hdc, const RECT& destRect, const SharedBitmap* bmp, const SIZE& bmpSize, const POINT& phase)
361 for (int sourceY = phase.y; dstY < destRect.bottom; ) {
364 for (int sourceX = phase.x; dstX < destRect.right; ) {
379 static LONG normalizePhase(LONG phase, int limit)
381 if (!phase || limit < 2)
385 return phase & 1;
387 if (phase < 0)
    [all...]

Completed in 4746 milliseconds

1 2 34 5 6 7 8 91011>>