/external/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/ |
Runner.java | 36 protected final Flags flags = new Flags(); field in class:Runner 43 CmdLineParser parser = new CmdLineParser(flags); 47 if (flags.compilerArgsFile == null) { 143 new FileInputStream(flags.compilerArgsFile), "UTF-8"))) { 245 private static class Flags {
|
/external/chromium_org/third_party/skia/include/core/ |
SkBitmap.h | 742 enum Flags { [all...] |
SkShader.h | 82 enum Flags { 231 * Helper to check the flags to know if it is legal to call shadeSpan16() 233 static bool CanCallShadeSpan16(uint32_t flags) { 234 return (flags & kHasSpan16_Flag) != 0; 351 uint32_t fGradientFlags; //!< see SkGradientShader::Flags
|
/external/chromium_org/third_party/skia/src/core/ |
SkReadBuffer.h | 68 enum Flags { 75 void setFlags(uint32_t flags) { fFlags = flags; }
|
SkScalerContext.h | 114 enum Flags { 123 // together, these two flags resulting in a two bit value which matches 125 kHinting_Shift = 7, // to shift into the other flags above
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkOTTable_EBLC.h | 66 union Flags { 84 } flags; member in struct:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable
|
/external/e2fsprogs/lib/ext2fs/ |
nt_io.c | 160 #define BooleanFlagOn(Flags,SingleFlag) ((BOOLEAN)((((Flags) & (SingleFlag)) != 0))) 208 int Flags; 222 static errcode_t nt_open(const char *name, int flags, io_channel *channel); 1075 nt_open(const char *name, int flags, io_channel *channel) 1152 if(!_Ext2OpenDevice(name, (BOOLEAN)!BooleanFlagOn(flags, EXT2_FLAG_RW), &NtData->Handle, &NtData->OpenedReadonly, &Errno))
|
/external/eigen/Eigen/src/Core/ |
TriangularMatrix.h | 147 Flags = (MatrixTypeNestedCleaned::Flags & (HereditaryBits) & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit))) | Mode, 596 if(OtherDerived::Flags & EvalBeforeAssigningBit) 634 if(internal::traits<OtherDerived>::Flags & EvalBeforeAssigningBit) 674 if(internal::traits<Derived>::Flags & EvalBeforeAssigningBit)
|
/external/eigen/Eigen/src/SparseCore/ |
SparseVector.h | 43 Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit),
|
/external/lldb/include/lldb/DataFormatters/ |
TypeSummary.h | 36 class Flags 40 Flags () : 44 Flags (const Flags& other) : 48 Flags (uint32_t value) : 52 Flags& 53 operator = (const Flags& rhs) 61 Flags& 68 Flags& 81 Flags [all...] |
TypeSynthetic.h | 82 class Flags 86 Flags () : 90 Flags (const Flags& other) : 94 Flags (uint32_t value) : 98 Flags& 99 operator = (const Flags& rhs) 107 Flags& 114 Flags& 127 Flags [all...] |
/external/lldb/include/lldb/Symbol/ |
Type.h | 295 struct Flags {
|
/external/lldb/tools/debugserver/source/MacOSX/ |
MachProcess.h | 265 uint32_t Flags () const { return m_flags; } 277 uint32_t m_flags; // Process specific flags (see eMachProcessFlags enums)
|
/external/llvm/include/llvm/IR/ |
Operator.h | 169 /// Convenience struct for specifying and reasoning about fast-math flags. 173 unsigned Flags; 174 FastMathFlags(unsigned F) : Flags(F) { } 185 FastMathFlags() : Flags(0) 189 bool any() { return Flags != 0; } 191 /// Set all the flags to false 192 void clear() { Flags = 0; } 195 bool noNaNs() { return 0 != (Flags & NoNaNs); } 196 bool noInfs() { return 0 != (Flags & NoInfs); } 197 bool noSignedZeros() { return 0 != (Flags & NoSignedZeros); [all...] |
/external/llvm/include/llvm/Target/ |
TargetCallingConv.h | 59 uint64_t Flags; 61 ArgFlagsTy() : Flags(0) { } 63 bool isZExt() const { return Flags & ZExt; } 64 void setZExt() { Flags |= One << ZExtOffs; } 66 bool isSExt() const { return Flags & SExt; } 67 void setSExt() { Flags |= One << SExtOffs; } 69 bool isInReg() const { return Flags & InReg; } 70 void setInReg() { Flags |= One << InRegOffs; } 72 bool isSRet() const { return Flags & SRet; } 73 void setSRet() { Flags |= One << SRetOffs; [all...] |
/external/llvm/lib/CodeGen/ |
TargetLoweringBase.cpp | [all...] |
TargetLoweringObjectFileImpl.cpp | 69 unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE | ELF::SHF_GROUP; 72 Flags, 117 // both gas and MC will produce a section with no flags. Given 170 unsigned Flags = 0; 173 Flags |= ELF::SHF_ALLOC; 176 Flags |= ELF::SHF_EXECINSTR; 179 Flags |= ELF::SHF_WRITE; 182 Flags |= ELF::SHF_TLS; 187 Flags |= ELF::SHF_MERGE; 190 Flags |= ELF::SHF_STRINGS [all...] |
/external/llvm/lib/MC/MCParser/ |
COFFAsmParser.cpp | 44 bool ParseSectionFlags(StringRef FlagsString, unsigned* Flags); 148 static SectionKind computeSectionKind(unsigned Flags) { 149 if (Flags & COFF::IMAGE_SCN_MEM_EXECUTE) 151 if (Flags & COFF::IMAGE_SCN_MEM_READ && 152 (Flags & COFF::IMAGE_SCN_MEM_WRITE) == 0) 157 bool COFFAsmParser::ParseSectionFlags(StringRef FlagsString, unsigned* Flags) { 182 return TokError("conflicting section flags 'b' and 'd'."); 189 return TokError("conflicting section flags 'b' and 'd'."); 238 *Flags = 0; 244 *Flags |= COFF::IMAGE_SCN_CNT_CODE | COFF::IMAGE_SCN_MEM_EXECUTE [all...] |
ELFAsmParser.cpp | 34 bool ParseSectionSwitch(StringRef Section, unsigned Type, unsigned Flags, 195 unsigned Flags, SectionKind Kind) { 203 Section, Type, Flags, Kind), 272 static SectionKind computeSectionKind(unsigned Flags, unsigned ElemSize) { 273 if (Flags & ELF::SHF_EXECINSTR) 275 if (Flags & ELF::SHF_TLS) 277 if (Flags & ELF::SHF_MERGE) { 278 if (Flags & ELF::SHF_STRINGS) { 307 unsigned flags = 0; local 312 flags |= ELF::SHF_ALLOC 353 unsigned flags = 0; local [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineSelect.cpp | [all...] |
/external/openfst/src/include/fst/ |
const-fst.h | 478 uint32 Flags() const {
|
/external/skia/include/core/ |
SkReadBuffer.h | 65 enum Flags { 72 void setFlags(uint32_t flags) { fFlags = flags; }
|
SkShader.h | 89 enum Flags { 238 * Helper to check the flags to know if it is legal to call shadeSpan16() 240 static bool CanCallShadeSpan16(uint32_t flags) { 241 return (flags & kHasSpan16_Flag) != 0; 358 uint32_t fGradientFlags; //!< see SkGradientShader::Flags
|
/external/skia/src/core/ |
SkScalerContext.h | 119 enum Flags { 128 // together, these two flags resulting in a two bit value which matches 130 kHinting_Shift = 7, // to shift into the other flags above
|
/external/skia/src/sfnt/ |
SkOTTable_EBLC.h | 66 union Flags { 84 } flags; member in struct:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable
|