/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
html.go | 143 .outline-blue { outline: blue solid 2px; } 144 .outline-red { outline: red solid 2px; } 145 .outline-blueviolet { outline: blueviolet solid 2px; } 146 .outline-darkolivegreen { outline: darkolivegreen solid 2px; } 147 .outline-fuchsia { outline: fuchsia solid 2px; [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
html.go | 143 .outline-blue { outline: blue solid 2px; } 144 .outline-red { outline: red solid 2px; } 145 .outline-blueviolet { outline: blueviolet solid 2px; } 146 .outline-darkolivegreen { outline: darkolivegreen solid 2px; } 147 .outline-fuchsia { outline: fuchsia solid 2px; [all...] |
/external/freetype/src/psaux/ |
psft.c | 60 * generally respond to `Glyph_Too_Big' by getting a glyph outline 92 cf2_setGlyphWidth( CF2_Outline outline, 95 PS_Decoder* decoder = outline->decoder; 125 /* functions for handling client outline; */ 135 CF2_Outline outline = (CF2_Outline)callbacks; local 141 FT_ASSERT( outline && outline->decoder ); 144 builder = &outline->decoder->builder; 159 CF2_Outline outline = (CF2_Outline)callbacks; local 163 FT_ASSERT( outline && outline->decoder ) 203 CF2_Outline outline = (CF2_Outline)callbacks; local [all...] |
/developers/build/prebuilts/gradle/ClippingBasic/Application/src/main/res/values/ |
strings.xml | 24 <string name="clip_button">Enabled outline clipping</string> 25 <string name="unclip_button">Disable outline clipping</string>
|
/developers/samples/android/ui/views/Clipping/ClippingBasic/Application/src/main/res/values/ |
strings.xml | 24 <string name="clip_button">Enabled outline clipping</string> 25 <string name="unclip_button">Disable outline clipping</string>
|
/development/samples/browseable/ClippingBasic/res/values/ |
strings.xml | 24 <string name="clip_button">Enabled outline clipping</string> 25 <string name="unclip_button">Disable outline clipping</string>
|
/external/ImageMagick/Magick++/lib/Magick++/ |
TypeMetric.h | 31 // highest/upper grid coordinate used to place an outline point. 35 // grid coordinate used to place an outline point. Always a
|
/external/expat/examples/ |
Makefile.am | 33 noinst_PROGRAMS = elements outline 38 outline_SOURCES = outline.c
|
outline.vcxproj.filters | 18 <ClCompile Include="outline.c">
|
/external/libjpeg-turbo/doc/html/search/ |
search.css | 55 outline: none; 82 outline: none; 126 outline-style: none; 132 outline-style: none; 142 outline-style: none; 149 outline-style: none; 205 outline: none; 213 outline: none;
|
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
keywords.gperf | 45 outline, OUTLINE
|
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
RoundedRectHelper.java | 30 * Sets or removes a rounded rectangle outline on the given view. 39 * Sets or removes a rounded rectangle outline on the given view.
|
/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/ |
RenderNodePerfTest.java | 19 import android.graphics.Outline; 115 Outline a = new Outline(); 117 Outline b = new Outline();
|
/frameworks/base/tools/aapt2/compile/ |
NinePatch.cpp | 563 // Compute the outline based on opacity. 567 FindOutlineInsets(&mid_row, &nine_patch->outline.left, 568 &nine_patch->outline.right); 572 FindOutlineInsets(&mid_col, &nine_patch->outline.top, 573 &nine_patch->outline.bottom); 576 (width - 2) - nine_patch->outline.left - nine_patch->outline.right; 578 (height - 2) - nine_patch->outline.top - nine_patch->outline.bottom; 580 // Find the largest alpha value within the outline area [all...] |
Image.h | 143 * Outline of the image, calculated based on opacity. 145 Bounds outline; member in class:aapt::NinePatch 148 * The computed radius of the outline. If non-zero, the outline is a 154 * The largest alpha value within the outline. 181 * Optical layout bounds and round rect outline data must be serialized 193 * Serializes the rounded-rect outline.
|
/external/libnl/doc/stylesheets/ |
slidy.css | 319 setting class="outline" on ol or ul makes it behave as an 325 ol.outline li:hover { cursor: pointer } 326 ol.outline li.nofold:hover { cursor: default } 328 ul.outline li:hover { cursor: pointer } 329 ul.outline li.nofold:hover { cursor: default } 331 ol.outline { list-style:decimal; } 332 ol.outline ol { list-style-type:lower-alpha } 334 ol.outline li.nofold { 338 ol.outline li.unfolded { 342 ol.outline li.folded [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutWindowCoordinator.java | 38 * fronting, etc) and uses this information to manage the propertysheet and outline 41 * <li> If the Property Sheet and Outline Eclipse views are showing, it does nothing. 44 * <li> If just the outline is showing, then the property sheet is shown in a sashed 45 * pane below or to the right of the outline (depending on the dominant dimension 47 * <li> TBD: If just the property sheet is showing, should the outline be showed 49 * <li> If the outline is *not* showing, then the outline is instead shown 52 * <li> If the property sheet is not showing (which includes not showing in the outline 53 * view as well), then it will be shown inside the editor area, along with the outline 54 * which should also be there (since if the outline was showing outside the edito [all...] |
/frameworks/base/libs/hwui/ |
RenderNode.cpp | 132 const Outline& outline = properties().getOutline(); local 133 if (outline.getType() != Outline::Type::None) { 134 proto::Outline* poutline = pprops->mutable_outline(); 136 if (outline.getType() == Outline::Type::Empty) { 138 } else if (outline.getType() == Outline::Type::ConvexPath) { 140 if (const SkPath* path = outline.getPath()) [all...] |
RenderProperties.cpp | 167 auto& outline = mPrimitiveFields.mOutline; local 168 if (outline.getShouldClip()) { 169 if (outline.isEmpty()) { 170 output << indent << "(Clip to empty outline)"; 171 } else if (outline.willClip()) { 172 const Rect& bounds = outline.getBounds(); 173 output << indent << "(Clip to outline with bounds " << bounds.left << ", " << bounds.top
|
/external/freetype/src/base/ |
ftbbox.c | 21 /* This component has a _single_ role: to compute exact outline bounding */ 441 FT_Outline_Get_BBox( FT_Outline* outline, 455 if ( !outline ) 458 /* if outline is empty, return (0,0,0,0) */ 459 if ( outline->n_points == 0 || outline->n_contours <= 0 ) 468 /* all `on' points in the outline. Then, if the two boxes */ 471 vec = outline->points; 473 for ( n = 0; n < outline->n_points; n++ ) 477 if ( FT_CURVE_TAG( outline->tags[n] ) == FT_CURVE_TAG_ON [all...] |
/external/freetype/src/tools/ftfuzzer/ |
rasterfuzzer.cc | 112 FT_Outline outline = local 122 FT_Outline_Get_Bitmap( library, &outline, &bitmap_mono ); 123 FT_Outline_Get_Bitmap( library, &outline, &bitmap_gray );
|
/frameworks/base/libs/hwui/protos/ |
hwui.proto | 54 optional Outline outline = 23; 65 message Outline {
|
/external/freetype/src/pfr/ |
pfrobjs.c | 321 FT_Outline* outline = &pfrslot->outline; local 356 outline->n_points = 0; 357 outline->n_contours = 0; 360 /* load the glyph outline (FT_LOAD_NO_RECURSE isn't supported) */ 375 /* copy outline data */ 376 *outline = slot->glyph.loader->base.outline; 378 outline->flags &= ~FT_OUTLINE_OWNER; 379 outline->flags |= FT_OUTLINE_REVERSE_FILL [all...] |
/external/llvm/tools/llvm-c-test/ |
disassemble.c | 41 char outline[1024]; local 51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline, 52 sizeof(outline)); 57 pprint(pos, buf + pos, l, outline);
|
/external/pdfium/fxjs/ |
cjs_highlight.cpp | 13 {"o", JSConstSpec::String, 0, "outline"}};
|