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

1 2

  /external/skia/src/core/
SkBitmapProcShader.h 30 virtual uint32_t getFlags() { return fFlags; }
53 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/skia/include/core/
SkBounder.h 64 uint16_t fFlags; //!< currently set to 0
SkColorShader.h 32 SkColorShader() : fFlags(0), fInheritColor(true) {}
38 SkColorShader(SkColor c) : fColor(c), fFlags(0), fInheritColor(false) {}
40 virtual uint32_t getFlags() { return fFlags; }
58 uint32_t fFlags; // cached after setContext()
SkFlattenable.h 186 Flags getFlags() const { return fFlags; }
187 void setFlags(Flags flags) { fFlags = flags; }
189 bool isCrossProcess() const { return (fFlags & kCrossProcess_Flag) != 0; }
192 return (fFlags & kCrossProcess_Flag) != 0;
195 bool persistTypeface() const { return (fFlags & kCrossProcess_Flag) != 0; }
198 Flags fFlags;
SkBitmap.h 472 uint8_t fFlags;
506 unsigned getFlags() const { return fFlags; }
511 bool isOpaque() const { return (fFlags & kColorsAreOpaque_Flag) != 0; }
565 uint8_t fFlags;
SkScalerContext.h 173 uint8_t fFlags;
184 return static_cast<SkPaint::Hinting>((fFlags & kHintingMask) >> 4);
188 fFlags = (fFlags & ~kHintingMask) | (hinting << 4);
  /external/skia/include/effects/
SkColorMatrixFilter.h 60 uint32_t fFlags;
  /external/webkit/JavaScriptGlue/
JSRun.h 71 JSFlags fFlags;
  /external/chromium/third_party/icu/public/common/unicode/
uniset.h 299 uint8_t fFlags; // Bit flag (see constants above)
    [all...]
unistr.h     [all...]
  /external/icu4c/common/unicode/
uniset.h 299 uint8_t fFlags; // Bit flag (see constants above)
    [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;
  /libcore/luni/src/test/java/com/google/coretests/
CoreTestPrinter.java 49 private int fFlags;
56 fFlags = flags;
147 if ((fFlags & CoreTestSuite.VERBOSE) != 0) {
CoreTestResult.java 38 protected int fFlags;
87 fFlags = flags;
109 if ((fFlags & CoreTestSuite.DRY_RUN) == 0) {
115 (fFlags & CoreTestSuite.INVERT_KNOWN_FAILURES) != 0;
119 (fFlags & CoreTestSuite.ISOLATE_NONE) == 0 ||
120 (fFlags & CoreTestSuite.ISOLATE_ALL) != 0;
CoreTestRunner.java 64 private int fFlags;
87 return new CoreTestResult(fFlags, fTimeout);
91 return new CoreTestPrinter(System.out, fFlags);
135 CoreTestSuite coreTestSuite = new CoreTestSuite(suite, fFlags, fStep, null);
237 fFlags = DEFAULT_FLAGS_DALVIK;
239 fFlags = DEFAULT_FLAGS_NON_DALVIK;
247 fFlags = fFlags | CoreTestSuite.RUN_ALL_TESTS;
249 fFlags = fFlags & ~CoreTestSuite.RUN_ALL_TESTS
    [all...]
CoreTestSuite.java 149 private int fFlags;
164 fFlags = flags;
  /external/chromium/third_party/icu/public/i18n/unicode/
regex.h 381 uint32_t fFlags; // The flags used when compiling the pattern.
    [all...]
  /external/chromium/third_party/icu/source/common/
rbbidata.h 126 uint32_t fFlags; /* Option Flags for this state table */
  /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/icu4c/i18n/unicode/
regex.h 577 uint32_t fFlags; // The flags used when compiling the pattern.
    [all...]
  /external/skia/include/views/
SkView.h 59 uint32_t getFlags() const { return fFlags; }
66 int isVisible() const { return fFlags & kVisible_Mask; }
67 int isEnabled() const { return fFlags & kEnabled_Mask; }
68 int isFocusable() const { return fFlags & kFocusable_Mask; }
352 uint8_t fFlags;

Completed in 393 milliseconds

1 2