HomeSort by relevance Sort by last modified time
    Searched defs:Flag (Results 1 - 14 of 14) sorted by null

  /frameworks/base/media/libstagefright/codecs/aacenc/basic_op/
typedef.h 38 typedef int Flag;
44 typedef int Flag;
50 typedef int Flag;
56 * use (improved) type definition file typdefs.h and add a "Flag" type
59 typedef int Flag;
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
typedef.h 59 typedef int Flag;
gsm_amr_typedefs.h 131 typedef int32_t Flag;
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
typedef.h 39 typedef int Flag;
45 typedef int Flag;
51 typedef int Flag;
57 * use (improved) type definition file typdefs.h and add a "Flag" type
60 typedef int Flag;
  /frameworks/base/media/libstagefright/codecs/common/include/
voMem.h 35 VO_S32 Flag;
  /external/chromium/base/
weak_ptr.h 66 class Flag : public RefCounted<Flag>, public NonThreadSafe {
68 Flag(Flag** handle) : handle_(handle) {
71 ~Flag() {
78 RefCounted<Flag>::AddRef();
83 RefCounted<Flag>::Release();
90 Flag** handle_;
94 WeakReference(Flag* flag) : flag_(flag) {
    [all...]
waitable_event_watcher_posix.cc 21 // Since the wait can be canceled, we have a thread-safe Flag object which is
23 // flag before going onto the next stage. Since the wait may only be canceled in
28 // A thread-safe, reference-counted, write-once flag.
30 class Flag : public RefCountedThreadSafe<Flag> {
32 Flag() { flag_ = false; }
55 AsyncWaiter(MessageLoop* message_loop, Task* task, Flag* flag)
58 flag_(flag) { }
86 scoped_refptr<Flag> flag_
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Flag.java 22 public enum Flag {
68 * General purpose flag that can be used by any remote store. The flag will be
74 * General purpose flag that can be used by any remote store. The flag will be
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
pv_amr_wb_type_defs.h 131 #ifndef Flag
132 typedef Int Flag;
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
AccessSourcer.java 36 private enum Flag {
61 private Flag(int value, int filter) {
90 * e.g. {@link Flag#ACC_SYNTHETIC}.
100 for (Flag f : Flag.values()) {
  /external/v8/src/
flags.cc 43 #include "flag-definitions.h"
47 #include "flag-definitions.h"
51 // This structure represents a single entry in the flag system, with a pointer
52 // to the actual flag, default value, comment, etc. This is designed to be POD
54 struct Flag {
57 FlagType type_; // What type of flag, bool, int, or string.
58 const char* name_; // Name of the flag, ex "my_flag".
59 void* valptr_; // Pointer to the global flag variable.
62 bool owns_ptr_; // Does the flag own its string value?
128 // Compare this flag's current value against the default
    [all...]
objects.h     [all...]
  /external/icu4c/i18n/
decNumberLocal.h 33 /* Conditional code flag -- set this to match hardware platform */
38 /* Conditional code flag -- set this to 1 for best performance */
68 #define Flag uint8_t
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
LocalStore.java 24 import com.android.email.mail.Flag;
88 private static final Flag[] PERMANENT_FLAGS = { Flag.DELETED, Flag.X_DESTROYED, Flag.SEEN };
284 if (oldFlags.contains(Flag.X_DOWNLOADED_FULL.toString())) {
287 if (oldFlags.contains(Flag.X_DOWNLOADED_PARTIAL.toString())) {
290 if (oldFlags.contains(Flag.DELETED.toString())) {
296 // because the old flag will be ignored, and will eventually be overwritten
697 * @return The number of messages matching the desired flag states
    [all...]

Completed in 411 milliseconds