Searched refs:phase (Results 126 - 150 of 186) sorted by relevance

12345678

/external/webkit/Source/WebCore/platform/graphics/
H A DBitmapImage.h190 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator, const FloatRect& destRect);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp424 int phase = 1; local
429 // Adjust the phase to center the dashes within the line.
432 phase = (dashLength - remainder) / 2;
435 phase = dashLength - remainder / 2;
440 paint->setPathEffect(new SkDashPathEffect(intervals, 2, SkIntToScalar(phase)))->unref();
/external/webkit/Source/WebCore/rendering/
H A DRenderBoxModelObject.h135 void calculateBackgroundImageGeometry(const FillLayer*, int tx, int ty, int w, int h, IntRect& destRect, IntPoint& phase, IntSize& tileSize);
H A DRenderDataGrid.cpp146 if (paintInfo.phase != PaintPhaseForeground)
H A DRenderEmbeddedObject.cpp153 if (paintInfo.phase == PaintPhaseSelection)
H A DRenderFieldset.cpp187 if (style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseMask)
H A DRenderBoxModelObject.cpp684 // Now add the text to the clip. We do this by painting using a special paint phase that signals to
755 IntPoint phase; local
758 calculateBackgroundImageGeometry(bgLayer, tx, ty, w, h, destRect, phase, tileSize);
762 phase += destRect.location() - destOrigin;
767 context->drawTiledImage(image.get(), style()->colorSpace(), destRect, phase, tileSize, compositeOp, useLowQualityScaling);
843 IntRect& destRect, IntPoint& phase, IntSize& tileSize)
903 phase.setX(tileSize.width() ? tileSize.width() - (xPosition + left) % tileSize.width() : 0);
906 phase.setX(-min(xPosition + left, 0));
912 phase.setY(tileSize.height() ? tileSize.height() - (yPosition + top) % tileSize.height() : 0);
915 phase
842 calculateBackgroundImageGeometry(const FillLayer* fillLayer, int tx, int ty, int w, int h, IntRect& destRect, IntPoint& phase, IntSize& tileSize) argument
[all...]
H A DRenderImage.cpp253 if (paintInfo.phase == PaintPhaseSelection)
333 if (paintInfo.phase == PaintPhaseOutline)
H A DRenderBlock.cpp2297 PaintPhase phase = paintInfo.phase; local
2305 overflowBox.inflate(maximalOutlineSize(paintInfo.phase));
2314 popContentsClip(paintInfo, phase, tx, ty);
2319 if (hasOverflowClip() && style()->visibility() == VISIBLE && (phase == PaintPhaseBlockBackground || phase == PaintPhaseChildBlockBackground) && paintInfo.shouldPaintWithinRoot(this))
2398 paintFloats(info, finalX, finalY, paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip);
2429 PaintPhase newPhase = (paintInfo.phase == PaintPhaseChildOutlines) ? PaintPhaseOutline : paintInfo.phase;
[all...]
H A DRenderTableCell.cpp815 if (paintInfo.phase == PaintPhaseCollapsedTableBorders && style()->visibility() == VISIBLE) {
821 int os = 2 * maximalOutlineSize(paintInfo.phase);
1039 if (style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseMask)
H A DRenderListBox.cpp265 if (paintInfo.phase == PaintPhaseForeground) {
276 switch (paintInfo.phase) {
/external/webkit/Source/WebKit2/Shared/
H A DWebEventConversion.cpp114 m_phase = static_cast<WebCore::PlatformWheelEventPhase>(webEvent.phase());
/external/freetype/src/cff/
H A Dcffgload.c1435 FT_Int phase = ( op == cff_op_hlineto ); local
1456 if ( phase )
1465 phase ^= 1;
1597 FT_Int phase; local
1619 phase = ( op == cff_op_hvcurveto );
1624 if ( phase )
1649 phase ^= 1;
/external/v8/src/
H A Dlithium-allocator.cc1085 HPhase phase("L_Register constraints", chunk_);
1097 HPhase phase("L_Resolve phis", chunk_);
1187 HPhase phase("L_Connect ranges", this);
1227 HPhase phase("L_Resolve control flow", this);
1248 HPhase phase("L_Build live ranges", this);
1353 HPhase phase("L_Populate pointer maps", this);
1472 HPhase phase("L_Allocate general registers", this);
1479 HPhase phase("L_Allocate double registers", this);
H A Dcompiler.cc264 HPhase phase(HPhase::kFullCodeGen);
299 HPhase phase(HPhase::kTotal);
/external/webkit/Source/WebCore/platform/mac/
H A DScrollAnimatorMac.mm935 PlatformWheelEventPhase phase = wheelEvent.momentumPhase();
938 if (!m_momentumScrollInProgress && (phase == PlatformWheelEventPhaseBegan || phase == PlatformWheelEventPhaseChanged))
1051 if (m_momentumScrollInProgress && phase == PlatformWheelEventPhaseEnded) {
/external/chromium/chrome/browser/ui/webui/
H A Dnet_internals_ui.cc301 net::NetLog::EventPhase phase,
712 e.phase,
801 // Tell the javascript about the relationship between event phase enums and
1346 net::NetLog::EventPhase phase,
1352 net::NetLog::EntryToDictionaryValue(type, time, source, phase,
1342 OnAddEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
/external/oprofile/events/x86-64/family11h/
H A Dunit_masks186 0x02 The number of cycles spent in speculative phase
187 0x04 The number of cycles spent in non-speculative phase (including cache miss penalty)
/external/oprofile/events/x86-64/hammer/
H A Dunit_masks179 0x02 The number of cycles spent in speculative phase
180 0x04 The number of cycles spent in non-speculative phase (including cache miss penalty)
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp1119 FloatPoint phase = dest.location(); local
1120 phase.move(-tile.x(), -tile.y());
1122 return phase;
/external/freetype/src/truetype/
H A Dttinterp.c2280 val = ( distance - CUR.phase + CUR.threshold + compensation ) &
2284 val += CUR.phase;
2288 val = -( ( CUR.threshold - CUR.phase - distance + compensation ) &
2292 val -= CUR.phase;
2328 val = ( ( distance - CUR.phase + CUR.threshold + compensation ) /
2332 val += CUR.phase;
2336 val = -( ( ( CUR.threshold - CUR.phase - distance + compensation ) /
2340 val -= CUR.phase;
2438 CUR.phase = 0;
2442 CUR.phase
[all...]
/external/kernel-headers/original/linux/spi/
H A Dcpcap.h767 void cpcap_adc_phase(struct cpcap_device *cpcap, struct cpcap_adc_phase *phase);
/external/ppp/pppd/
H A Dauth.c2 * auth.c - PPP authentication and phase control.
199 and we are proceeding to the network phase. */
528 * An Open on LCP has requested a change from Dead to Establish phase.
587 * LCP has terminated the link; go to the Dead phase and take the
594 if (phase == PHASE_DEAD || phase == PHASE_MASTER)
673 if (phase != PHASE_DEAD && phase != PHASE_MASTER)
699 * Proceed to the Dead, Authenticate or Network phase as appropriate.
779 * Proceed to the network phase
[all...]
/external/opencv/cv/src/
H A Dcvfilter.cpp444 int phase = flags & (CV_START|CV_END|CV_MIDDLE);
492 if( phase == CV_WHOLE )
493 phase = CV_START | CV_END;
494 phase &= CV_START | CV_END | CV_MIDDLE;
497 if( phase & CV_START )
508 if( phase & CV_START )
526 if( phase & CV_END )
562 if( !rows[0] || ((phase & CV_END) && src_y == src_y2) )
564 int br = (phase & CV_END) && src_y == src_y2 ? bottom_rows : 0;
/external/mksh/src/
H A DBuild.sh89 phase=x
178 if test $phase = u; then
894 phase=u
896 phase=x
910 NOWARN=$DOWARN; phase=u
961 phase=u
965 phase=x
967 phase=u
970 phase=x
1019 phase
[all...]

Completed in 1963 milliseconds

12345678