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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Messaging/src/com/android/messaging/ui/
ViewPagerTabs.java 21 import android.graphics.Outline;
136 public void getOutline(View view, Outline outline) {
137 outline.setRect(0, 0, view.getWidth(), view.getHeight());
  /packages/apps/TV/src/com/android/tv/menu/
BaseCardView.java 23 import android.graphics.Outline;
86 public void getOutline(View view, Outline outline) {
87 outline.setRoundRect(
  /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
  /external/deqp/external/openglcts/modules/gl/
gl4cPipelineStatisticsQueryTests.hpp 529 * Using the basic outline check that VERTICES_SUBMITTED_ARB queries return
535 * Using the basic outline check that VERTICES_SUBMITTED_ARB queries don't
540 * Using the basic outline check that PRIMITIVES_SUBMITTED_ARB queries
547 * Using the basic outline check that PRIMITIVES_SUBMITTED_ARB queries
554 * Using the basic outline check that CLIPPING_INPUT_PRIMITIVES_ARB queries
560 * Using the basic outline check that CLIPPING_OUTPUT_PRIMITIVES_ARB
596 * Using the basic outline with a program having a vertex shader check that
617 * If GL 4.0 is supported, using the basic outline with a program having a
641 * If GL 3.2 is supported, using the basic outline with a program having a
646 * If GL 3.2 is supported, using the basic outline with a program having
    [all...]
  /external/freetype/src/autofit/
afloader.c 199 FT_Outline_EmboldenXY( &slot->outline,
204 FT_Outline_Transform( &slot->outline, &scale_down_matrix );
362 * the outline. Glyphs are scaled down proportionally to the
410 FT_Outline_Translate( &slot->outline,
423 if ( slot->outline.n_points == 0 )
426 /* now load the slot image into the auto-outline */
431 &gloader->base.outline,
526 /* transform the hinted outline if needed */
529 FT_Outline_Transform( &gloader->base.outline, &loader->trans_matrix );
533 /* we must translate our final outline by -pp1.x and compute *
    [all...]
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
438 FT_Outline* outline );
442 FT_Outline* outline );
  /external/icu/icu4c/source/samples/layout/
GnomeFontInstance.cpp 174 if (pointNumber >= fFace->glyph->outline.n_points) {
178 point.fX = fFace->glyph->outline.points[pointNumber].x >> 6;
179 point.fY = fFace->glyph->outline.points[pointNumber].y >> 6;
  /frameworks/base/libs/hwui/
CanvasState.cpp 208 void CanvasState::setClippingOutline(LinearAllocator& allocator, const Outline* outline) {
211 if (!outline->getAsRoundRect(&bounds, &radius)) return; // only RR supported
PathTessellator.h 35 * Structure used for threshold values in outline path tessellation.
111 * Approximates a convex outline into a clockwise Vector of 2d vertices.
113 * @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) { }
  /frameworks/minikin/tests/data/
Cherokee.ttx 161 <TTGlyph name=".notdef"/><!-- contains no outline data -->
163 <TTGlyph name="uni0301"/><!-- contains no outline data -->
165 <TTGlyph name="uni13A0"/><!-- contains no outline data -->
  /toolchain/binutils/binutils-2.27/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 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...]
  /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/libs/hwui/pipeline/skia/
RenderNodeDrawable.cpp 63 static void clipOutline(const Outline& outline, SkCanvas* canvas, const SkRect* pendingClip) {
68 * rounded rectangles; passing in a more complicated outline fails silently.
70 if (!outline.getAsRoundRect(&possibleRect, &radius)) {
123 // pass this outline to the children that may clip backward projected nodes
  /external/freetype/include/freetype/internal/
psaux.h 493 /* A structure used during glyph loading to store its outline. */
504 /* base :: The base glyph outline. */
506 /* current :: The current glyph outline. */
738 /* A structure used during glyph loading to store its outline. */
749 /* base :: The base glyph outline. */
751 /* current :: The current glyph outline. */
753 /* max_points :: maximum points in builder outline */
755 /* max_contours :: Maximum number of contours in builder outline. */
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleDrawable.java 31 import android.graphics.Outline;
642 * Populates <code>outline</code> with the first available layer outline,
645 * @param outline Outline in which to place the first available layer outline
648 public void getOutline(@NonNull Outline outline) {
654 children[i].mDrawable.getOutline(outline);
655 if (!outline.isEmpty()) return
    [all...]
  /external/fonttools/Lib/fontTools/pens/
basePen.py 6 it is a middle man between an outline and a drawing. In other words:
7 it is an abstraction for drawing outlines, making sure that outline objects
13 outline.draw(pen) # 'outline' draws itself onto 'pen'
16 new outlines. Eg. an outline object can be both a drawable object (it has a
17 draw() method) as well as a pen itself: you *build* an outline using pen
  /external/freetype/src/psaux/
psfont.c 524 cf2_outline_reset( &font->outline );
526 /* build the outline, passing the full translation */
529 (CF2_OutlineCallbacks)&font->outline,
543 if ( font->outline.root.windingMomentum >= 0 ) /* CFF is CCW */
553 /* finish storing client outline */
554 cf2_outline_close( &font->outline );

Completed in 2480 milliseconds

1 2 3 4 5 6 7 891011>>