Searched refs:Color (Results 1 - 25 of 172) sorted by relevance

1234567

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_color_picker_private.h27 #include <WebCore/Color.h>
31 EwkColorPicker(WKColorPickerResultListenerRef colorPickerListener, const WebCore::Color& initialColor);
33 const WebCore::Color& color() const;
34 void setColor(const WebCore::Color&);
38 WebCore::Color m_color;
H A Dewk_color_picker.cpp33 EwkColorPicker::EwkColorPicker(WKColorPickerResultListenerRef colorPickerListener, const Color& initialColor)
39 void EwkColorPicker::setColor(const Color& color)
45 const Color& EwkColorPicker::color() const
56 colorPicker->setColor(Color(r, g, b, a));
78 const Color& color = colorPicker->color();
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/CoordinatedGraphics/
H A DCoordinatedLayerTreeHostProxy.messages.in25 SetBackgroundColor(WebCore::Color color)
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebColorChooser.h34 class Color;
44 WebColorChooser(WebPage*, WebCore::ColorChooserClient*, const WebCore::Color&);
47 void didChooseColor(const WebCore::Color&);
51 virtual void reattachColorChooser(const WebCore::Color&) override;
52 virtual void setSelectedColor(const WebCore::Color&) override;
H A DWebColorChooser.cpp41 WebColorChooser::WebColorChooser(WebPage* page, ColorChooserClient* client, const Color& initialColor)
57 void WebColorChooser::didChooseColor(const Color& color)
72 void WebColorChooser::reattachColorChooser(const Color& color)
81 void WebColorChooser::setSelectedColor(const Color& color)
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DColor.js30 WebInspector.Color = function(format, components)
33 if (format === WebInspector.Color.Format.HSL || format === WebInspector.Color.Format.HSLA)
43 WebInspector.Color.Format = {
54 WebInspector.Color.fromString = function(colorString)
59 var color = new WebInspector.Color(WebInspector.Color.Format.Nickname, [0, 0, 0, 0]);
72 return new WebInspector.Color(WebInspector.Color.Format.ShortHEX, [
79 return new WebInspector.Color(WebInspecto
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DWebColorPickerResultListenerProxy.cpp31 #include <WebCore/Color.h>
55 m_colorPicker->didChooseColor(WebCore::Color(color));
H A DWebColorPickerEfl.h38 static PassRefPtr<WebColorPickerEfl> create(WebViewEfl* webView, WebColorPicker::Client* client, const WebCore::Color& initialColor)
45 virtual void setSelectedColor(const WebCore::Color&) override;
46 virtual void showColorPicker(const WebCore::Color&) override;
48 void didChooseColor(const WebCore::Color&);
51 WebColorPickerEfl(WebViewEfl*, WebColorPicker::Client*, const WebCore::Color&);
H A DWebColorPickerEfl.cpp35 WebColorPickerEfl::WebColorPickerEfl(WebViewEfl* webView, WebColorPicker::Client* client, const WebCore::Color&)
48 void WebColorPickerEfl::showColorPicker(const WebCore::Color& color)
53 void WebColorPickerEfl::setSelectedColor(const WebCore::Color&)
58 void WebColorPickerEfl::didChooseColor(const WebCore::Color& color)
H A DWebViewEfl.h60 virtual PassRefPtr<WebColorPicker> createColorPicker(WebPageProxy*, const WebCore::Color&, const WebCore::IntRect&) override;
63 void setViewBackgroundColor(const WebCore::Color&);
64 WebCore::Color viewBackgroundColor();
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebColorPicker.h35 class Color;
49 virtual void didChooseColor(const WebCore::Color&) = 0;
63 virtual void setSelectedColor(const WebCore::Color&);
64 virtual void showColorPicker(const WebCore::Color&);
H A DWebColorPicker.cpp56 void WebColorPicker::setSelectedColor(const WebCore::Color& color)
64 void WebColorPicker::showColorPicker(const WebCore::Color&)
H A DFindIndicator.cpp172 static inline Color lightBorderColor()
174 return Color(lightBorderRed, lightBorderGreen, lightBorderBlue, lightBorderAlpha);
177 static inline Color shadowColor()
179 return Color(shadowRed, shadowGreen, shadowBlue, shadowAlpha);
182 static inline Color gradientLightColor()
184 return Color(gradientLightRed, gradientLightGreen, gradientLightBlue, gradientLightAlpha);
187 static inline Color gradientDarkColor()
189 return Color(gradientDarkRed, gradientDarkGreen, gradientDarkBlue, gradientDarkAlpha);
200 static inline Color flatHighlightColor()
202 return Color(25
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/mac/
H A DWebColorPickerMac.h45 class Color;
63 static PassRefPtr<WebColorPickerMac> create(WebColorPicker::Client*, const WebCore::Color&, const WebCore::IntRect&, WKView*);
67 virtual void setSelectedColor(const WebCore::Color&) override;
68 virtual void showColorPicker(const WebCore::Color&) override;
70 void didChooseColor(const WebCore::Color&);
73 WebColorPickerMac(WebColorPicker::Client*, const WebCore::Color&, const WebCore::IntRect&, WKView*);
H A DViewSnapshotStore.h29 #include <WebCore/Color.h>
79 void setBackgroundColor(WebCore::Color color) { m_backgroundColor = color; }
80 WebCore::Color backgroundColor() const { return m_backgroundColor; }
108 WebCore::Color m_backgroundColor;
/macosx-10.10.1/WebKit-7600.1.25/ios/WebView/
H A DWebPlainWhiteView.mm33 #import <WebCore/Color.h>
45 setStrokeAndFillColor(context, cachedCGColor(Color::white, ColorSpaceDeviceRGB));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DColorPicker.js139 if (this._colorFormat === WebInspector.Color.Format.HSL || this._colorFormat === WebInspector.Color.Format.HSLA)
144 this._color = new WebInspector.Color(this._colorFormat, components);
151 var opaque = new WebInspector.Color(WebInspector.Color.Format.RGBA, rgb.concat(1)).toString();
152 var transparent = new WebInspector.Color(WebInspector.Color.Format.RGBA, rgb.concat(0)).toString();
H A DColorWheel.js90 return new WebInspector.Color(WebInspector.Color.Format.RGBA, [0, 0, 0, 0]);
105 return new WebInspector.Color(WebInspector.Color.Format.RGBA, [0, 0, 0, 0]);
192 var hsv = WebInspector.Color.rgb2hsv(rgb[0], rgb[1], rgb[2]);
237 return new WebInspector.Color(WebInspector.Color.Format.RGBA, [0, 0, 0, 0]);
244 var rgb = WebInspector.Color.hsv2rgb(h, s, v);
245 return new WebInspector.Color(WebInspector.Color
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DStackSlotColoring.cpp77 // Assignments - Color to intervals mapping.
103 bool OverlapWithAssignments(LiveInterval *li, int Color) const;
199 StackSlotColoring::OverlapWithAssignments(LiveInterval *li, int Color) const {
200 const SmallVector<LiveInterval*,4> &OtherLIs = Assignments[Color];
212 int Color = -1; local
216 Color = UsedColors.find_first();
217 while (Color != -1) {
218 if (!OverlapWithAssignments(li, Color)) {
223 Color = UsedColors.find_next(Color);
239 DEBUG(dbgs() << "Assigning fi#" << FI << " to fi#" << Color << "\\n"); local
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/regressions/inc/Test/Builder/Tester/
H A DColor.pm1 package Test::Builder::Tester::Color;
9 Test::Builder::Tester::Color - turn on colour in Test::Builder::Tester
15 perl -MTest::Builder::Tester::Color test.t
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/
H A DTapHighlightController.cpp94 static Color highlightColor(Color baseColor, float fractionFadedIn)
96 return Color(baseColor.red(), baseColor.green(), baseColor.blue(), int(baseColor.alpha() * fractionFadedIn));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorColorEditingController.js39 return WebInspector.Color.fromString(this.text);
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp206 void SelectionDAG::setGraphColor(const SDNode *N, const char *Color) { argument
208 NodeGraphAttrs[N] = std::string("color=") + Color;
218 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited, argument
234 setGraphColor(N, Color);
238 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit;
250 void SelectionDAG::setSubgraphColor(SDNode *N, const char *Color) { argument
254 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) {
256 if (strcmp(Color, "red") == 0) {
258 } else if (strcmp(Color, "yellow") == 0) {
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DWebPageCreationParameters.h35 #include <WebCore/Color.h>
70 WebCore::Color underlayColor;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebViewBaseInputMethodFilter.cpp26 #include <WebCore/Color.h>
91 m_webPageProxy->setComposition(newPreedit, Vector<CompositionUnderline>{ CompositionUnderline(0, newPreedit.length(), Color(1, 1, 1), false) },

Completed in 126 milliseconds

1234567