HomeSort by relevance Sort by last modified time
    Searched full:outline (Results 201 - 225 of 743) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py 74 outline = []
85 outline.append('_')
87 outline.append(c)
93 thisline = EMPTYSTRING.join(outline)
  /prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py 74 outline = []
85 outline.append('_')
87 outline.append(c)
93 thisline = EMPTYSTRING.join(outline)
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsynth.h 72 /* Slant an outline glyph to the right by about 12 degrees. */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 74 outline = []
85 outline.append('_')
87 outline.append(c)
93 thisline = EMPTYSTRING.join(outline)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 74 outline = []
85 outline.append('_')
87 outline.append(c)
93 thisline = EMPTYSTRING.join(outline)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
EclipseUiHelper.java 30 /** View Id for the default Eclipse Content Outline view. */
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
StateView.java 26 * It behaves like the Eclipse Outline View: Each active editor provides the GL state content
  /system/bt/tools/scripts/
change_types.sh 15 # branches. Follow this workflow outline:
  /external/chromium-trace/catapult/third_party/polymer/components/core-overlay/
demo.html 48 outline: 1px solid rgba(0,0,0,0.2);
89 outline: 1px solid rgba(0,0,0,0.2);
117 outline: 1px solid rgba(0,0,0,0.2);
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/
testharness-tests.js 47 'blink/interpolation/outline-color-interpolation.html',
48 'blink/interpolation/outline-offset-interpolation.html',
49 'blink/interpolation/outline-width-interpolation.html',
  /external/toybox/
README 112 outline: http://landley.net/talks/celf-2013.txt
119 outline: http://landley.net/talks/ohio-2013.txt
132 outline: http://landley.net/talks/celf-2015.txt
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
android.graphics.drawable.shapes.Shape.html 86 <A NAME="android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/graphics/drawable/shapes/Shape.html#getOutline(android.graphics.Outline)" target="_top"><code>getOutline</code></A>(<code>Outline</code>)</nobr>
  /frameworks/base/docs/html/sdk/api_diff/22/changes/
pkg_android.graphics.html 84 <A NAME="Outline"></A>
85 <nobr><A HREF="android.graphics.Outline.html">Outline</A></nobr>
  /frameworks/base/libs/hwui/
PathTessellator.h 35 * Structure used for threshold values in outline path tessellation.
109 * Approximates a convex outline into a clockwise Vector of 2d vertices.
111 * @param path The outline to be approximated
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
ListenerBindingObject.java 21 import android.graphics.Outline;
211 public void getOutline(View view, Outline outline) { }
  /packages/apps/Launcher3/src/com/android/launcher3/
HolographicOutlineHelper.java 33 * Utility class to generate shadow and outline effect, which are used for click feedback
84 * Applies a more expensive and accurate outline to whatever is currently drawn in a specified
145 // draw the bright outline
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/windres/
windres.exp 129 set outline [oneline $out]
131 if ![string match $patline $outline] {
133 send_log "> $outline\n"
  /external/freetype/src/pshinter/
pshalgo.c 1173 /* load outline point coordinates into hinter glyph */
1178 FT_Vector* vec = glyph->outline->points;
    [all...]
  /external/pdfium/third_party/freetype/src/pshinter/
pshalgo.c 1079 /* load outline point coordinates into hinter glyph */
1084 FT_Vector* vec = glyph->outline->points;
1113 /* save hinted point coordinates back to outline */
1120 FT_Vector* vec = glyph->outline->points;
1121 char* tags = glyph->outline->tags;
1156 FT_Outline* outline,
1170 if ( FT_NEW_ARRAY( glyph->points, outline->n_points ) ||
1171 FT_NEW_ARRAY( glyph->contours, outline->n_contours ) )
1174 glyph->num_points = (FT_UInt)outline->n_points;
1175 glyph->num_contours = (FT_UInt)outline->n_contours
    [all...]
  /external/freetype/src/autofit/
afhints.h 29 * The definition of outline glyph hints. These are shared by all
73 * find segments in an outline.
196 * Other points in the outline must be interpolated using the
435 FT_Outline* outline );
439 FT_Outline* outline );
  /external/jhead/
iptc.c 178 char OutLine[101];
189 OutLine[OutLineChars++] = Data[a];
193 OutLine[OutLineChars++] = '?';
197 OutLine[OutLineChars] = 0;
199 puts(OutLine);
  /frameworks/base/core/java/android/view/
NotificationHeaderView.java 22 import android.graphics.Outline;
60 public void getOutline(View view, Outline outline) {
62 outline.setRect(0, 0, getWidth(), mHeaderBackgroundHeight);
63 outline.setAlpha(1f);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContainer.java 24 import android.graphics.Outline;
385 public void getOutline(@NonNull Outline outline) {
388 mSplitBackground.getOutline(outline);
393 mBackground.getOutline(outline);
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleDrawable.java 36 import android.graphics.Outline;
661 * Populates <code>outline</code> with the first available layer outline,
664 * @param outline Outline in which to place the first available layer outline
667 public void getOutline(@NonNull Outline outline) {
673 children[i].mDrawable.getOutline(outline);
674 if (!outline.isEmpty()) return
    [all...]
  /development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
MediaPlayerGlue.java 87 mThumbsDownAction.setIndex(PlaybackControlsRow.ThumbsAction.OUTLINE);
88 mThumbsUpAction.setIndex(PlaybackControlsRow.ThumbsAction.OUTLINE);
180 mThumbsUpAction.setIndex(PlaybackControlsRow.ThumbsAction.OUTLINE);
183 mThumbsDownAction.setIndex(PlaybackControlsRow.ThumbsAction.OUTLINE);
187 mThumbsDownAction.setIndex(PlaybackControlsRow.ThumbsAction.OUTLINE);
190 mThumbsUpAction.setIndex(PlaybackControlsRow.ThumbsAction.OUTLINE);

Completed in 2262 milliseconds

1 2 3 4 5 6 7 891011>>