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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
IllegalFormatFlagsException.java 23 * the format flags is illegal.
30 private final String flags; field in class:IllegalFormatFlagsException
34 * flags.
36 * @param flags
37 * the specified flags.
39 public IllegalFormatFlagsException(String flags) {
40 if (flags == null) {
43 this.flags = flags;
47 * Returns the flags that are illegal
    [all...]
DuplicateFormatFlagsException.java 20 * The unchecked exception will be thrown out if there are duplicate flags given
29 private final String flags; field in class:DuplicateFormatFlagsException
32 * Constructs a new {@code DuplicateFormatFlagsException} with the flags
36 * the format flags that contain a duplicate flag.
42 flags = f;
46 * Returns the format flags that contain a duplicate flag.
48 * @return the format flags that contain a duplicate flag.
51 return flags;
56 return flags;
UnknownFormatFlagsException.java 29 private final String flags; field in class:UnknownFormatFlagsException
33 * flags.
36 * the specified flags.
42 flags = f;
46 * Returns the flags associated with the exception.
48 * @return the flags associated with the exception.
51 return flags;
56 return "Flags: " + flags;
  /external/elfutils/libebl/
eblmachineflagcheck.c 59 ebl_machine_flag_check (ebl, flags)
61 Elf64_Word flags;
63 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
eblmachinesectionflagcheck.c 1 /* Check SHF_MASKPROC flags.
58 ebl_machine_section_flag_check (ebl, flags)
60 GElf_Xword flags;
62 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev_c.h 25 extern int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic);
  /bionic/libc/unistd/
open.c 34 int open(const char *pathname, int flags, ...)
38 flags |= O_LARGEFILE;
40 if (flags & O_CREAT)
44 va_start(args, flags);
49 return __open(pathname, flags, mode);
openat.c 34 int openat(int fd, const char *pathname, int flags, ...)
38 flags |= O_LARGEFILE;
40 if (flags & O_CREAT)
44 va_start(args, flags);
49 return __openat(fd, pathname, flags, mode);
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternErrorTest.java 41 // flags = 0 should raise no exception
42 int flags = 0; local
43 Pattern.compile("foo", flags);
45 // check that all valid flags accepted without exception
46 flags |= Pattern.UNIX_LINES;
47 flags |= Pattern.CASE_INSENSITIVE;
48 flags |= Pattern.MULTILINE;
49 flags |= Pattern.CANON_EQ;
50 flags |= Pattern.COMMENTS;
51 flags |= Pattern.DOTALL
    [all...]
  /external/chromium/chrome/browser/
power_save_blocker_win.cc 15 DWORD flags = ES_CONTINUOUS; local
18 flags |= ES_SYSTEM_REQUIRED;
20 SetThreadExecutionState(flags);
  /external/libvpx/vpx_ports/
arm_cpudetect.c 15 static int arm_cpu_env_flags(int *flags)
21 *flags = (int)strtol(env, NULL, 0);
24 *flags = 0;
44 int flags; local
46 if (!arm_cpu_env_flags(&flags))
48 return flags;
62 flags |= HAS_EDSP;
75 flags |= HAS_MEDIA;
89 flags |= HAS_NEON;
99 return flags & mask
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
flagsisa.c 14 __block int flags; local
17 ^{ flags=1; isa = (void *)isa; };
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
AccessFlags.java 22 * Constants used as "access flags" in various places in classes, and
23 * related utilities. Although, at the rop layer, flags are generally
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
106 /** flags defined on classes */
111 /** flags defined on inner classes */
117 /** flags defined on fields */
122 /** flags defined on methods */
129 /** indicates conversion of class flags */
132 /** indicates conversion of field flags */
135 /** indicates conversion of method flags */
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
AccessFlags.java 22 * Constants used as "access flags" in various places in classes, and
23 * related utilities. Although, at the rop layer, flags are generally
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
106 /** flags defined on classes */
111 /** flags defined on inner classes */
117 /** flags defined on fields */
122 /** flags defined on methods */
129 /** indicates conversion of class flags */
132 /** indicates conversion of field flags */
135 /** indicates conversion of method flags */
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
AccessFlags.java 22 * Constants used as "access flags" in various places in classes, and
23 * related utilities. Although, at the rop layer, flags are generally
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
106 /** flags defined on classes */
111 /** flags defined on inner classes */
117 /** flags defined on fields */
122 /** flags defined on methods */
129 /** indicates conversion of class flags */
132 /** indicates conversion of field flags */
135 /** indicates conversion of method flags */
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternErrorTest.java 41 // flags = 0 should raise no exception
42 int flags = 0; local
43 Pattern.compile("foo", flags);
45 // check that all valid flags accepted without exception
46 flags |= Pattern.UNIX_LINES;
47 flags |= Pattern.CASE_INSENSITIVE;
48 flags |= Pattern.MULTILINE;
51 // flags |= Pattern.CANON_EQ;
53 flags |= Pattern.COMMENTS;
54 flags |= Pattern.DOTALL
    [all...]
  /external/kernel-headers/original/linux/
irqflags.h 4 * IRQ flags tracing: follow the state of the hardirq and softirq flags and
52 #define local_irq_save(flags) \
53 do { raw_local_irq_save(flags); trace_hardirqs_off(); } while (0)
55 #define local_irq_restore(flags) \
57 if (raw_irqs_disabled_flags(flags)) { \
58 raw_local_irq_restore(flags); \
62 raw_local_irq_restore(flags); \
72 # define raw_local_irq_save(flags) local_irq_save(flags)
    [all...]
  /gdk/libportable/arch-mips/
open.c 69 static inline int mips_change_flags(int flags)
71 int mipsflags = flags & O_ACCMODE_PORTABLE;
72 if (flags & O_CREAT_PORTABLE)
74 if (flags & O_EXCL_PORTABLE)
76 if (flags & O_NOCTTY_PORTABLE)
78 if (flags & O_TRUNC_PORTABLE)
80 if (flags & O_APPEND_PORTABLE)
82 if (flags & O_NONBLOCK_PORTABLE)
84 if (flags & O_SYNC_PORTABLE)
86 if (flags & FASYNC_PORTABLE
    [all...]
  /dalvik/vm/compiler/codegen/x86/
ArchUtility.cpp 27 int dvmCompilerCacheFlush(long start, long end, long flags)
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 7 int flags; member in struct:__anon5239
  /external/iptables/include/linux/netfilter/
xt_socket.h 9 __u8 flags; member in struct:xt_socket_mtinfo1
  /frameworks/base/core/java/android/app/
IUiModeManager.aidl 28 void enableCarMode(int flags);
33 void disableCarMode(int flags);
  /libcore/luni/src/main/java/libcore/icu/
NativeIDN.java 20 public static String toASCII(String s, int flags) {
21 return convert(s, flags, true);
24 public static String toUnicode(String s, int flags) {
26 return convert(s, flags, false);
35 private static String convert(String s, int flags, boolean toAscii) {
39 return convertImpl(s, flags, toAscii);
41 private static native String convertImpl(String s, int flags, boolean toAscii);
  /bionic/libc/kernel/arch-x86/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)
  /development/ndk/platforms/android-9/arch-x86/include/asm/
irqflags_32.h 21 #include <asm/processor-flags.h>
36 #define raw_local_save_flags(flags) do { (flags) = __raw_local_save_flags(); } while (0)
37 #define raw_local_irq_save(flags) do { (flags) = __raw_local_irq_save(); } while (0)

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 91011>>