Searched defs:fill (Results 1 - 25 of 197) sorted by path

12345678

/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/ ...
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontreenodestream.h268 void (*fill) (struct ANTLR3_COMMON_TREE_NODE_STREAM_struct * ctns, ANTLR3_INT32 k); member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBufferedTokenStream.java236 fill();
261 public void fill() { method in class:BufferedTokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java101 if ( n > 0 ) fill(n); // out of elements?
105 public void fill(int n) { method in class:LookaheadStream
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h88 if ( n > 0 ) fill(n); // out of elements?
92 public void fill(int n) { function in class:FastQueue
/external/bluetooth/bluedroid/bta/sys/
H A Dutl.c125 BOOLEAN fill = FALSE; local
138 if (k > 0 || fill)
141 fill = TRUE;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java258 public static void fill( method in class:Arrays
268 public static void fill( method in class:Arrays
278 public static void fill( method in class:Arrays
288 public static void fill( method in class:Arrays
298 public static void fill( method in class:Arrays
/external/chromium_org/ash/accelerators/
H A Ddebug_commands.cc19 gfx::ImageSkia CreateWallpaperImage(SkColor fill, SkColor rect) { argument
25 canvas.DrawColor(fill);
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_manager_browsertest.cc526 // Don't fill the password form, just navigate away. Shouldn't prompt.
546 std::string fill = local
555 ASSERT_TRUE(content::ExecuteScript(RenderViewHost(), fill));
1037 std::string fill = local
1040 ASSERT_TRUE(content::ExecuteScript(RenderViewHost(), fill));
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationNodeTiming.cpp34 String AnimationNodeTiming::fill() function in class:blink::AnimationNodeTiming
121 void AnimationNodeTiming::setFill(String fill) argument
124 TimingInput::setFillMode(timing, fill);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBorderImageSliceValue.cpp33 CSSBorderImageSliceValue::CSSBorderImageSliceValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> slices, bool fill) argument
36 , m_fill(fill)
45 // Now the fill keywords if it is present.
47 return text + " fill";
H A DCSSBorderImageSliceValue.h37 static PassRefPtrWillBeRawPtr<CSSBorderImageSliceValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> slices, bool fill) argument
39 return adoptRefWillBeNoop(new CSSBorderImageSliceValue(slices, fill));
56 CSSBorderImageSliceValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> slices, bool fill);
H A DCSSGradientValue.cpp1048 GradientFill fill = FarthestCorner; local
1053 fill = ClosestSide;
1056 fill = ClosestCorner;
1059 fill = FarthestSide;
1063 fill = FarthestCorner;
1069 // Now compute the end radii based on the second point, shape and fill.
1072 switch (fill) {
H A DCSSPrimitiveValueMappings.h3075 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(TextEmphasisFill fill) argument
3079 switch (fill) {
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp2868 // When parsing any fill shorthand property, we let it handle building up the lists for all
5963 // FIXME: For backwards compatibility, -webkit-border-image, -webkit-mask-box-image and -webkit-box-reflect have to do a fill by default.
6937 // The first argument is the "from" image. It is a fill image.
6945 // The second argument is the "to" image. It is a fill image.
7416 RefPtrWillBeRawPtr<CSSPrimitiveValue> fill = nullptr; local
7421 if (fill || shape || (valueListSize != 1 && !inShorthand()))
7429 if (fill || shape || (valueListSize != 1 && !inShorthand()))
7437 if (fill)
7439 fill = cssValuePool().createIdentifierValue(value->id);
7450 if (fill
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1045 void CanvasRenderingContext2D::fill(const String& windingRuleString) function in class:blink::CanvasRenderingContext2D
1050 void CanvasRenderingContext2D::fill(Path2D* domPath, const String& windingRuleString) function in class:blink::CanvasRenderingContext2D
2133 void CanvasRenderingContext2D::drawTextInternal(const String& text, float x, float y, bool fill, float maxWidth, bool useMaxWidth) argument
2156 if (!fill && gradient && gradient->isZeroSize())
2160 if (fill && gradient && gradient->isZeroSize())
2206 if (!fill)
2209 c->setTextDrawingMode(fill ? TextModeFill : TextModeStroke);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DNinePieceImage.cpp44 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices, const BorderImageLengthBox& outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule) argument
51 m_data.access()->fill = fill;
57 : fill(false)
69 , fill(other.fill)
83 && fill == other.fill
H A DNinePieceImage.h47 bool fill : 1;
63 NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices,
76 bool fill() const { return m_data->fill; } function in class:blink::NinePieceImage
77 void setFill(bool fill) { m_data.access()->fill = fill; } argument
94 m_data.access()->fill = other.m_data->fill;
116 m_data.access()->fill
[all...]
H A DRenderStyle.h672 bool maskBoxImageSlicesFill() const { return rareNonInheritedData->m_maskBoxImage.fill(); }
1175 void setMaskBoxImageSlicesFill(bool fill) argument
1177 rareNonInheritedData.access()->m_maskBoxImage.setFill(fill);
1350 void setTextEmphasisFill(TextEmphasisFill fill) { SET_VAR(rareInheritedData, textEmphasisFill, fill); } argument
H A DSVGRenderStyle.h138 if (!(fill->opacity == obj))
139 fill.access()->opacity = obj;
145 if (!(fill->paintType == type))
146 fill.access()->paintType = type;
147 if (!(fill->paintColor == color))
148 fill.access()->paintColor = color;
149 if (!(fill->paintUri == uri))
150 fill.access()->paintUri = uri;
153 if (!(fill->visitedLinkPaintType == type))
154 fill
410 DataRef<StyleFillData> fill; member in class:blink::SVGRenderStyle
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGResources.cpp324 if (RenderSVGResourceContainer* fill = m_fillStrokeData->fill)
325 fill->layoutIfNeeded();
366 if (m_fillStrokeData->fill)
367 m_fillStrokeData->fill->removeClientFromCache(object, markForInvalidation);
418 if (m_fillStrokeData->fill == resource) {
419 m_fillStrokeData->fill->removeAllClientsFromCache();
420 m_fillStrokeData->fill = 0;
480 if (m_fillStrokeData->fill)
481 set.add(m_fillStrokeData->fill);
613 setFill(RenderSVGResourceContainer* fill) argument
[all...]
H A DSVGResources.h66 RenderSVGResourceContainer* fill() const { return m_fillStrokeData ? m_fillStrokeData->fill : 0; } function in class:blink::SVGResources
156 // fill: 'shapes' and 'text content elements'
163 : fill(0)
173 RenderSVGResourceContainer* fill; member in struct:blink::SVGResources::FillStrokeData
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSVGSMILElement.cpp738 SVGSMILElement::FillMode SVGSMILElement::fill() const function in class:blink::SVGSMILElement
1138 return fill() == FillFreeze ? Frozen : Inactive;
1143 // Animation does not contribute during the active time if it is past its repeating duration and has fill=remove.
1144 return (m_activeState == Active && (fill() == FillFreeze || elapsed <= m_interval.begin + repeatingDuration())) || m_activeState == Frozen;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js175 "fill", "outline", "outline-color", "stroke", "text-shadow", "-webkit-box-shadow", "-webkit-column-rule-color",
466 "none", "all", "auto", "visible", "visiblepainted", "visiblefill", "visiblestroke", "painted", "fill", "stroke", "bounding-box"
566 "-webkit-animation-fill-mode": { values: [
797 "fill": 2,
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphPageTreeNode.cpp121 static bool fill(GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) function in namespace:blink
218 // Success is not guaranteed. For example, Times fails to fill page 260, giving glyph data
223 haveGlyphs = fill(m_page.get(), 0, GlyphPage::size, buffer, bufferLength, toSimpleFontData(fontData));
238 // If this is a custom font needs to be loaded, do not fill
249 haveGlyphs |= fill(m_page.get(), from, to - from, buffer + from * (start < 0x10000 ? 1 : 2), (to - from) * (start < 0x10000 ? 1 : 2), range.fontData().get());
313 // ask the system for the best font to use and fill that glyph in for us.

Completed in 662 milliseconds

12345678