HomeSort by relevance Sort by last modified time
    Searched full:archs (Results 26 - 50 of 185) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/tools/gyp/test/mac/objc-arc/
test.gyp 23 'ARCHS': [ 'x86_64' ], # For the non-fragile objc ABI.
40 'ARCHS': [ 'x86_64' ], # For the non-fragile objc ABI.
  /external/valgrind/main/memcheck/tests/
reach_thread_register.c 29 // Not clear that for other archs, i is in a register.
30 if (*i) // should do better for other archs.
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 21 def __init__(self, platforms_root, archs):
24 self.archs = archs
26 for arch in self.archs:
66 """Scan includes for all defined archs in given root"""
70 for arch in [a for a in self.archs if a != 'common']:
102 for arch in self.archs:
124 self.collector = FileCollector(self.platforms_root, self.archs)
147 for arch in self.archs:
183 for arch in self.archs
    [all...]
  /ndk/build/tools/
dev-platform-expand.sh 66 ARCHS=$(find_ndk_unknown_archs)
67 ARCHS="$DEFAULT_ARCHS $ARCHS"
68 register_var_option "--arch=<name>" ARCHS "List of target architectures"
145 ARCHS=$(commas_to_spaces $ARCHS)
146 log "Using architectures: $(commas_to_spaces $ARCHS)"
150 # for ARCH in $ARCHS; do
153 # for ARCH in $ARCHS; do
162 # for ARCH in $ARCHS; d
    [all...]
dev-rebuild-ndk.sh 43 ARCHS=$(find_ndk_unknown_archs)
44 ARCHS="$DEFAULT_ARCHS $ARCHS"
45 register_var_option "--arch=<arch>" ARCHS "Specify target architectures"
172 --arch=$(spaces_to_commas $ARCHS) \
180 # Rebuild all prebuilts for archs and platforms
209 --arch=$(spaces_to_commas $ARCHS) \
233 --arch=$(spaces_to_commas $ARCHS) \
build-host-prebuilts.sh 45 ARCHS=$(find_ndk_unknown_archs)
46 ARCHS="$DEFAULT_ARCHS $ARCHS"
47 register_var_option "--arch=<list>" ARCHS "List of target archs to build for"
105 run $BUILDTOOLS/gen-platforms.sh --minimal --dst-dir=$NDK_DIR --ndk-dir=$NDK_DIR --arch=$(spaces_to_commas $ARCHS)
115 ARCHS=$(commas_to_spaces $ARCHS)
118 UNKNOWN_ARCH=$(filter_out "$DEFAULT_ARCHS" "$ARCHS")
120 ARCHS=$(filter_out "$UNKNOWN_ARCH" "$ARCHS"
    [all...]
rebuild-all-prebuilt.sh 30 ARCHS=$(find_ndk_unknown_archs)
31 ARCHS="$DEFAULT_ARCHS $ARCHS"
32 register_var_option "--arch=<arch>" ARCHS "Specify target architectures"
105 FLAGS=$FLAGS" --arch=$(spaces_to_commas $ARCHS)"
package-release.sh 53 ARCHS=$(find_ndk_unknown_archs)
54 ARCHS="$DEFAULT_ARCHS $ARCHS"
55 register_var_option "--arch=<arch>" ARCHS "Specify target architecture(s)"
127 # Detect unknown archs
128 ARCHS=$(commas_to_spaces $ARCHS)
130 UNKNOWN_ARCH=$(filter_out "$DEFAULT_ARCHS arm64 x86_64 mips64" "$ARCHS")
132 ARCHS=$(filter_out "$UNKNOWN_ARCH" "$ARCHS")
    [all...]
build-host-gdb.sh 73 ARCHS=$DEFAULT_ARCHS
74 register_var_option "--arch=<list>" ARCHS "Build GDB client for these CPU architectures."
299 ARCHS=$(commas_to_spaces $ARCHS)
304 for ARCH in $ARCHS; do
314 for ARCH in $ARCHS; do
gen-platforms.sh 57 ARCHS=$(find_ndk_unknown_archs)
58 ARCHS="$DEFAULT_ARCHS $ARCHS"
152 echo " --arch=<list> List of CPU architectures [$ARCHS]"
224 ARCHS="$OPTION_ARCH"
226 log "Using architectures: $(commas_to_spaces $ARCHS)"
242 for ARCH in $ARCHS; do
246 for ARCH in $ARCHS; do
261 for ARCH in $ARCHS; do
274 echo "ERROR: Source directory doesn't support these ARCHs: $BAD_ARCHS
    [all...]
  /external/chromium_org/tools/gyp/test/ios/app-bundle/
test-crosscompile.gyp 37 'ARCHS': [
  /external/lldb/scripts/
verify_api.py 33 parser.add_option('-a', '--arch', type='string', action='append', dest='archs', help='architecure to use when checking the api')
39 if options.archs:
40 for arch in options.archs:
60 for arch in options.archs:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_osx_support.py 221 """Remove any unsupported archs from config vars"""
255 """Allow override of all archs with ARCHFLAGS env var"""
380 and detection of unavailable archs is deferred
394 # Allow user to override all archs with ARCHFLAGS env var
417 # Allow user to override all archs with ARCHFLAGS env var
454 archs = re.findall('-arch\s+(\S+)', cflags)
455 archs = tuple(sorted(set(archs)))
457 if len(archs) == 1:
458 machine = archs[0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_osx_support.py 221 """Remove any unsupported archs from config vars"""
255 """Allow override of all archs with ARCHFLAGS env var"""
380 and detection of unavailable archs is deferred
394 # Allow user to override all archs with ARCHFLAGS env var
417 # Allow user to override all archs with ARCHFLAGS env var
454 archs = re.findall('-arch\s+(\S+)', cflags)
455 archs = tuple(sorted(set(archs)))
457 if len(archs) == 1:
458 machine = archs[0
    [all...]
  /external/chromium_org/testing/gtest/xcode/Config/
General.xcconfig 11 ARCHS = i386 x86_64 ppc ppc64
  /external/protobuf/gtest/xcode/Config/
General.xcconfig 11 ARCHS = i386 x86_64 ppc ppc64
  /external/chromium_org/build/mac/
strip_save_dsym 54 archs = []
59 archs.append(type_match.group(1))
71 archs.append(arch_match.group(1))
74 archs = []
76 if len(archs) == 0:
79 return archs
88 archs = macho_archs(macho)
89 if len(archs) == 0:
92 for arch in archs:
  /external/chromium_org/native_client_sdk/src/build_tools/
test_sdk.py 104 archs = (getos.GetSystemArch('win'),)
107 archs = ('x86_32',)
110 archs = ('x86_64', 'x86_32')
136 for arch in archs:
  /external/kernel-headers/original/uapi/linux/
ipv6.h 61 } __attribute__((packed)); /* required for some archs */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
ipv6.h 57 } __attribute__ ((packed)); /* required for some archs */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ipv6.h 57 } __attribute__ ((packed)); /* required for some archs */
  /bionic/libc/kernel/tools/
kernel.py 197 def __init__(self,headers,archs,kernel_root,kernel_config):
201 'archs' is a list of architectures
209 self.archs = archs
273 for arch in self.archs:
  /external/chromium_org/tools/gyp/pylib/gyp/
xcode_emulation.py 31 def XcodeArchsVariableMapping(archs, archs_including_64_bit=None):
34 mapping = {'$(ARCHS_STANDARD)': archs}
40 """A class to resolve ARCHS variable from xcode_settings, resolving Xcode
63 def _ExpandArchs(self, archs, sdkroot):
64 """Expands variables references in ARCHS, and remove duplicates."""
67 for arch in archs:
81 def ActiveArchs(self, archs, valid_archs, sdkroot):
82 """Expands variables references in ARCHS, and filter by VALID_ARCHS if it
83 is defined (if not set, Xcode accept any value in ARCHS, otherwise, only
85 expanded_archs = self._ExpandArchs(archs or self._default, sdkroot or ''
    [all...]
  /external/chromium_org/chrome/tools/build/mac/
dump_product_syms 111 ARCHS=$(file "${DWARF_PATH}" | sed -Ene 's/^.*(i386|x86_64)$/\1/p')
112 if [[ -z "${ARCHS}" ]]; then
117 for ARCH in ${ARCHS}; do
  /external/lldb/test/
redo.py 182 archs = ''
184 archs += "--arch %s " % (arch)
186 command = "./dotest.py %s %s -v %s %s -f " % (compilers, archs, "" if no_trace else "-t", "-d" if do_delay else "")

Completed in 519 milliseconds

12 3 4 5 6 7 8