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

1 2 3 4 5

  /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/
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...]
InspectorClient.h 43 virtual void highlight() = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorClientImpl.h 52 virtual void highlight();
InspectorClientImpl.cpp 62 void InspectorClientImpl::highlight() function in class:WebKit::InspectorClientImpl
65 agent->highlight();
WebDevToolsAgentImpl.h 101 virtual void highlight();
  /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/ceres-solver/docs/source/_themes/armstrong/
rtd-themes.conf 57 highlight = #ffe080
theme.conf 57 highlight = #ffe080
  /packages/apps/Settings/src/com/android/settings/
IconPreferenceScreen.java 79 public void setHighlighted(boolean highlight) {
80 mHighlight = highlight;
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen.css 163 html[highlight=strong] #security-info a:focus,
164 html[highlight=strong] #eula a:focus,
165 html[highlight=strong] .step-extra-controls a:focus,
166 html[highlight=strong] .menu-control:focus,
167 html[highlight=strong] input[type='button']:focus,
168 html[highlight=strong] button:focus {
  /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 35 filters/highlight.c \
  /external/chromium/chrome/browser/
platform_util_win.cc 87 const ITEMIDLIST* highlight[] = { local
91 hr = (*open_folder_and_select_itemsPtr)(dir_item, arraysize(highlight),
92 highlight, NULL);
  /external/chromium_org/chrome/browser/autocomplete/
builtin_provider.cc 76 // Highlight the input portion matching "chrome://"; or if the user has
77 // input "about:" (with optional slashes), highlight the whole "chrome://".
79 bool highlight = starting_chrome || text.length() > kAboutSchemeLength; local
80 styles.push_back(ACMatchClassification(0, highlight ? kMatch : kUrl));
82 if (highlight)
100 // Highlight the "chrome://" scheme, even for input "about:foo".
  /external/chromium_org/chrome/browser/
platform_util_win.cc 87 const ITEMIDLIST* highlight[] = { file_item }; local
89 hr = (*open_folder_and_select_itemsPtr)(dir_item, arraysize(highlight),
90 highlight, NULL);
  /external/chromium_org/chrome/browser/resources/
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 == '^')
211 highlight = self.GetHighlight(line, error)
212 self.assertTrue(highlight in ('Boolean', 'Number', 'String'))
253 highlight = self.GetHighlight(line, error)
254 self.assertFalse('var ' in highlight);
  /external/chromium_org/chrome/browser/resources/ntp_android/
ntp_android.css 41 -webkit-tap-highlight-color: transparent;
66 -webkit-tap-highlight-color: transparent;
opentabs_tablet.css 43 -webkit-tap-highlight-color: transparent;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 111 , highlight(o.highlight)
181 && highlight == o.highlight
StyleRareInheritedData.h 72 AtomicString highlight; // Apple-specific extension for custom highlight rendering. member in class:WebCore::StyleRareInheritedData
  /external/markdown/markdown/extensions/
codehilite.py 78 from pygments import highlight namespace
101 return highlight(self.src, lexer, formatter)

Completed in 469 milliseconds

1 2 3 4 5