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

1 2 3 4 5 6 7 8 91011>>

  /art/test/151-OpenFileLimit/
run 17 flags="$@"
21 ${RUN} ${flags}
  /art/test/147-stripped-dex-fallback/
run 17 # ensure flags includes prebuild.
18 flags="$@"
19 if [[ "${flags}" == *--no-prebuild* ]] ; then
24 ${RUN} ${flags} --strip-dex --no-dex2oat
  /art/test/116-nodex2oat/
run 17 flags="${@}"
22 if [[ "${flags}" == *--prebuild* || "${flags}" != *--no-prebuild* ]] ; then
29 ${RUN} ${flags} --runtime-option -Xnodex2oat
33 ${RUN} ${flags} --runtime-option -Xdex2oat
37 ${RUN} ${flags}
  /art/test/117-nopatchoat/
run 17 # ensure flags includes prebuild and relocate. It doesn't make sense unless we
19 flags="$@"
24 if [[ "${flags}" == *--no-prebuild* ]] ; then
32 if [[ "${flags}" == *--no-relocate* ]] ; then
39 ${RUN} ${flags} --runtime-option -Xnodex2oat
43 ${RUN} ${flags} --runtime-option -Xdex2oat
47 ${RUN} ${flags}
  /external/minijail/
syscall_wrapper.h 17 int sys_seccomp(unsigned int operation, unsigned int flags, void *args);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
resolver_query_base.hpp 29 enum flags enum in class:asio::ip::resolver_query_base
42 friend flags operator&(flags x, flags y)
44 return static_cast<flags>(
48 friend flags operator|(flags x, flags y)
50 return static_cast<flags>(
54 friend flags operator^(flags x, flags y
    [all...]
  /art/test/613-inlining-dex-cache/
run 17 flags="$@"
20 exec ${RUN} ${flags/verify-at-runtime/interpret-only}
  /device/linaro/bootloader/arm-trusted-firmware/plat/common/aarch64/
plat_common.c 41 void bl31_plat_enable_mmu(uint32_t flags)
43 enable_mmu_el3(flags);
46 void bl32_plat_enable_mmu(uint32_t flags)
48 enable_mmu_el1(flags);
  /external/desugar/java/com/google/devtools/build/android/desugar/
BitFlags.java 17 * Convenience method for working with {@code int} bitwise flags.
22 * Returns {@code true} iff <b>all</b> bits in {@code bitmask} are set in {@code flags}.
25 public static boolean isSet(int flags, int bitmask) {
26 return (flags & bitmask) == bitmask;
30 * Returns {@code true} iff <b>none</b> of the bits in {@code bitmask} are set in {@code flags}.
33 public static boolean noneSet(int flags, int bitmask) {
34 return (flags & bitmask) == 0;
  /frameworks/base/media/java/android/media/
IVolumeController.aidl 26 void displaySafeVolumeWarning(int flags);
28 void volumeChanged(int streamType, int flags);
30 void masterMuteChanged(int flags);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FlagOp.java 9 public int apply(int flags) {
10 return flags;
16 public int apply(int flags) {
17 return flags | flag;
25 public int apply(int flags) {
26 return flags & ~flag;
  /external/mesa3d/src/glsl/
ast_type.cpp 52 return this->qualifier.flags.i != 0;
57 return this->flags.q.smooth
58 || this->flags.q.flat
59 || this->flags.q.noperspective;
65 if (this->flags.q.smooth)
67 else if (this->flags.q.flat)
69 else if (this->flags.q.noperspective)
81 ubo_mat_mask.flags.i = 0;
82 ubo_mat_mask.flags.q.row_major = 1;
83 ubo_mat_mask.flags.q.column_major = 1
    [all...]
  /libcore/harmony-tests/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/syslinux/com32/modules/
cpuidtest.c 54 printf("Flags = ");
55 if (cpu.flags.fpu)
57 if (cpu.flags.vme)
59 if (cpu.flags.de)
61 if (cpu.flags.pse)
63 if (cpu.flags.tsc)
65 if (cpu.flags.msr)
67 if (cpu.flags.pae)
69 if (cpu.flags.mce)
71 if (cpu.flags.cx8
    [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/strace/
swapon.c 9 unsigned int flags = tcp->u_arg[1]; local
10 unsigned int prio = flags & SWAP_FLAG_PRIO_MASK;
11 flags &= ~SWAP_FLAG_PRIO_MASK;
15 if (flags) {
16 printflags(swap_flags, flags, "SWAP_FLAG_???");
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_reading_utils.h 47 * Node Flags
49 static AK_FORCE_INLINE bool isMoved(const NodeFlags flags) {
50 return FLAG_IS_MOVED == (MASK_MOVED & flags);
53 static AK_FORCE_INLINE bool isDeleted(const NodeFlags flags) {
54 return FLAG_IS_DELETED == (MASK_MOVED & flags);
57 static AK_FORCE_INLINE bool willBecomeNonTerminal(const NodeFlags flags) {
58 return FLAG_WILL_BECOME_NON_TERMINAL == (MASK_MOVED & flags);
63 NodeFlags flags = originalFlags; local
64 flags = willBecomeNonTerminal ?
65 ((flags & (~MASK_MOVED)) | FLAG_WILL_BECOME_NON_TERMINAL) : flags
    [all...]
  /external/elfutils/libebl/
eblmachineflagcheck.c 38 ebl_machine_flag_check (Ebl *ebl, Elf64_Word flags)
40 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
eblmachinesectionflagcheck.c 1 /* Check SHF_MASKPROC flags.
37 ebl_machine_section_flag_check (Ebl *ebl, GElf_Xword flags)
39 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
  /external/skia/src/opts/
SkBlitRow_opts_none.cpp 12 SkBlitRow::Proc16 SkBlitRow::PlatformFactory565(unsigned flags) {
16 SkBlitRow::ColorProc16 SkBlitRow::PlatformColorFactory565(unsigned flags) {
20 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
  /external/syslinux/com32/lib/syslinux/video/
reportmode.c 36 void syslinux_report_video_mode(uint16_t flags, uint16_t xsize, uint16_t ysize)
38 if (flags > 0x0f)
41 using_vga(flags, xsize, ysize);
  /bionic/libc/kernel/uapi/asm-arm/asm/
mman.h 20 #define arch_mmap_check(addr,len,flags) (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? - EINVAL : 0)
  /development/ndk/platforms/android-21/arch-arm/include/asm/
mman.h 20 #define arch_mmap_check(addr, len, flags) (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? -EINVAL : 0)
  /external/compiler-rt/test/BlocksRuntime/
flagsisa.c 14 __block int flags; local
17 ^{ flags=1; isa = (void *)isa; };
  /external/kernel-headers/original/uapi/asm-arm/asm/
mman.h 3 #define arch_mmap_check(addr, len, flags) \
4 (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? -EINVAL : 0)

Completed in 818 milliseconds

1 2 3 4 5 6 7 8 91011>>