HomeSort by relevance Sort by last modified time
    Searched defs:fFlags (Results 1 - 24 of 24) sorted by null

  /external/skia/src/core/
SkBitmapProcShader.h 30 virtual uint32_t getFlags() { return fFlags; }
54 uint32_t fFlags;
SkRegion_path.cpp 336 uint8_t fFlags;
345 fFlags = 0;
357 if (base->fFlags == Edge::kCompleteLink) {
368 if ((base->fFlags & Edge::kY0Link) == 0) {
371 if ((e->fFlags & Edge::kY1Link) == 0 && y0 == e->fY1) {
374 e->fFlags = SkToU8(e->fFlags | Edge::kY1Link);
381 if ((base->fFlags & Edge::kY1Link) == 0) {
384 if ((e->fFlags & Edge::kY0Link) == 0 && y1 == e->fY0) {
387 e->fFlags = SkToU8(e->fFlags | Edge::kY0Link)
    [all...]
  /external/webkit/Source/JavaScriptGlue/
JSRun.h 61 JSFlags fFlags;
  /external/skia/include/core/
SkBounder.h 66 uint16_t fFlags; //!< currently set to 0
SkColorShader.h 42 virtual uint32_t getFlags() { return fFlags; }
67 uint32_t fFlags; // cached after setContext()
SkDevice.h 239 uint32_t fFlags; // SkPaint::getFlags()
SkFlattenable.h 170 Flags getFlags() const { return fFlags; }
171 void setFlags(Flags flags) { fFlags = flags; }
173 bool isCrossProcess() const { return (fFlags & kCrossProcess_Flag) != 0; }
176 return (fFlags & kCrossProcess_Flag) != 0;
179 bool persistTypeface() const { return (fFlags & kCrossProcess_Flag) != 0; }
182 Flags fFlags;
SkBitmap.h 590 uint8_t fFlags;
635 unsigned getFlags() const { return fFlags; }
640 bool isOpaque() const { return (fFlags & kColorsAreOpaque_Flag) != 0; }
694 uint8_t fFlags;
SkScalerContext.h 199 uint16_t fFlags;
210 return static_cast<SkPaint::Hinting>((fFlags & kHintingMask) >> 4);
214 fFlags = (fFlags & ~kHintingMask) | (hinting << 4);
  /external/skia/include/effects/
SkColorMatrixFilter.h 61 uint32_t fFlags;
  /external/icu4c/common/unicode/
uniset.h 299 uint8_t fFlags; // Bit flag (see constants above)
    [all...]
unistr.h     [all...]
  /external/skia/include/utils/
SkInterpolator.h 53 fFlags = SkToU8((fFlags & ~kMirror) | (int)mirror);
66 fFlags = SkToU8((fFlags & ~kReset) | (int)reset);
81 uint8_t fFlags;
SkLayer.h 128 uint32_t fFlags;
SkSfntUtils.h 12 uint16_t fFlags;
  /external/icu4c/common/
rbbidata.h 126 uint32_t fFlags; /* Option Flags for this state table */
  /external/icu4c/layout/
GlyphPositionAdjustments.h 90 le_uint32 fFlags;
228 : fFlags(0)
240 return (fFlags & EEF_IS_CURSIVE_GLYPH) != 0;
245 return (fFlags & EEF_BASELINE_IS_LOGICAL_END) != 0;
250 fFlags &= ~EEF_HAS_ENTRY_POINT;
255 fFlags &= ~EEF_HAS_EXIT_POINT;
261 fFlags |= (EEF_HAS_ENTRY_POINT | EEF_IS_CURSIVE_GLYPH | EEF_BASELINE_IS_LOGICAL_END);
263 fFlags |= (EEF_HAS_ENTRY_POINT | EEF_IS_CURSIVE_GLYPH);
272 fFlags |= (EEF_HAS_EXIT_POINT | EEF_IS_CURSIVE_GLYPH | EEF_BASELINE_IS_LOGICAL_END);
274 fFlags |= (EEF_HAS_EXIT_POINT | EEF_IS_CURSIVE_GLYPH)
    [all...]
  /external/skia/bench/
PathBench.cpp 22 Flags fFlags;
25 PathBench(void* param, Flags flags) : INHERITED(param), fFlags(flags) {
39 fFlags & kStroke_Flag ? "stroke" : "fill",
40 fFlags & kBig_Flag ? "big" : "small");
51 if (fFlags & kBig_Flag) {
58 if (fFlags & kBig_Flag) {
  /external/skia/samplecode/
SampleDraw.cpp 82 Draw() : fFlags(0) {}
87 int getFlags() const { return fFlags; }
90 bool isSelected() const { return SkToBool(fFlags & kSelected_Flag); }
93 fFlags |= kSelected_Flag;
95 fFlags &= ~kSelected_Flag;
151 int fFlags;
SampleText.cpp 186 uint32_t fFlags;
351 paint.setFlags(paint.getFlags() | gHints[index].fFlags);
  /external/icu4c/i18n/unicode/
regex.h 577 uint32_t fFlags; // The flags used when compiling the pattern.
    [all...]
  /external/skia/include/views/
SkView.h 61 uint32_t getFlags() const { return fFlags; }
68 int isVisible() const { return fFlags & kVisible_Mask; }
69 int isEnabled() const { return fFlags & kEnabled_Mask; }
70 int isFocusable() const { return fFlags & kFocusable_Mask; }
71 int isClipToBounds() const { return !(fFlags & kNoClip_Mask); }
356 uint8_t fFlags;
  /external/skia/src/effects/
SkGradientShader.cpp 129 virtual uint32_t getFlags() { return fFlags; }
141 uint8_t fFlags;
312 fFlags = 0;
346 fFlags = 0;
404 fFlags = this->INHERITED::getFlags();
406 fFlags |= kOpaqueAlpha_Flag;
411 fFlags |= kHasSpan16_Flag;
813 fFlags |= SkShader::kConstInY32_Flag;
814 if ((fFlags & SkShader::kHasSpan16_Flag) && !paint.isDither()) {
818 fFlags |= SkShader::kConstInY16_Flag
    [all...]
  /external/skia/gpu/include/
GrTypes.h 352 GrTextureFlags fFlags; //!< bitfield of TextureFlags
355 * fFlags contains kRenderTarget_GrTextureFlag.
541 * set in fFlags.
560 * fFlags.

Completed in 384 milliseconds