HomeSort by relevance Sort by last modified time
    Searched full:highlight (Results 1 - 25 of 619) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/ManualTests/
system-color-change.html 1 <body bgcolor="highlight">
2 Change the system highlight color.
4 On Mac OS X, go into System Preferences and change the Highlight color in the Appearance preference panel.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
broken1-expected-completion20.txt 2 android:textColorHighlight : Color of the text selection highlight. [color, reference]
  /external/chromium_org/chrome/browser/resources/chromeos/
proxy_settings.css 35 html[highlight=strong] input[type='button']:focus,
36 html[highlight=strong] input[type='checkbox']:focus,
37 html[highlight=strong] input[type='radio']:focus,
38 html[highlight=strong] input[type='text']:focus,
39 html[highlight=strong] input[type='url']:focus,
40 html[highlight=strong] button:focus,
41 html[highlight=strong] list:focus {
45 html[highlight=strong] #network-proxy-tab {
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_section_view.h 12 // Main view for autofill sections. Takes care of hover highlight if needed.
16 BOOL isHighlighted_; // Track current highlight state.
17 BOOL shouldHighlightOnHover_; // Indicates if view should highlight on hover
20 // Color used to highlight the view on hover.
23 // Controls if the view should show a highlight when hovered over.
  /external/chromium_org/tools/gn/
err.cc 61 std::string highlight; local
62 highlight.resize(line_length);
64 highlight[i] = ' ';
66 // Highlight all the ranges on the line.
68 FillRangeOnLine(ranges[i], location.line_number(), &highlight);
71 highlight.push_back(' ');
73 location.char_offset() - 1 < static_cast<int>(highlight.size()));
74 highlight[location.char_offset() - 1] = '^';
77 while (!highlight.empty() && highlight[highlight.size() - 1] == ' '
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
cros_log_marker.js 5 * This class stores the filter queries as history and highlight the log text
11 * the latest added highlight always has highest priority to display.
18 var LOG_MARKER_HIGHLIGHT_CLASS = 'cros-log-analyzer-marker-highlight';
40 * CrosHighlightTag represents a single highlight tag in text.
64 // Stores highlight objects for each entry.
152 // Creates the highlight object
154 // Add the highlight into entryHighlights
159 * Find the highlight objects that covers the given position
168 var highlight = highlights[j];
169 if (highlight.range[0] <= index &
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextEditorHighlighter.js 82 highlight: function(endLine, forceRun)
88 var state = this._textModel.getAttribute(endLine - 1, "highlight");
104 state = this._textModel.getAttribute(startLine - 1, "highlight");
110 // Do small highlight synchronously. This will provide instant highlight on PageUp / PageDown, gentle scrolling.
119 // Start line was edited, we should highlight everything until endLine.
123 var state = this._textModel.getAttribute(startLine - 1, "highlight");
133 var state = this._textModel.getAttribute(i, "highlight");
136 this._textModel.setAttribute(i, "highlight-outdated", state);
137 this._textModel.removeAttribute(i, "highlight");
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/wrench_menu/
menu_tracked_button.mm 10 - (void)doHighlight:(BOOL)highlight;
52 BOOL highlight = NSPointInRect(point, [self insetBounds]);
53 [self doHighlight:highlight];
78 - (void)doHighlight:(BOOL)highlight {
79 [[self cell] setHighlighted:highlight];
84 // the user is merely hovering here. If it is not, then disable the highlight.
wrench_menu_button_cell.h 12 // than two blocks of colors. This also uses the blue menu highlight color for
  /external/chromium_org/ui/message_center/cocoa/
status_item_view.h 23 // than zero, to the icon's right. It can also paint the highlight background
41 // Whether or not to force the highlight pattern to be drawn.
45 // draw the highlight pattern.
50 @property(nonatomic) BOOL highlight; variable
status_item_view.mm 40 @synthesize highlight = highlight_;
82 - (void)setHighlight:(BOOL)highlight {
83 highlight_ = highlight;
120 BOOL highlight = [self shouldHighlight];
122 withHighlight:highlight];
159 BOOL highlight = [self shouldHighlight];
173 return kResourceIds[quietMode_][hasUnreadItems][highlight];
  /external/chromium_org/tools/json_schema_compiler/highlighters/
pygments_highlighter.py 21 """Highlighter that uses the python pygments library to highlight code.
26 return formatter.get_style_defs('.highlight')
31 return pygments.highlight(code, CppLexer(), formatter)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 140 static void buildNodeHighlight(Node* node, const HighlightConfig& highlightConfig, Highlight* highlight)
148 highlight->setDataFromConfig(highlightConfig);
157 highlight->type = HighlightTypeRects;
158 renderer->absoluteQuads(highlight->quads);
159 for (size_t i = 0; i < highlight->quads.size(); ++i)
160 contentsQuadToPage(mainView, containingView, highlight->quads[i]);
207 highlight->type = HighlightTypeNode;
208 highlight->quads.append(absMarginQuad);
209 highlight->quads.append(absBorderQuad)
    [all...]
InspectorOverlayPage.html 510 function _drawElementTitle(highlight)
512 var elementInfo = highlight.elementInfo;
513 if (!highlight.elementInfo)
526 var marginQuad = highlight.quads[0];
588 function _drawRulers(highlight, rulerAtRight, rulerAtBottom)
601 for (var i = 0; i < highlight.quads.length; ++i) {
602 var quad = highlight.quads[i];
648 function drawNodeHighlight(highlight)
651 for (var i = 0; i < highlight.quads.length; ++i) {
652 var quad = highlight.quads[i]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/wrench_menu/
menu_tracked_button.mm 10 - (void)doHighlight:(BOOL)highlight;
53 BOOL highlight = NSPointInRect(point, [self insetBounds]);
54 [self doHighlight:highlight];
79 - (void)doHighlight:(BOOL)highlight {
83 [[self cell] setHighlighted:highlight];
88 // the user is merely hovering here. If it is not, then disable the highlight.
wrench_menu_button_cell.h 12 // than two blocks of colors. This also uses the blue menu highlight color for
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
highlight-source-line.html 1 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=19204">Bug 19204: Inspector should highlight source lines when following links to them</a>.</p>
  /external/chromium_org/third_party/fuzzymatch/
fuzzymatch.c 41 * --highlight: write highlight.png which is a copy of the first image
55 fprintf(stderr, "Usage: %s [--highlight] [--no-ignore-scrollbars] "
66 char highlight = 0; local
69 const char *output_filename = "highlight.png";
74 if (strcmp("--highlight", argv[argi]) == 0) {
75 highlight = 1;
113 if (!highlight)
148 if (count && highlight) {
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
reg.php 139 // Highlight Key Delimiters
148 // Highlight File Format Header Version 5
157 // Highlight File Format Header Version 4
166 // Highlight dword: 32 bit integer values
175 // Highlight variable names
184 // Highlight String Values
193 // Highlight Hexadecimal Values (Single-Line and Multi-Line)
202 // Highlight Default Variable
211 // Highlight GUID's found anywhere.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ParenMatch.py 15 """Highlight matching parentheses
24 default -- When a right paren is typed, highlight the matching
27 expression -- When a right paren is typed, highlight the entire
32 - implement rest of Emacs highlight styles (see below)
35 Note: In Emacs, there are several styles of highlight where the
134 """Highlight the single paren that matches"""
139 """Highlight the entire expression"""
151 """Highlight will remain until user input turns it off
166 """The last highlight created will be removed after .5 sec"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ParenMatch.py 15 """Highlight matching parentheses
24 default -- When a right paren is typed, highlight the matching
27 expression -- When a right paren is typed, highlight the entire
32 - implement rest of Emacs highlight styles (see below)
35 Note: In Emacs, there are several styles of highlight where the
134 """Highlight the single paren that matches"""
139 """Highlight the entire expression"""
151 """Highlight will remain until user input turns it off
166 """The last highlight created will be removed after .5 sec"""
  /external/chromium_org/chrome/browser/ui/cocoa/toolbar/
toolbar_button.mm 26 [self highlight:isInside];
39 [self highlight:NO];
  /external/skia/tools/tests/benchgraphs/Skia_Shuttle_Ubuntu12_ATI5770_Float_Bench_32/output-expected/
graph.xhtml 11 onclick="var event = arguments[0] || window.event; if (event.shiftKey) { highlightRevision(null); } if (event.ctrlKey) { highlight(null); } return false;"
62 function highlight(id) {
99 <polyline id="desk_amazon.skp_record_rtree__{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_record_rtree__{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,128,128)" stroke-width="2" opacity="0.100024703443" points=" 0.0,767.73372517 798.117647059,767.71317551 918.588235294,767.695063946 1024.0,767.708995918 "/>
103 <polyline id="desk_amazon.skp_record_rtree_c_{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_record_rtree_c_{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,128,128)" stroke-width="2" opacity="0.100024657827" points=" 0.0,767.735205442 798.117647059,767.714742857 918.588235294,767.696718367 1024.0,767.710563265 "/>
107 <polyline id="desk_amazon.skp_tile_256x256_multi_2_threads__{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_tile_256x256_multi_2_threads__{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,150,128)" stroke-width="2" opacity="0.26063477704" points=" 0.0,742.852789116 798.117647059,762.827755102 918.588235294,762.827755102 1024.0,762.862585034 "/>
111 <polyline id="desk_amazon.skp_tile_256x256_multi_2_threads_c_{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_tile_256x256_multi_2_threads_c_{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,161,128)" stroke-width="2" opacity="0.339036615468" points=" 0.0,733.074285714 798.117647059,762.871292517 918.588235294,762.871292517 1024.0,762.88 "/>
115 <polyline id="desk_amazon.skp_tile_256x256_multi_3_threads__{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_tile_256x256_multi_3_threads__{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,137,128)" stroke-width="2" opacity="0.167556154619" points=" 0.0,754.433741497 798.117647059,762.801632653 918.588235294,762.923537415 1024.0,762.810340136 "/>
119 <polyline id="desk_amazon.skp_tile_256x256_multi_3_threads_c_{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_tile_256x256_multi_3_threads_c_{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,148,128)" stroke-width="2" opacity="0.243073122099" points=" 0.0,745.038367347 798.117647059,762.827755102 918.588235294,762.932244898 1024.0,762.836462585 "/>
123 <polyline id="desk_amazon.skp_tile_256x256_multi_4_threads__{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_tile_256x256_multi_4_threads__{\'scalar\': \'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles\'}'); return false; }" fill="none" stroke="rgb(128,144,128)" stroke-width="2" opacity="0.21397655382" points=" 0.0,748.62585034 798.117647059,762.845170068 918.588235294,762.871292517 1024.0,762.836462585 "/>
127 <polyline id="desk_amazon.skp_tile_256x256_multi_4_threads_c_{'scalar': 'data_skp_device_bitmap_multi_4_mode_tile_256_256_timeIndividualTiles'}_line" onmouseover="var event = arguments[0] || window.event; if (event.ctrlKey) { highlight('desk_amazon.skp_tile_256x256_multi_4_threads_c_{\'scalar\': \'data_skp_device_bitmap_multi_4_mode (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
cmdevtools.css 44 .cm-highlight {
119 .cm-token-highlight {
123 .cm-token-highlight:before {
138 .cm-search-highlight {
142 .cm-search-highlight:before {
157 .cm-search-highlight-full:before {
162 .cm-search-highlight-start:before {
170 .cm-search-highlight-end:before {
178 .cm-line-with-selection .cm-column-with-selection.cm-search-highlight-full:before {
182 .cm-line-with-selection .cm-column-with-selection.cm-search-highlight-start:before
    [all...]
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
TouchHighlightImageButton.java 28 * An image button that uses a blue highlight (@link android.R.attr.selectableItemBackground} to
33 * The highlight drawable. This generally a {@link android.graphics.drawable.StateListDrawable}
80 // Update the state of the highlight drawable to match
95 // Then draw the highlight on top of it. If the button is neither focused

Completed in 1690 milliseconds

1 2 3 4 5 6 7 8 91011>>