HomeSort by relevance Sort by last modified time
    Searched defs:Flags (Results 276 - 300 of 492) sorted by null

<<11121314151617181920

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fltuserstructures.h 90 ULONG Flags;
110 ULONG Flags;
113 ULONG Flags;
122 ULONG Flags;
140 ULONG Flags;
177 ULONG Flags;
180 ULONG Flags;
196 ULONG Flags;
ipexport.h 22 UCHAR Flags;
31 UCHAR Flags;
ipxrtdef.h 191 ULONG Flags;
ksproxy.h 183 ULONG Flags;
204 ULONG Flags;
320 ULONG Flags
624 ULONG Flags,
ktmtypes.h 120 ULONG Flags;
rassapi.h 80 DWORD Flags;
resapi.h 132 DWORD Flags;
rpcasync.h 38 unsigned __LONG32 Flags;
120 USHORT Flags;
151 unsigned __LONG32 Flags;
163 unsigned __LONG32 Flags;
274 unsigned __LONG32 Flags;
295 unsigned __LONG32 Flags;
rpcdcep.h 102 unsigned int Flags;
114 unsigned int Flags;
tdh.h 69 PROPERTY_FLAGS Flags;
132 TEMPLATE_FLAGS Flags;
wmistr.h 26 ULONG Flags;
117 ULONG Flags;
xinput.h 48 * Defines the flags used to determine if the user is pushing
200 WORD Flags;
212 WORD Flags;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
imaplib.py 85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
118 (eg: the 'flags' argument to STORE) then enclose the string in
304 def append(self, mailbox, flags, date_time, message):
307 (typ, [data]) = <instance>.append(mailbox, flags, date_time, message)
314 if flags:
315 if (flags[0],flags[-1]) != ('(',')'):
316 flags = '(%s)' % flag
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
imaplib.py 85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
118 (eg: the 'flags' argument to STORE) then enclose the string in
304 def append(self, mailbox, flags, date_time, message):
307 (typ, [data]) = <instance>.append(mailbox, flags, date_time, message)
314 if flags:
315 if (flags[0],flags[-1]) != ('(',')'):
316 flags = '(%s)' % flag
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
tttables.h 90 FT_UShort Flags;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
118 (eg: the 'flags' argument to STORE) then enclose the string in
304 def append(self, mailbox, flags, date_time, message):
307 (typ, [data]) = <instance>.append(mailbox, flags, date_time, message)
314 if flags:
315 if (flags[0],flags[-1]) != ('(',')'):
316 flags = '(%s)' % flag
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
118 (eg: the 'flags' argument to STORE) then enclose the string in
304 def append(self, mailbox, flags, date_time, message):
307 (typ, [data]) = <instance>.append(mailbox, flags, date_time, message)
314 if flags:
315 if (flags[0],flags[-1]) != ('(',')'):
316 flags = '(%s)' % flag
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
jFormatString.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/3.0.0/
jFormatString-3.0.0.jar 
  /art/runtime/
dex_instruction.h 130 enum Flags {
468 // Returns the flags for the given opcode.
473 // Return the verify flags for the given opcode.
619 std::ostream& operator<<(std::ostream& os, const Instruction::Flags& flags);
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 300 : Opcode(Op), Reserved(0), Flags(0), SExprID(0), Block(nullptr) {}
302 : Opcode(E.Opcode), Reserved(0), Flags(E.Flags), SExprID(0),
307 unsigned short Flags;
357 Flags = VK_Let;
362 Flags = VK_Let;
366 Flags = Vd.kind();
370 VariableKind kind() const { return static_cast<VariableKind>(Flags); }
385 void setKind(VariableKind K) { Flags = K; }
927 bool isArrow() const { return (Flags & 0x01) != 0;
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 563 unsigned Flags;
575 : Flags(0), TiedOperand(-1), ConstraintStr(ConstraintStr.str()),
582 bool isReadWrite() const { return (Flags & CI_ReadWrite) != 0; }
583 bool earlyClobber() { return (Flags & CI_EarlyClobber) != 0; }
584 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; }
585 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; }
589 bool hasMatchingInput() const { return (Flags & CI_HasMatchingInput) != 0; }
603 return (Flags & CI_ImmediateConstant) != 0;
610 void setIsReadWrite() { Flags |= CI_ReadWrite; }
611 void setEarlyClobber() { Flags |= CI_EarlyClobber;
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp 151 /// These are the flags (with corresponding bit number) that the
170 int flags;
712 // Compute the initial on-stack block flags.
713 BlockFlags flags = BLOCK_HAS_SIGNATURE; local
714 if (blockInfo.HasCapturedVariableLayout) flags |= BLOCK_HAS_EXTENDED_LAYOUT;
715 if (blockInfo.NeedsCopyDispose) flags |= BLOCK_HAS_COPY_DISPOSE;
716 if (blockInfo.HasCXXObject) flags |= BLOCK_HAS_CXX_OBJ;
717 if (blockInfo.UsesStret) flags |= BLOCK_USE_STRET;
742 addHeaderField(llvm::ConstantInt::get(IntTy, flags.getBitMask()),
743 getIntSize(), "block.flags");
1067 BlockFlags flags = BLOCK_IS_GLOBAL | BLOCK_HAS_SIGNATURE; local
1380 BlockFieldFlags flags; local
1552 BlockFieldFlags flags; local
1644 unsigned flags = (Flags | BLOCK_BYREF_CALLER).getBitMask(); variable
2001 BlockFieldFlags flags; local
2189 BlockFlags flags; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 60 enum Flags {
    [all...]

Completed in 1326 milliseconds

<<11121314151617181920