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

1 2 3 4 5 6 7 8 9

  /external/v8/src/
compilation-cache.h 58 JSRegExp::Flags flags);
72 // Associate the (source, flags) pair to the given regexp data.
75 JSRegExp::Flags flags,
stub-cache.cc 56 // Get the flags from the code.
57 Code::Flags flags = Code::RemoveTypeFromFlags(code->flags()); local
68 ASSERT(Code::ExtractICStateFromFlags(flags) == MONOMORPHIC);
72 ASSERT(Code::ExtractTypeFromFlags(flags) == 0);
75 int primary_offset = PrimaryOffset(name, flags, map);
82 Code::Flags primary_flags = Code::RemoveTypeFromFlags(hit->flags());
100 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, FIELD) local
119 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, CALLBACKS); local
137 Code::Flags flags = local
155 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, INTERCEPTOR); local
180 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, NORMAL); local
202 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::KEYED_LOAD_IC, FIELD); local
220 Code::Flags flags = local
238 Code::Flags flags = local
257 Code::Flags flags = local
275 Code::Flags flags = local
292 Code::Flags flags = local
309 Code::Flags flags = local
329 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::STORE_IC, type); local
346 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::STORE_IC, NORMAL); local
364 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::STORE_IC, CALLBACKS); local
380 Code::Flags flags = local
398 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::KEYED_STORE_IC, type); local
431 Code::Flags flags = local
480 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::CALL_IC, local
516 Code::Flags flags = local
554 Code::Flags flags = local
616 Code::Flags flags = local
627 Code::Flags flags = local
637 Code::Flags flags = local
647 Code::Flags flags = local
657 Code::Flags flags = local
667 Code::Flags flags = local
678 Code::Flags flags = local
688 Code::Flags flags = local
703 Code::Flags flags = local
1090 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, type); local
1096 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::KEYED_LOAD_IC, type); local
1102 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::STORE_IC, type); local
1108 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::KEYED_STORE_IC, type); local
1115 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::CALL_IC, local
1124 Code::Flags flags = Code::ComputeFlags(Code::STUB); local
    [all...]
stub-cache.h 204 Code::Flags flags,
223 static int PrimaryOffset(String* name, Code::Flags flags, Map* map) {
240 (static_cast<uint32_t>(flags) & ~Code::kFlagsNotUsedInLookup);
241 // Base the offset on a simple combination of name, flags, and map.
246 static int SecondaryOffset(String* name, Code::Flags flags, int seed) {
253 (static_cast<uint32_t>(flags) & ~Code::kFlagsICInLoopMask);
335 Object* CompileCallInitialize(Code::Flags flags)
    [all...]
code-stubs.cc 100 Code::Flags flags = Code::ComputeFlags(Code::STUB, InLoop()); local
102 Factory::NewCode(desc, NULL, flags, masm.CodeObject());
135 Code::Flags flags = Code::ComputeFlags(Code::STUB, InLoop()); local
137 Heap::CreateCode(desc, NULL, flags, masm.CodeObject());
  /external/webkit/JavaScriptGlue/
JSRun.h 39 JSFlags Flags() const { return d()->flags; }
50 JSFlags flags; member in struct:JSGlueGlobalObject::Data
67 JSFlags Flags() const;
JSRun.cpp 36 JSGlueGlobalObject::JSGlueGlobalObject(PassRefPtr<Structure> structure, JSFlags flags)
39 d()->flags = flags;
60 JSFlags JSRun::Flags() const
  /external/skia/include/core/
SkFlattenable.h 183 enum Flags {
186 Flags getFlags() const { return fFlags; }
187 void setFlags(Flags flags) { fFlags = flags; }
198 Flags fFlags;
SkColorFilter.h 45 enum Flags {
56 /** Returns the flags for this filter. Override in subclasses to return
57 custom flags.
  /frameworks/base/include/media/stagefright/
MediaExtractor.h 41 size_t index, uint32_t flags = 0) = 0;
47 enum Flags {
56 virtual uint32_t flags() const;
DataSource.h 36 enum Flags {
58 virtual uint32_t flags() { function in class:android::DataSource
  /cts/tools/signature-tools/test/signature/converter/doclet/
DocletTestConverter.java 113 com.sun.tools.javac.code.Flags.PUBLIC; // 0x1
117 com.sun.tools.javac.code.Flags.PUBLIC // 0x1
118 | com.sun.tools.javac.code.Flags.PROTECTED; // 0x4
122 com.sun.tools.javac.code.Flags.PUBLIC // 0x1
123 | com.sun.tools.javac.code.Flags.PROTECTED // 0x4
128 com.sun.tools.javac.code.Flags.PUBLIC // 0x1
129 | com.sun.tools.javac.code.Flags.PROTECTED // 0x4
131 | com.sun.tools.javac.code.Flags.PRIVATE; // 0x2
  /external/elfutils/libelf/
elf-knowledge.h 66 /* When combining ELF section flags we must distinguish two kinds:
68 - flags which cause problem if not added to the result even if not
71 - flags which cause problem if added to the result if not present
82 /* Similar macro: return the bits of the flags which necessarily must
85 used to determine the combined flags. */
86 #define SH_FLAGS_IMPORTANT(Flags) \
87 ((Flags) & ~((GElf_Xword) 0 | SHF_LINK_ORDER | SHF_OS_NONCONFORMING))
  /external/qemu/distrib/sdl-1.2.12/src/thread/win32/
win_ce_semaphore.c 36 static SYNCHHANDLE CleanUp (SYNCHHANDLE hSynch, DWORD Flags);
197 static SYNCHHANDLE CleanUp (SYNCHHANDLE hSynch, DWORD Flags)
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;
  /frameworks/base/core/jni/
android_nfc.h 37 uint8_t Flags;
  /external/chromium/base/
histogram.h 225 enum Flags {
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);
315 int flags() const { return flags_; } function in class:Histogram
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.h 86 * \brief These are the flags specifying the content, structure or purpose of a NDEF Record.
87 * \name NDEF Record Header Flags
89 * Flags of the first record byte, as defined by the NDEF specification.
133 * The flags control (or inform about) the structure of a record.
135 * \li \b Extraction: The component fills in the flags, extracted from the NDEF record.
136 * \li \b Composition: The caller has to specify the proper flags (OR'ing of the individual
139 * is responsible for applying the correct flags in order to mark the
142 uint8_t Flags;
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 Byt
    [all...]
phFriNfc_NdefRecord.c 380 /* 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)
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);
577 /*fill the first byte of the message(all the flags) */
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)
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 66 accessModifier |= com.sun.tools.javac.code.Flags.PRIVATE; // 0x2
70 accessModifier |= com.sun.tools.javac.code.Flags.PROTECTED; // 0x4
72 accessModifier |= com.sun.tools.javac.code.Flags.PUBLIC; // 0x1
  /development/host/windows/usb/api/
adb_helper_routines.cpp 107 if ((!exclude_removed || (0 == (interface_data.Flags & SPINT_REMOVED))) &&
108 (!active_only || (interface_data.Flags & SPINT_ACTIVE))) {
116 interface_data.Flags));
146 ULONG flags,
154 SetupDiGetClassDevs(&class_id, NULL, NULL, flags);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 31 import org.eclipse.jdt.core.Flags;
205 int flags = type.getFlags(); local
206 if (Flags.isAbstract(flags)) {
211 if (testVisibility && Flags.isPublic(flags) == false) {
217 if (Flags.isPublic(constructFlags) == false) {
236 flags = declaringType.getFlags();
237 if (Flags.isStatic(flags) == false)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86Privstr.h 50 /* PCI probe flags */
196 int Flags;
205 int Flags;
  /external/ppp/pppd/
chap_ms.h 80 u_char Flags[1]; /* Must be zero */
  /external/skia/include/utils/
SkInterpolator.h 72 enum Flags {
  /frameworks/base/media/libstagefright/rtsp/
ARTPConnection.h 31 enum Flags {
36 ARTPConnection(uint32_t flags = 0);
  /external/gtest/test/
gtest_unittest.cc 4357 Flags flags; local
4365 Flags flags; local
4373 Flags flags; local
4381 Flags flags; local
4389 Flags flags; local
4397 Flags flags; local
4405 Flags flags; local
4413 Flags flags; local
4421 Flags flags; local
4429 Flags flags; local
4739 Flags flags; local
    [all...]

Completed in 314 milliseconds

1 2 3 4 5 6 7 8 9