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

/build/core/clang/
H A Darm.mk1 # Clang flags for arm arch, target or host.
15 # Include common unknown flags
27 define subst-clang-incompatible-arm-flags
H A Darm64.mk1 # Clang flags for arm64 arch, target or host.
11 # Include common unknown flags
21 # We don't have any arm64 flags to substitute yet.
22 define subst-clang-incompatible-arm64-flags
H A Dmips.mk1 # Clang flags for mips arch, target or host.
7 # Include common unknown flags
17 # We don't have any mips flags to substitute yet.
18 define subst-clang-incompatible-mips-flags
H A Dmips64.mk1 # Clang flags for mips64 arch, target or host.
7 # Include common unknown flags
17 # We don't have any mips64 flags to substitute yet.
18 define subst-clang-incompatible-mips64-flags
H A Dx86.mk1 # Clang flags for x86 arch, target or host.
8 # Include common unknown flags
16 # We don't have any x86 flags to substitute yet.
17 define subst-clang-incompatible-x86-flags
H A Dx86_64.mk1 # Clang flags for x86_64 arch, target or host.
7 # Include common unknown flags
15 # We don't have any x86_64 flags to substitute yet.
16 define subst-clang-incompatible-x86_64-flags
H A DTARGET_arm64.mk34 define convert-to-clang-flags
36 $(call subst-clang-incompatible-arm64-flags,\
42 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CFLAGS)) \
46 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
50 $(call convert-to-clang-flags,$(TARGET_GLOBAL_LDFLAGS)) \
H A DTARGET_mips64.mk34 define convert-to-clang-flags
36 $(call subst-clang-incompatible-mips64-flags,\
42 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CFLAGS)) \
46 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
50 $(call convert-to-clang-flags,$(TARGET_GLOBAL_LDFLAGS)) \
H A DTARGET_x86_64.mk34 define convert-to-clang-flags
36 $(call subst-clang-incompatible-x86_64-flags,\
42 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CFLAGS)) \
46 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
50 $(call convert-to-clang-flags,$(TARGET_GLOBAL_LDFLAGS)) \
H A DHOST_x86_64.mk47 define convert-to-host-clang-flags
49 $(call subst-clang-incompatible-x86_64-flags,\
55 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CFLAGS)) \
59 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CPPFLAGS)) \
63 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_LDFLAGS)) \
/build/tools/zipalign/
H A DZipFile.cpp61 status_t ZipFile::open(const char* zipFileName, int flags) argument
67 if ((flags & kOpenTruncate))
68 flags |= kOpenCreate; // trunc implies create
70 if ((flags & kOpenReadOnly) && (flags & kOpenReadWrite))
72 if (!((flags & kOpenReadOnly) || (flags & kOpenReadWrite)))
74 if ((flags & kOpenCreate) && !(flags & kOpenReadWrite))
77 if (flags
[all...]

Completed in 30 milliseconds