Searched refs:styles (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_api.cc128 ListValue* styles; local
130 suggestion_value->GetList(kSuggestionDescriptionStyles, &styles));
131 EXTENSION_FUNCTION_VALIDATE(suggestion.ReadStylesFromValue(*styles));
155 ListValue* styles; local
157 suggestion_value->GetList(kSuggestionDescriptionStyles, &styles));
158 EXTENSION_FUNCTION_VALIDATE(suggestion.ReadStylesFromValue(*styles));
186 // Step 1: Build a vector of styles, 1 per character of description text.
187 std::vector<int> styles; local
188 styles.resize(description.length()); // sets all styles t
[all...]
H A Dextension_omnibox_unittest.cc19 ListValue* styles) {
24 styles->Append(style);
17 AppendStyle(const std::string& type, int offset, int length, ListValue* styles) argument
/external/icu4c/test/intltest/
H A Dreptest.cpp34 * Set the styles to the style of the first character replaced.<br>
41 UnicodeString styles; member in class:TestReplaceable
69 this->styles = s;
73 return new TestReplaceable(chars, styles);
79 return styles;
85 s.append(styles);
123 if (start != limit && styles.charAt(start) != NO_STYLE) {
124 newStyle = styles.charAt(start);
126 newStyle = styles.charAt(start-1);
127 } else if (limit < styles
[all...]
H A Dtufmtts.cpp216 UTimeUnitFormatStyle styles[] = {UTMUTFMT_FULL_STYLE, UTMUTFMT_ABBREVIATED_STYLE}; local
266 styleIndex < sizeof(styles)/sizeof(styles[0]);
282 TimeUnitFormat *tfmt = new TimeUnitFormat(l, styles[styleIndex], status);
312 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
/external/webkit/Tools/WinCELauncher/
H A Dmain.cpp76 DWORD styles = WS_VISIBLE; local
79 styles |= WS_CAPTION
100 HWND hMainWindow = CreateWindowW(kMainWindowClassName, kMainWindowTitle, styles,
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Dupdate_webgl_conformance_tests_unittest.py70 styles = {
87 for input, output in styles.items():
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacterSet.java60 int[] styles = new int[characters.size()];
64 styles[index] = style;
69 oc.write(styles, "styles", null);
96 int[] styles = ic.readIntArray("styles", null);
98 for (int style : styles) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DHtmlTooltipHelper.java93 // prepare styles
94 String styles;
96 styles = DesignerPlugin.readFile(PropertyTable.class.getResourceAsStream("Tooltip.css"),
98 if (styles == null) {
99 styles = "";
102 styles = "";
104 // prepare HTML with styles and tags
120 styles,
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php378 * The styles for hyperlinks in the code
463 * Line number styles
469 * Line number styles for fancy lines
759 * Sets the styles for the code that will be outputted
764 * @param boolean Whether to merge the styles with the current styles or not
812 * true, then styles are merged with the default styles, with the
813 * user defined styles having priority
821 * @param boolean Whether to merge the current styles wit
[all...]
/external/quake/quake/src/QW/client/
H A Dd_surf.c275 r_drawsurf.lightadj[0] = d_lightstylevalue[surface->styles[0]];
276 r_drawsurf.lightadj[1] = d_lightstylevalue[surface->styles[1]];
277 r_drawsurf.lightadj[2] = d_lightstylevalue[surface->styles[2]];
278 r_drawsurf.lightadj[3] = d_lightstylevalue[surface->styles[3]];
H A Dbspfile.h185 byte styles[MAXLIGHTMAPS]; member in struct:__anon11292
H A Dr_light.c219 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ;
222 scale = d_lightstylevalue[surf->styles[maps]];
H A Dmodel.h135 byte styles[MAXLIGHTMAPS]; member in struct:msurface_s
H A Dgl_rlight.c347 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ;
350 scale = d_lightstylevalue[surf->styles[maps]];
/external/quake/quake/src/WinQuake/
H A Dd_surf.cpp272 r_drawsurf.lightadj[0] = d_lightstylevalue[surface->styles[0]];
273 r_drawsurf.lightadj[1] = d_lightstylevalue[surface->styles[1]];
274 r_drawsurf.lightadj[2] = d_lightstylevalue[surface->styles[2]];
275 r_drawsurf.lightadj[3] = d_lightstylevalue[surface->styles[3]];
H A Dr_light.cpp219 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ;
222 scale = d_lightstylevalue[surf->styles[maps]];
H A Dbspfile.h198 byte styles[MAXLIGHTMAPS]; member in struct:__anon11580
H A Dmodel.h124 byte styles[MAXLIGHTMAPS]; member in struct:msurface_s
/external/webkit/Source/WebCore/inspector/front-end/
H A DStylesSidebarPane.js153 function stylesCallback(styles)
155 if (styles)
156 this._rebuildUpdate(node, styles);
184 _rebuildUpdate: function(node, styles)
189 var styleRules = this._rebuildStyleRules(node, styles);
198 for (var i = 0; i < styles.pseudoElements.length; ++i) {
199 var pseudoElementCSSRules = styles.pseudoElements[i];
235 _rebuildStyleRules: function(node, styles)
237 var nodeComputedStyle = styles.computedStyle;
245 for (var name in styles
[all...]
H A DElementsPanel.js78 this.sidebarPanes.styles = new WebInspector.StylesSidebarPane(this.sidebarPanes.computedStyle);
85 this.sidebarPanes.styles.onexpand = this.updateStyles.bind(this);
90 this.sidebarPanes.styles.expanded = true;
92 this.sidebarPanes.styles.addEventListener("style edited", this._stylesPaneEdited, this);
93 this.sidebarPanes.styles.addEventListener("style property toggled", this._stylesPaneEdited, this);
430 if (!this.sidebarPanes.styles.isModifyingStyle && event.data === this.focusedDOMNode)
515 // Once styles are edited, the Metrics pane should be updated.
523 this.sidebarPanes.styles.needsUpdate = true;
784 // Remove any styles that affect size before
1003 var stylesSidebarPane = this.sidebarPanes.styles;
[all...]
H A DAuditRules.js660 function imageStylesReady(imageId, lastCall, styles)
675 const computedStyle = styles.computedStyle;
682 var widthFound = "width" in styles.styleAttributes;
683 var heightFound = "height" in styles.styleAttributes;
685 var inlineStyle = styles.inlineStyle;
693 for (var i = styles.matchedCSSRules.length - 1; i >= 0 && !(widthFound && heightFound); --i) {
694 var style = styles.matchedCSSRules[i].style;
715 console.error("Failed to get styles");
811 WebInspector.AuditRule.call(this, "page-stylescriptorder", "Optimize the order of styles and scripts");
H A Dinspector.css4223 .styles-sidebar-separator {
4236 .styles-selector {
4260 .styles-section {
4269 .styles-section:not(.first-styles-section) {
4273 .styles-section.read-only {
4277 .styles-section .properties li.not-parsed-ok {
4281 .styles-section .properties li.not-parsed-ok::before {
4294 .styles-section .header {
4300 .styles
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dgnuplot.php189 // `help plotting styles`
H A Doracle8.php449 //Add the styles for groups 3-6 here when used
H A Ddos.php25 * - Improve styles.

Completed in 445 milliseconds

12