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

1 2 3 4 5 6

  /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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
results.properties 14 -highlight 3.0.2_,2.1.3_,3.1M6_,3.1M7_ ,3.1RC1 \
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorClient.h 43 virtual void highlight() = 0;
InspectorOverlay.cpp 222 static void buildNodeHighlight(Node* node, const HighlightConfig& highlightConfig, Highlight* highlight)
230 highlight->setDataFromConfig(highlightConfig);
234 highlight->type = HighlightTypeRects;
236 highlight->type = HighlightTypeNode;
237 buildNodeQuads(node, highlight->quads);
240 static void buildQuadHighlight(Page* page, const FloatQuad& quad, const HighlightConfig& highlightConfig, Highlight *highlight)
244 highlight->setDataFromConfig(highlightConfig);
245 highlight->type = HighlightTypeRects
    [all...]
  /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/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
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_network.css 32 html:not([highlight=strong]) #network-timezone-setting {
oobe_screen.css 174 html[highlight=strong] #security-info a:focus,
175 html[highlight=strong] #eula a:focus,
176 html[highlight=strong] .step-extra-controls a:focus,
177 html[highlight=strong] .menu-control:focus,
178 html[highlight=strong] input[type='button']:focus,
179 html[highlight=strong] button:focus {
  /packages/apps/Settings/src/com/android/settings/
IconPreferenceScreen.java 79 public void setHighlighted(boolean highlight) {
80 mHighlight = highlight;
HighlightingFragment.java 78 final Drawable highlight = getHighlightDrawable(); local
83 view.setBackground(highlight);
90 highlight.setHotspot(centerX, centerY);
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImport.cpp 125 void HTMLImport::showTree(HTMLImport* highlight, unsigned depth)
130 fprintf(stderr, "%s", this == highlight ? "*" : " ");
134 child->showTree(highlight, depth + 1);
HTMLImport.h 136 void showTree(HTMLImport* highlight, unsigned depth);
  /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)
  /packages/apps/Gallery2/jni/
Android.mk 34 filters/highlight.c \
  /external/chromium_org/chrome/common/extensions/docs/static/js/
site.js 25 // Auto syntax highlight all pre tags.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 113 , highlight(o.highlight)
177 && highlight == o.highlight
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineLayersView.js 66 node.highlight();
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorClientImpl.h 51 virtual void highlight() OVERRIDE;
InspectorClientImpl.cpp 63 void InspectorClientImpl::highlight() function in class:blink::InspectorClientImpl
66 agent->highlight();
  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 139 final ShapeDrawable highlight = new ShapeDrawable(new OvalShape()); local
140 highlight.getPaint().setColor(0x10FFFFFF);
141 highlight.setBounds((int)(size*.15f), (int)(size*.15f),
143 im.getOverlay().add(highlight);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluseffects.h 83 INT highlight; member in struct:LevelsParams
  /external/chromium_org/chrome/browser/
test_presubmit.py 36 highlight = error_lines[error_lines.index(line) + 1]
37 return ''.join(ch1 for (ch1, ch2) in zip(line, highlight) if ch2 == '^')
244 highlight = self.GetHighlight(line, error)
245 self.assertTrue(highlight in ('Boolean', 'Number', 'String'))
286 highlight = self.GetHighlight(line, error)
287 self.assertFalse('var ' in highlight);
  /external/chromium_org/chrome/browser/resources/print_preview/search/
destination_list_item.css 64 .destination-list-item-query-highlight {
  /external/markdown/markdown/extensions/
codehilite.py 78 from pygments import highlight namespace
101 return highlight(self.src, lexer, formatter)

Completed in 517 milliseconds

1 2 3 4 5 6