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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfResetFormActionDictionary_autogen.cpp 35 int64_t SkPdfResetFormActionDictionary::Flags(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Flags", "");
44 return get("Flags", "") != NULL;
SkPdfSubmitFormActionDictionary_autogen.cpp 47 int64_t SkPdfSubmitFormActionDictionary::Flags(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Flags", "");
56 return get("Flags", "") != NULL;
  /external/chromium_org/third_party/skia/include/core/
SkColorFilter.h 84 enum Flags {
95 /** Returns the flags for this filter. Override in subclasses to return
96 custom flags.
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfResetFormActionDictionary_autogen.cpp 35 int64_t SkPdfResetFormActionDictionary::Flags(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Flags", "");
44 return get("Flags", "") != NULL;
SkPdfSubmitFormActionDictionary_autogen.cpp 47 int64_t SkPdfSubmitFormActionDictionary::Flags(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Flags", "");
56 return get("Flags", "") != NULL;
  /external/skia/include/core/
SkColorFilter.h 84 enum Flags {
95 /** Returns the flags for this filter. Override in subclasses to return
96 custom flags.
  /external/chromium_org/chrome/common/extensions/permissions/
settings_override_permission_unittest.cc 23 enum Flags {
29 scoped_refptr<Extension> GetPermissionSet(uint32 flags) {
37 if (flags & kHomepage)
39 if (flags & kStartupPages) {
44 if (flags & kSearchProvider) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIInstrInfo.h 56 enum Flags {
  /external/chromium_org/third_party/skia/include/effects/
SkGradientShader.h 22 enum Flags {
50 uint32_t flags, const SkMatrix* localMatrix);
62 uint32_t flags, const SkMatrix* localMatrix) {
63 return CreateLinear(pts, colors, pos, count, mode, flags, localMatrix);
86 uint32_t flags, const SkMatrix* localMatrix);
98 uint32_t flags, const SkMatrix* localMatrix) {
99 return CreateRadial(center, radius, colors, pos, count, mode, flags, localMatrix);
126 uint32_t flags, const SkMatrix* localMatrix);
141 uint32_t flags, const SkMatrix* localMatrix) {
143 flags, localMatrix)
    [all...]
  /external/llvm/include/llvm/MC/
MCFixupKindInfo.h 37 /// Flags describing additional information on this fixup kind.
38 unsigned Flags;
MCSectionELF.h 38 /// Flags - This is the sh_flags field of a section, drawn from the enums.
40 unsigned Flags;
51 MCSectionELF(StringRef Section, unsigned type, unsigned flags,
53 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
77 unsigned getFlags() const { return Flags; }
  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 32 unsigned Flags = 0;
34 Flags |= MachineMemOperand::MOLoad;
36 Flags |= MachineMemOperand::MOStore;
41 Flags, MFFrame->getObjectSize(FI),
  /external/mesa3d/src/gallium/drivers/radeon/
SIInstrInfo.h 56 enum Flags {
  /external/skia/include/effects/
SkGradientShader.h 22 enum Flags {
50 uint32_t flags, const SkMatrix* localMatrix);
62 uint32_t flags, const SkMatrix* localMatrix) {
63 return CreateLinear(pts, colors, pos, count, mode, flags, localMatrix);
86 uint32_t flags, const SkMatrix* localMatrix);
98 uint32_t flags, const SkMatrix* localMatrix) {
99 return CreateRadial(center, radius, colors, pos, count, mode, flags, localMatrix);
126 uint32_t flags, const SkMatrix* localMatrix);
141 uint32_t flags, const SkMatrix* localMatrix) {
143 flags, localMatrix)
    [all...]
  /external/lldb/include/lldb/Core/
Flags.h 1 //===-- Flags.h -------------------------------------------------*- C++ -*-===//
21 /// @class Flags Flags.h "lldb/Core/Flags.h"
22 /// @brief A class to manage flags.
24 /// The Flags class managed flag bits and allows testing and
27 class Flags
31 /// The value type for flags is a 32 bit unsigned integer type.
39 /// of the flags.
42 /// The initial value for all flags
    [all...]
  /external/chromium_org/media/blink/
test_response_generator.h 18 enum Flags {
42 // headers via |flags|.
43 blink::WebURLResponse Generate206(int64 first_byte_offset, Flags flags);
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
Flags.java 8 * Base class for bit field used as flags.
10 * @param <F> the type of the flags.
12 public abstract class Flags<F extends Flags<F>> {
19 * @param flags initial value of the flag.
21 protected Flags(int flags) {
23 mFlags = flags;
41 throw new UnsupportedOperationException("Flags is immutable.");
  /external/chromium_org/remoting/protocol/
network_settings.h 24 enum Flags {
46 : flags(NAT_TRAVERSAL_DISABLED),
49 DCHECK(!(flags & (NAT_TRAVERSAL_STUN | NAT_TRAVERSAL_RELAY)) ||
50 (flags & NAT_TRAVERSAL_OUTGOING));
53 explicit NetworkSettings(uint32 flags)
54 : flags(flags),
65 uint32 flags; member in struct:remoting::protocol::NetworkSettings
  /external/chromium_org/third_party/skia/include/pdf/
SkPDFDocument.h 32 enum Flags {
43 explicit SK_API SkPDFDocument(Flags flags = (Flags)0);
  /external/clang/lib/Sema/
Scope.cpp 21 void Scope::Init(Scope *parent, unsigned flags) {
23 Flags = flags;
25 if (parent && !(flags & FnScope)) {
42 if ((Flags & (FnScope | ClassScope | BlockScope | TemplateParamScope |
45 Flags |= parent->getFlags() & OpenMPSimdDirectiveScope;
56 if (flags & FnScope) FnParent = this;
59 if (Flags & (ClassScope | FnScope)) {
63 if (flags & BreakScope) BreakParent = this;
64 if (flags & ContinueScope) ContinueParent = this
    [all...]
  /external/compiler-rt/lib/dfsan/
dfsan.h 54 struct Flags {
66 extern Flags flags_data;
67 inline Flags &flags() { function in namespace:__dfsan
  /external/compiler-rt/lib/msan/
msan_flags.h 19 // Flags.
20 struct Flags {
36 Flags *flags();
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.h 21 struct Flags : CommonFlags, DDFlags {
51 inline Flags* flags() { function in namespace:__dsan
52 static Flags flags; local
53 return &flags;
  /external/llvm/lib/Target/R600/
SIInstrInfo.h 195 enum Flags {
  /external/llvm/lib/Target/XCore/
XCoreTargetObjectFile.cpp 96 unsigned Flags = 0;
99 Flags |= ELF::SHF_ALLOC;
102 Flags |= ELF::SHF_EXECINSTR;
104 Flags |= ELF::XCORE_SHF_CP_SECTION;
106 Flags |= ELF::XCORE_SHF_DP_SECTION;
109 Flags |= ELF::SHF_WRITE;
113 Flags |= ELF::SHF_MERGE;
116 Flags |= ELF::SHF_STRINGS;
118 return Flags;
126 // Infer section flags from the section name if we can
    [all...]

Completed in 1320 milliseconds

1 2 3 4 5 6 7 8 91011>>