HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 1 - 25 of 8397) 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) {
41 throw new NullPointerException("flags == null");
43 this.flags = flags;
    [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.15/src/audio/
SDL_audiodev_c.h 25 extern int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic);
  /external/smack/src/org/xbill/DNS/
Flags.java 6 * Constants and functions relating to flags in the DNS header.
11 public final class Flags {
13 private static Mnemonic flags = new Mnemonic("DNS Header Flag", field in class:Flags
41 flags.setMaximum(0xF);
42 flags.setPrefix("FLAG");
43 flags.setNumericAllowed(true);
45 flags.add(QR, "qr");
46 flags.add(AA, "aa");
47 flags.add(TC, "tc");
48 flags.add(RD, "rd")
    [all...]
  /development/ndk/sources/android/libportable/arch-x86/
open.c 24 static inline int x86_change_flags(int flags)
26 int x86flags = flags & O_ACCMODE_PORTABLE;
27 if (flags & O_CREAT_PORTABLE)
29 if (flags & O_EXCL_PORTABLE)
31 if (flags & O_NOCTTY_PORTABLE)
33 if (flags & O_TRUNC_PORTABLE)
35 if (flags & O_APPEND_PORTABLE)
37 if (flags & O_NONBLOCK_PORTABLE)
39 if (flags & O_SYNC_PORTABLE)
41 if (flags & FASYNC_PORTABLE
    [all...]
  /bionic/libc/bionic/
open.c 36 int open(const char *pathname, int flags, ...)
40 flags |= O_LARGEFILE;
42 if (flags & O_CREAT)
46 va_start(args, flags);
51 return __open(pathname, flags, mode);
54 int __open_2(const char *pathname, int flags) {
55 if (flags & O_CREAT) {
59 flags |= O_LARGEFILE;
61 return __open(pathname, flags, 0);
openat.c 36 int openat(int fd, const char *pathname, int flags, ...)
40 flags |= O_LARGEFILE;
42 if (flags & O_CREAT)
46 va_start(args, flags);
51 return __openat(fd, pathname, flags, mode);
54 int __openat_2(int fd, const char *pathname, int flags)
56 if (flags & O_CREAT) {
60 flags |= O_LARGEFILE;
62 return __openat(fd, pathname, flags, 0);
  /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/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...]
  /development/ndk/sources/android/libportable/arch-mips/
open.c 34 static inline int open_flags_pton(int flags)
36 int mipsflags = flags & O_ACCMODE_PORTABLE;
38 ALOGV("%s(flags:0x%x) {", __func__, flags);
40 if (flags & O_CREAT_PORTABLE)
42 if (flags & O_EXCL_PORTABLE)
44 if (flags & O_NOCTTY_PORTABLE)
46 if (flags & O_TRUNC_PORTABLE)
48 if (flags & O_APPEND_PORTABLE)
50 if (flags & O_NONBLOCK_PORTABLE
    [all...]
  /external/libvpx/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;
42 int flags; local
44 if (!arm_cpu_env_flags(&flags))
46 return flags;
50 flags |= HAS_EDSP;
53 flags |= HAS_MEDIA;
56 flags |= HAS_NEON;
58 return flags & mask
69 int flags; local
    [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...]
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 7 int flags; member in struct:__anon6282
  /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)

Completed in 518 milliseconds

1 2 3 4 5 6 7 8 91011>>