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

1 2 3 4 5

  /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 \
  /prebuilts/tools/common/m2/repository/xslthl/xslthl/2.0.1/
xslthl-2.0.1.jar 
  /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);
SettingsPreferenceFragment.java 229 final Drawable highlight = getHighlightDrawable(); local
238 ((PreferenceGroupAdapter) adapter).setHighlightedDrawable(highlight);
253 highlight.setHotspot(centerX, centerY);
  /packages/apps/Gallery2/jni/
Android.mk 34 filters/highlight.c \
  /external/toybox/toys/other/
hexedit.c 141 static void highlight(int xx, int yy, int side) function
209 highlight(x, y, ro ? 3 : side);
216 highlight(x, y, 2);
225 highlight(x, y, ++side);
  /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/markdown/markdown/extensions/
codehilite.py 78 from pygments import highlight namespace
101 return highlight(self.src, lexer, formatter)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 132 highlight = {} variable
134 highlight[lnum[0]] = 1
145 if i in highlight:
216 highlight = {} variable
218 highlight[lnum[0]] = 1
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 132 highlight = {} variable
134 highlight[lnum[0]] = 1
145 if i in highlight:
216 highlight = {} variable
218 highlight[lnum[0]] = 1
  /frameworks/base/core/java/android/text/
BoringLayout.java 398 public void draw(Canvas c, Path highlight, Paint highlightpaint,
400 if (mDirect != null && highlight == null) {
403 super.draw(c, highlight, highlightpaint, cursorOffset);
Layout.java 244 * Draw this Layout on the specified canvas, with the highlight path drawn
248 * @param highlight the path of the highlight or cursor; can be null
249 * @param highlightPaint the paint for the highlight
251 * canvas while rendering the highlight
253 public void draw(Canvas canvas, Path highlight, Paint highlightPaint,
260 drawBackground(canvas, highlight, highlightPaint, cursorOffsetVertical,
424 public void drawBackground(Canvas canvas, Path highlight, Paint highlightPaint,
490 // There can be a highlight even without spans if we are drawing
492 if (highlight != null)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/build/
js_checks.py 54 highlight the corresponding part of a string.
159 highlight = self.error_highlight(
166 highlight)
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/docs/apidoc/
epydoc.js 140 function highlight(id) {
142 if (elt) elt.className = "py-highlight-hdr";
144 if (elt) elt.className = "py-highlight";
146 if (elt) elt.className = "py-highlight";
185 highlight(id);
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/docs/apidoc/
epydoc.js 140 function highlight(id) {
142 if (elt) elt.className = "py-highlight-hdr";
144 if (elt) elt.className = "py-highlight";
146 if (elt) elt.className = "py-highlight";
185 highlight(id);
  /external/lldb/www/python_reference/
epydoc.js 140 function highlight(id) {
142 if (elt) elt.className = "py-highlight-hdr";
144 if (elt) elt.className = "py-highlight";
146 if (elt) elt.className = "py-highlight";
185 highlight(id);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configHandler.py 158 (idle install dir)/config-highlight.def
163 (user home dir)/.idlerc/config-highlight.cfg
185 configTypes=('main','extensions','highlight','keys')
235 configType must be one of ('main','extensions','highlight','keys')
285 configType must be one of ('main','extensions','highlight','keys')
287 if not (configType in ('main','extensions','highlight','keys')):
304 if self.defaultCfg['highlight'].has_section(theme):
313 highlight={"foreground": fore,"background": back}
315 return highlight
318 return highlight["foreground"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configHandler.py 158 (idle install dir)/config-highlight.def
163 (user home dir)/.idlerc/config-highlight.cfg
185 configTypes=('main','extensions','highlight','keys')
235 configType must be one of ('main','extensions','highlight','keys')
285 configType must be one of ('main','extensions','highlight','keys')
287 if not (configType in ('main','extensions','highlight','keys')):
304 if self.defaultCfg['highlight'].has_section(theme):
313 highlight={"foreground": fore,"background": back}
315 return highlight
318 return highlight["foreground"
    [all...]
  /external/llvm/utils/
codegen-diff 118 disassembler, but it might help you highlight the more egregious cases
  /external/pdfium/fpdfsdk/src/javascript/
Consts.cpp 58 /* ------------------------------ highlight ------------------------------ */
67 IMPLEMENT_JS_CLASS_CONST(CJS_Highlight,highlight)
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintSettings.java 475 final Drawable highlight = getHighlightDrawable(); local
476 if (highlight != null) {
480 highlight.setHotspot(centerX, centerY);
481 view.setBackground(highlight);
  /external/llvm/utils/vim/
llvm.vim 87 " Syntax-highlight dejagnu test commands.
  /external/pdfium/fpdfsdk/include/javascript/
Field.h 131 FX_BOOL highlight(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
303 JS_STATIC_PROP(highlight, Field);
  /frameworks/base/core/java/android/widget/
Editor.java 157 // Used to highlight a word when it is corrected by the IME
    [all...]

Completed in 2384 milliseconds

1 2 3 4 5