Searched defs:highlight (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/ui/message_center/cocoa/
H A Dstatus_item_view.h23 // 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/markdown/markdown/extensions/
H A Dcodehilite.py78 from pygments import highlight namespace
101 return highlight(self.src, lexer, formatter)
/external/chromium_org/chrome/browser/autocomplete/
H A Dbuiltin_provider.cc77 // 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)
/external/chromium_org/third_party/fuzzymatch/
H A Dfuzzymatch.c41 * --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/chrome/browser/
H A Dplatform_util_win.cc87 const ITEMIDLIST* highlight[] = { local
91 hr = (*open_folder_and_select_itemsPtr)(dir_item, arraysize(highlight),
92 highlight, NULL);
/external/chromium_org/chrome/browser/
H A Dplatform_util_win.cc89 const ITEMIDLIST* highlight[] = { file_item }; local
91 hr = (*open_folder_and_select_itemsPtr)(dir_item, arraysize(highlight),
92 highlight, NULL);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareInheritedData.h71 AtomicString highlight; // Apple-specific extension for custom highlight rendering. member in class:WebCore::StyleRareInheritedData
H A DRenderStyle.h803 const AtomicString& highlight() const { return rareInheritedData->highlight; } function in class:WebCore::RenderStyle
1266 void setHighlight(const AtomicString& h) { SET_VAR(rareInheritedData, highlight, h); }
/external/chromium_org/tools/gn/
H A Derr.cc61 std::string highlight; local
62 highlight.resize(line_length);
64 highlight[i] = ' ';
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
[all...]
/external/chromium_org/ash/system/tray/
H A Dsystem_tray_delegate.h31 bool highlight() const { return connected || connecting; } function in struct:ash::NetworkIconInfo
/external/chromium_org/third_party/WebKit/Source/web/
H A DInspectorClientImpl.cpp61 void InspectorClientImpl::highlight() function in class:blink::InspectorClientImpl
64 agent->highlight();
H A DWebDevToolsAgentImpl.cpp80 // Use 99 as a big z-order number so that highlight is above other overlays.
81 static const int highlight = 99; member in namespace:OverlayZOrders
549 void WebDevToolsAgentImpl::highlight() function in class:blink::WebDevToolsAgentImpl
551 m_webViewImpl->addPageOverlay(this, OverlayZOrders::highlight);
/external/grub/stage2/
H A Dstage2.c106 print_entry (int y, int highlight, char *entry) argument
113 if (highlight && current_term->setcolorstate)
H A Dbuiltins.c579 char *highlight;
659 highlight = skip_to (0, arg);
667 if (! *highlight)
672 new_highlight_color = color_number (highlight);
674 && ! safe_parse_maxint (&highlight, &new_highlight_color))
691 " lines in the menu, and the color HIGHLIGHT is used to highlight the"
573 char *highlight; local
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DJavaScriptSourceFrame.js284 anchorBox.highlight = {
306 anchorBox.highlight = {
341 var lineNumber = anchorBox.highlight.lineNumber;
342 var startHighlight = anchorBox.highlight.startColumn;
343 var endHighlight = anchorBox.highlight.endColumn;
764 var highlight = this._getVisibleHighlight();
766 this._highlightItem(i, i === highlight);
767 this._shownVisibleHighlight = highlight;
H A DTimelinePanel.js1513 element.row.highlight(this._searchRegExp, this._highlightDomChanges);
1748 highlight: function(regExp, domChanges)
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_state_list_detailed_view.cc106 highlight(false) {
113 bool highlight; member in struct:ash::internal::tray::NetworkInfo
534 info->highlight =
616 info->highlight ? gfx::Font::BOLD : gfx::Font::NORMAL;
659 if (info->highlight) {
714 if (!info->highlight) {
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java1465 private static String dataCellStyle (final int column, final boolean highlight) argument
1468 return highlight ? CSS_DATA_HIGHLIGHT_FIRST : CSS_DATA_FIRST;
1470 return highlight ? CSS_DATA_HIGHLIGHT : CSS_DATA;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorOverlay.cpp218 static void buildNodeHighlight(Node* node, const HighlightConfig& highlightConfig, Highlight* highlight) argument
226 highlight->setDataFromConfig(highlightConfig);
230 highlight->type = HighlightTypeRects;
232 highlight->type = HighlightTypeNode;
233 buildNodeQuads(node, highlight->quads);
236 static void buildQuadHighlight(Page* page, const FloatQuad& quad, const HighlightConfig& highlightConfig, Highlight *highlight) argument
240 highlight->setDataFromConfig(highlightConfig);
241 highlight->type = HighlightTypeRects;
242 highlight->quads.append(quad);
275 m_client->highlight();
476 buildObjectForHighlight(const Highlight& highlight) argument
[all...]
/external/chromium_org/ui/native_theme/
H A Dnative_theme_win.cc76 // Create a 2x2 checkerboard pattern using the 3D face and highlight colors.
78 const SkColor highlight = color_utils::GetSysSkColor(COLOR_3DHILIGHT); local
79 SkColor buffer[] = { face, highlight, highlight, face };
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp801 Highlight highlight; local
802 document->page()->inspectorController().getHighlight(&highlight);
803 return ClientRectList::create(highlight.quads);
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.js3483 var highlight = this.calendarPicker.highlight();
3486 if (highlight) {
3487 firstDayInHighlight = highlight.firstDay().valueOf();
3488 lastDayInHighlight = highlight.lastDay().valueOf();
3510 weekNumberCell.setHighlighted(highlight && highlight.equals(week));
3766 CalendarPicker.prototype.highlight = function() {
3804 var highlight = day ? this._dateTypeConstructor.createFromDay(day) : null;
3805 this._setHighlight(highlight);
[all...]
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 1068 milliseconds

12