HomeSort by relevance Sort by last modified time
    Searched refs:Color (Results 376 - 400 of 420) sorted by null

<<11121314151617

  /external/webkit/WebCore/rendering/
RenderBox.cpp 186 // Set the text color if we're the body.
188 document()->setTextColor(style()->color());
576 Color bgColor = style()->backgroundColor();
726 paintFillLayers(paintInfo, Color(), style()->maskLayers(), tx, ty, w, h, compositeOp);
753 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject)
762 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject)
    [all...]
RenderView.cpp 222 // Only fill with the base background color (typically white) if we're the root document,
227 Color baseColor = frameView()->baseBackgroundColor();
SVGRenderTreeAsText.cpp 198 TextStream& operator<<(TextStream& ts, const Color& c)
340 if (text.parent() && (text.parent()->style()->color() != text.style()->color()))
341 writeNameValuePair(ts, "color", text.style()->color().name());
RenderInline.cpp     [all...]
RenderLayer.cpp 846 p->setFillColor(Color(0.0f, 0.0f, 0.5f, 0.2f), DeviceColorSpace);
    [all...]
RenderLayerBacking.cpp 559 const Color& RenderLayerBacking::rendererBackgroundColor() const
589 // or any background (color or image).
607 // or is not a simple background (no background, or solid color).
699 // and set background color on the layer in that case, instead of allocating backing store and painting.
    [all...]
RenderTableCell.cpp 285 // (4) If border styles differ only in color, then a style set on a cell wins over one on a row,
286 // which wins over a row group, column, column group and, lastly, table. It is undefined which color
814 border->borderValue.color(), style()->color(), border->style, 0, 0);
841 Color c = backgroundObject->style()->backgroundColor();
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 495 underlines.append(CompositionUnderline(0, preeditString.length(), Color(0, 0, 0), false));
  /external/webkit/WebCore/editing/
SelectionController.cpp     [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 31 import org.eclipse.swt.graphics.Color;
94 /** color palette and map legend. NATIVE is the last enum is a 0 based enum list, so we need
156 * Create color palette for map. Set up titles for legend.
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp     [all...]
  /external/proguard/src/proguard/gui/
ProGuardGUI.java 263 new ColorSprite(new ConstantColor(Color.gray),
269 new ColorSprite(new ConstantColor(Color.white),
    [all...]
  /external/webkit/WebCore/page/
DragController.cpp 368 Color color = dragData->asColor(); local
369 if (!color.isValid())
376 style->setProperty("color", color.name(), ec);
Frame.cpp     [all...]
  /external/webkit/WebCore/platform/win/
PopupMenuWin.cpp 603 Color optionBackgroundColor, optionTextColor;
  /external/webkit/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm     [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /external/webkit/WebCore/inspector/front-end/
StylesSidebarPane.js 326 // Select the correct color format setting again, since it needs to be selected.
    [all...]
  /external/webkit/WebCore/dom/
Document.cpp 439 m_textColor = Color::black;
581 m_linkColor = Color(0, 0, 238);
586 m_visitedLinkColor = Color(85, 26, 139);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarView.java 31 import android.graphics.Color;
462 mWeek_saturdayColor = mResources.getColor(R.color.week_saturday);
463 mWeek_sundayColor = mResources.getColor(R.color.week_sunday);
464 mCalendarDateBannerTextColor = mResources.getColor(R.color.calendar_date_banner_text_color);
465 mCalendarAllDayBackground = mResources.getColor(R.color.calendar_all_day_background);
466 mCalendarAmPmLabel = mResources.getColor(R.color.calendar_ampm_label);
467 mCalendarDateBannerBackground = mResources.getColor(R.color.calendar_date_banner_background);
468 mCalendarDateSelected = mResources.getColor(R.color.calendar_date_selected);
469 mCalendarGridAreaBackground = mResources.getColor(R.color.calendar_grid_area_background);
470 mCalendarGridAreaSelected = mResources.getColor(R.color.calendar_grid_area_selected)
2428 int color = event.color; local
    [all...]
  /external/webkit/WebCore/css/
CSSParser.cpp 304 // color will only be changed when string contains a valid css color, making it
305 // possible to set up a default color.
306 bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
308 color = 0;
311 // First try creating a color specified by name or the "#" syntax.
312 if (!parser.parseColor(string, color, strict)) {
315 // Now try to create a color from the rgb() or rgba() syntax.
320 color = primitiveValue->getRGBA32Value();
337 setupParser("@-webkit-decls{color:", string, "} ")
3808 RefPtr<CSSPrimitiveValue> color; member in struct:WebCore::ShadowParseContext
    [all...]
CSSComputedStyleDeclaration.cpp 383 static PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle* style, const Color& color)
385 if (!color.isValid())
386 return CSSPrimitiveValue::createColor(style->color().rgb());
387 return CSSPrimitiveValue::createColor(color.rgb());
579 RefPtr<CSSPrimitiveValue> color = CSSPrimitiveValue::createColor(s->color.rgb()); local
580 list->prepend(ShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release()));
802 return CSSPrimitiveValue::createColor(style->color().rgb());
    [all...]
  /external/webkit/WebCore/
Android.mk 428 platform/graphics/Color.cpp \
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]
  /external/webkit/WebKit/mac/WebView/
WebFrame.mm     [all...]

Completed in 3512 milliseconds

<<11121314151617