Searched defs:Flags (Results 1 - 25 of 28) sorted by relevance

12

/external/skia/include/core/
H A DSkColorFilter.h45 enum Flags { enum in class:SkColorFilter
H A DSkShader.h63 enum Flags { enum in class:SkShader
H A DSkFlattenable.h183 enum Flags { enum in class:SkFlattenableWriteBuffer
186 Flags getFlags() const { return fFlags; }
187 void setFlags(Flags flags) { fFlags = flags; }
198 Flags fFlags;
H A DSkScalerContext.h148 enum Flags { enum in class:SkScalerContext
H A DSkBitmap.h464 enum Flags { enum in class:SkBitmap
501 enum Flags { enum in class:SkColorTable
507 /** Set the flags for the color table. See the Flags enum for possible values.
H A DSkPaint.h101 enum Flags { enum in class:SkPaint
125 @param flags The new flag bits for the paint (see Flags enum)
/external/webkit/JavaScriptGlue/
H A DJSRun.cpp60 JSFlags JSRun::Flags() const function in class:JSRun
H A DJSRun.h39 JSFlags Flags() const { return d()->flags; } function in class:JSGlueGlobalObject
67 JSFlags Flags() const;
/external/qemu/distrib/sdl-1.2.12/src/thread/win32/
H A Dwin_ce_semaphore.c36 static SYNCHHANDLE CleanUp (SYNCHHANDLE hSynch, DWORD Flags);
197 static SYNCHHANDLE CleanUp (SYNCHHANDLE hSynch, DWORD Flags) argument
200 "Flags" indicates which Win32 objects are required in the
206 if ((Flags & 4) == 1 && (hSynch->hEvent == NULL)) ok = FALSE;
207 if ((Flags & 2) == 1 && (hSynch->hMutex == NULL)) ok = FALSE;
208 if ((Flags & 1) == 1 && (hSynch->hEvent == NULL)) ok = FALSE;
/external/ppp/pppd/
H A Dchap_ms.h80 u_char Flags[1]; /* Must be zero */ member in struct:__anon4078
/external/libnfc-nxp/src/
H A DphFriNfc_NdefRecord.h87 * \name NDEF Record Header Flags
89 * Flags of the first record byte, as defined by the NDEF specification.
142 uint8_t Flags; member in struct:phFriNfc_NdefRecord
182 * The length of the ID field. See \ref phFriNfc_NdefRecord_t::Flags .
445 * This is a sub function to the Generate Function. This function will get bit fields of the Flags Byte
450 static uint8_t phFriNfc_NdefRecord_NdefFlag(uint8_t Flags,uint8_t Mask);
464 * and omit the other Flags bits. No Error Checks done here.
498 * and omit the other Flags bits. No Error Checks done here.
H A DphFriNfc_NdefRecord.c380 /* to check the bitfields in the Flags Byte and return the status flag */
381 static uint8_t phFriNfc_NdefRecord_NdefFlag(uint8_t Flags,uint8_t Mask) argument
384 check_flag = Flags & Mask;
411 FlagCheck=phFriNfc_NdefRecord_NdefFlag(Record->Flags,PH_FRINFC_NDEFRECORD_FLAGS_SR);
431 FlagCheck=phFriNfc_NdefRecord_NdefFlag(Record->Flags,PH_FRINFC_NDEFRECORD_FLAGS_IL);
485 Record->Flags = phFriNfc_NdefRecord_RecordFlag ( RawRecord);
579 *Buffer = ( (Record->Flags & PH_FRINFC_NDEFRECORD_FLAG_MASK) | (Record->Tnf & PH_FRINFC_NDEFRECORD_TNFBYTE_MASK));
619 FlagCheck=phFriNfc_NdefRecord_NdefFlag(Record->Flags,PH_FRINFC_NDEFRECORD_FLAGS_SR);
639 FlagCheck=phFriNfc_NdefRecord_NdefFlag(Record->Flags,PH_FRINFC_NDEFRECORD_FLAGS_IL);
659 FlagCheck=phFriNfc_NdefRecord_NdefFlag(Record->Flags,PH_FRINFC_NDEFRECORD_FLAGS_I
[all...]
/external/skia/include/utils/
H A DSkInterpolator.h72 enum Flags { enum in class:SkInterpolatorBase
H A DSkLayer.h117 enum Flags { enum in class:SkLayer
/external/chromium/base/
H A Dhistogram.h225 enum Flags { enum in class:Histogram
284 Sample minimum, Sample maximum, size_t bucket_count, Flags flags);
287 Flags flags);
313 void SetFlags(Flags flags) { flags_ = static_cast<Flags> (flags_ | flags); }
314 void ClearFlags(Flags flags) { flags_ = static_cast<Flags>(flags_ & ~flags); }
443 Flags flags_;
473 Sample minimum, Sample maximum, size_t bucket_count, Flags flags);
476 Flags flag
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dnt_io.c161 #define BooleanFlagOn(Flags,SingleFlag) ((BOOLEAN)((((Flags) & (SingleFlag)) != 0)))
209 int Flags; member in struct:_NT_PRIVATE_DATA
/external/webkit/JavaScriptCore/assembler/
H A DAbstractMacroAssembler.h295 enum Flags { enum in class:JSC::AbstractMacroAssembler::Call
307 Call(JmpSrc jmp, Flags flags)
313 bool isFlagSet(Flags flag)
325 Flags m_flags;
/external/chromium/third_party/icu/source/common/
H A Dubidiimp.h30 typedef uint32_t Flags; typedef
267 Flags flags;
/external/freetype/include/freetype/
H A Dtttables.h71 FT_UShort Flags; member in struct:TT_Header_
/external/icu4c/common/
H A Dubidiimp.h30 typedef uint32_t Flags; typedef
267 Flags flags;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.h74 } Flags; member in class:fst::FstHeader
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_ralink.h224 ULONG Flags; member in struct:_PMKID_CANDIDATE
234 //Flags for PMKID Candidate list structure
/external/gtest/test/
H A Dgtest_unittest.cc4338 // The Flags struct stores a copy of all Google Test flags.
4339 struct Flags { struct in namespace:testing
4340 // Constructs a Flags struct where each flag has its default value.
4341 Flags() : also_run_disabled_tests(false), function in struct:testing::Flags
4354 // Creates a Flags struct where the gtest_also_run_disabled_tests flag has
4356 static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) {
4357 Flags flags;
4362 // Creates a Flags struct where the gtest_break_on_failure flag has
4364 static Flags BreakOnFailure(bool break_on_failure) {
4365 Flags flag
[all...]
/external/libnfc-nxp/inc/
H A DphNfcTypes.h702 uint8_t Flags; /**< Information about the Flags member in struct:phNfc_sIso15693Info_t
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc5204 // The Flags struct stores a copy of all Google Test flags.
5205 struct Flags { struct in namespace:testing
5206 // Constructs a Flags struct where each flag has its default value.
5207 Flags() : also_run_disabled_tests(false), function in struct:testing::Flags
5222 // Creates a Flags struct where the gtest_also_run_disabled_tests flag has
5224 static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) {
5225 Flags flags;
5230 // Creates a Flags struct where the gtest_break_on_failure flag has
5232 static Flags BreakOnFailure(bool break_on_failure) {
5233 Flags flag
[all...]

Completed in 288 milliseconds

12