Searched defs:flags (Results 1 - 25 of 2766) sorted by relevance

1234567891011>>

/external/v8/test/intl/date-format/
H A Dtimezone-name.js36 // Common flags for both formatters.
37 var flags = {
43 flags.timeZoneName = "short";
44 var dfs = new Intl.DateTimeFormat('en-US', flags);
49 flags.timeZoneName = "long";
50 var dfl = new Intl.DateTimeFormat('en-US', flags);
/external/strace/
H A Dswapon.c9 int flags = tcp->u_arg[1]; local
13 printflags(swap_flags, flags & ~SWAP_FLAG_PRIO_MASK,
15 if (flags & SWAP_FLAG_PREFER)
16 tprintf("|%d", flags & SWAP_FLAG_PRIO_MASK);
H A Dmembarrier.c35 int cmd = tcp->u_arg[0], flags = tcp->u_arg[1]; local
38 tprintf(", %d", flags);
/external/bison/lib/
H A Dspawnattr_setflags.c33 /* Store flags in the attribute structure. */
35 posix_spawnattr_setflags (posix_spawnattr_t *attr, short int flags) argument
38 if (flags & ~ALL_FLAGS)
42 attr->_flags = flags;
H A Dpipe2-safer.c31 pipe2_safer (int fd[2], int flags) argument
34 if (pipe2 (fd, flags) == 0)
39 fd[i] = fd_safer_flag (fd[i], flags);
H A Dcloexec.c35 open or pipe2 that accept flags like O_CLOEXEC to create DESC
43 int flags = fcntl (desc, F_GETFD, 0); local
45 if (0 <= flags)
47 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
49 if (flags == newflags
H A Dpipe2.c1 /* Create a pipe, with specific opening flags.
40 pipe2 (int fd[2], int flags) argument
58 int result = pipe2 (fd, flags);
69 /* Check the supported flags. */
70 if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_BINARY | O_TEXT)) != 0)
79 if (_pipe (fd, 4096, flags & ~O_NONBLOCK) < 0)
90 if (flags & O_NONBLOCK)
111 says that initially, the O_NONBLOCK and FD_CLOEXEC flags are cleared on
116 if (flags & O_NONBLOCK)
127 if (flags
[all...]
/external/clang/test/CodeGen/
H A D2005-01-02-VAArgError-ICE.c5 int flags(int a, int b, ...) { function
/external/e2fsprogs/lib/e2p/
H A Dgetflags.c2 * getflags.c - Get a file flags on an ext2 file system
30 int getflags (int fd, unsigned long * flags) argument
38 *flags = 0;
41 *flags |= EXT2_IMMUTABLE_FL;
45 *flags |= EXT2_APPEND_FL;
49 *flags |= EXT2_NODUMP_FL;
61 *flags = f;
H A Dsetflags.c2 * setflags.c - Set a file flags on an ext2 file system
39 int setflags (int fd, unsigned long flags) argument
45 if (flags & EXT2_IMMUTABLE_FL)
49 if (flags & EXT2_APPEND_FL)
53 if (flags & EXT2_NODUMP_FL)
68 f = (int) flags;
/external/elfutils/libebl/
H A Deblmachineflagcheck.c38 ebl_machine_flag_check (Ebl *ebl, Elf64_Word flags) argument
40 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
H A Deblmachinesectionflagcheck.c1 /* Check SHF_MASKPROC flags.
37 ebl_machine_section_flag_check (Ebl *ebl, GElf_Xword flags) argument
39 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
/external/skia/src/opts/
H A DSkBlitRow_opts_none.cpp12 SkBlitRow::Proc16 SkBlitRow::PlatformFactory565(unsigned flags) { argument
16 SkBlitRow::ColorProc16 SkBlitRow::PlatformColorFactory565(unsigned flags) { argument
20 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { argument
/external/toybox/toys/android/
H A Drestorecon.c34 int flags = 0; local
36 if (toys.optflags & FLAG_D) flags |= SELINUX_ANDROID_RESTORECON_DATADATA;
37 if (toys.optflags & FLAG_F) flags |= SELINUX_ANDROID_RESTORECON_FORCE;
39 flags |= SELINUX_ANDROID_RESTORECON_RECURSE;
40 if (toys.optflags & FLAG_n) flags |= SELINUX_ANDROID_RESTORECON_NOCHANGE;
41 if (toys.optflags & FLAG_v) flags |= SELINUX_ANDROID_RESTORECON_VERBOSE;
44 if (selinux_android_restorecon(*s, flags) < 0)
/external/toybox/toys/other/
H A Dswapon.c28 int flags = (toys.optflags&FLAG_d)*0x70000; local
31 flags |= SWAP_FLAG_PREFER | (TT.priority << SWAP_FLAG_PRIO_SHIFT);
33 if (swapon(*toys.optargs, flags))
/external/compiler-rt/lib/asan/
H A Dasan_flags.h12 // ASan runtime flags.
41 inline Flags *flags() { function in namespace:__asan
/external/compiler-rt/test/BlocksRuntime/
H A Dflagsisa.c14 __block int flags; local
17 ^{ flags=1; isa = (void *)isa; };
/external/deqp/framework/delibs/dethread/
H A DdeSemaphore.h38 deUint32 flags; member in struct:deSemaphoreAttributes_s
/external/elfutils/libelf/
H A Delf_flagehdr.c1 /* Manipulate ELF header flags.
41 elf_flagehdr (Elf *elf, Elf_Cmd cmd, unsigned int flags) argument
55 result = (elf->state.elf.ehdr_flags |= (flags & ELF_F_DIRTY));
57 result = (elf->state.elf.ehdr_flags &= ~(flags & ELF_F_DIRTY));
H A Delf_flagelf.c1 /* Manipulate ELF file flags.
41 elf_flagelf (Elf *elf, Elf_Cmd cmd, unsigned int flags) argument
55 result = (elf->flags
56 |= (flags & (ELF_F_DIRTY | ELF_F_LAYOUT | ELF_F_PERMISSIVE)));
58 result = (elf->flags
59 &= ~(flags & (ELF_F_DIRTY | ELF_F_LAYOUT | ELF_F_PERMISSIVE)));
H A Delf_flagphdr.c1 /* Manipulate ELF program header flags.
41 elf_flagphdr (Elf *elf, Elf_Cmd cmd, unsigned int flags) argument
55 result = (elf->state.elf.phdr_flags |= (flags & ELF_F_DIRTY));
57 result = (elf->state.elf.phdr_flags &= ~(flags & ELF_F_DIRTY));
H A Delf_flagscn.c1 /* Manipulate ELF section flags.
41 elf_flagscn (Elf_Scn *scn, Elf_Cmd cmd, unsigned int flags) argument
55 result = (scn->flags |= (flags & ELF_F_DIRTY));
57 result = (scn->flags &= ~(flags & ELF_F_DIRTY));
H A Delf_flagshdr.c1 /* Manipulate ELF section header flags.
41 elf_flagshdr (Elf_Scn *scn, Elf_Cmd cmd, unsigned int flags) argument
55 result = (scn->shdr_flags |= (flags & ELF_F_DIRTY));
57 result = (scn->shdr_flags &= ~(flags & ELF_F_DIRTY));
/external/icu/icu4c/source/i18n/
H A Duregexc.cpp26 uint32_t flags,
38 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status);
25 uregex_openC( const char *pattern, uint32_t flags, UParseError *pe, UErrorCode *status) argument
/external/v8/test/mjsunit/harmony/
H A Dregexp-flags.js7 RegExp.prototype.flags = 'setter should be undefined';
9 assertEquals('', RegExp('').flags);
10 assertEquals('', /./.flags);
11 assertEquals('gimuy', RegExp('', 'yugmi').flags);
12 assertEquals('gimuy', /foo/yumig.flags);
14 var descriptor = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags');

Completed in 708 milliseconds

1234567891011>>