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

1 2 3 4 5

  /ndk/build/tools/
deploy-host-mcld.sh 33 this script copy toolchains/llvm-$DEFAULT_LLVM_VERSION/prebuilt/$SYSTEM/bin/ld.mcld[.exe]
78 # compute SYSTEM of this ld.mcld
79 SYSTEM=${MCLD%%/bin/*}
80 SYSTEM=${SYSTEM##*prebuilt/}
81 SYSTEMS=$SYSTEMS" $SYSTEM"
85 for SYSTEM in $SYSTEMS; do
87 if [ "$SYSTEM" != "${SYSTEM%%windows*}" ] ; then
91 MCLD=toolchains/llvm-$DEFAULT_LLVM_VERSION/prebuilt/$SYSTEM/bin/ld.mcld$HOST_EX
    [all...]
package-release.sh 107 be named like <toolname>-<system>.tar.bz2, where <toolname> is an arbitrary
108 tool name, and <system> is one of: $SYSTEMS
425 # now, for each system, create a package
433 for SYSTEM in $SYSTEMS; do
434 echo "Preparing package for system $SYSTEM."
435 BIN_RELEASE=$RELEASE_PREFIX-$SYSTEM
441 # Remove tests containing duplicated files in case-insensitive file system
442 if [ "$SYSTEM" = "windows" -o "$SYSTEM" = "darwin-x86" ]; the
    [all...]
build-host-python.sh 37 By default, the script rebuilds Python for you host system [$HOST_TAG],
107 for SYSTEM in $IN_SYSTEMS; do
109 case $SYSTEM in
111 SYSTEM=${SYSTEM%%x86}x86_64
114 SYSTEM=windows-x86_64
120 case $SYSTEM in
122 SYSTEM=windows
126 OUT_SYSTEMS="$OUT_SYSTEMS $SYSTEM"
194 for SYSTEM in $BH_HOST_SYSTEMS; d
    [all...]
build-host-prebuilts.sh 149 local SYSTEM="$1"
220 for SYSTEM in $SYSTEMS; do
226 case "$SYSTEM" in
239 if [ "$SYSTEM" != "$HOST_TAG32" -a "$CANADIAN_BUILD" != "yes" ]; then
240 case $SYSTEM in
243 do_remote_host_build "$SYSTEM" "$ARCH" "$DARWIN_SSH"
245 echo "WARNING: Can't build $SYSTEM binaries on this system!"
252 # Determin the display system name
253 SYSNAME=$SYSTEM
    [all...]
build-host-gdb.sh 32 By default, the script rebuilds GDB for you host system [$HOST_TAG],
107 for SYSTEM in $BH_HOST_SYSTEMS; do
108 bh_setup_build_for_host $SYSTEM
112 # $1: host system tag
113 # $2: target system tag
120 # $1: host system tag
121 # $2: target system tag
141 # $1: host system tag
169 # $1: host system tag
302 for SYSTEM in $BH_HOST_SYSTEMS; d
    [all...]
build-host-gcc.sh 33 for the current host system [$HOST_TAG]. You can otherwise give a list of
43 By default, the script rebuilds the toolchain(s) for you host system [$HOST_TAG],
201 # match those of the system the generated compiler binaries will run on.
210 # Important note: When identifying a build or host system, there is
211 # a difference between 'NDK system tags' and "GNU configuration triplet'.
213 # A "system tag" is specific to the NDK and identifies a given host
214 # system for the toolchain binaries, valid values:
224 # A GNU configuration triplet identifies a system too, but it used by
230 # i686-linux-gnu (Linux x86 system, with GNU libc)
259 # $1: system tag (e.g. linux-x86
    [all...]
make-standalone-toolchain.sh 50 SYSTEM=$HOST_TAG
52 SYSTEM=$HOST_TAG32
54 register_var_option "--system=<name>" SYSTEM "Specify host system"
262 if [ ! -d "$TOOLCHAIN_PATH/prebuilt/$SYSTEM" ] ; then
263 echo "Host system '$SYSTEM' is not supported by the source NDK!"
264 echo "Try --system=<name> with one of: " `(cd $TOOLCHAIN_PATH/prebuilt && ls) | grep -v gdbserver`
268 TOOLCHAIN_PATH="$TOOLCHAIN_PATH/prebuilt/$SYSTEM"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
incpath.h 34 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /ndk/tests/build/warn-noabi/
build.sh 27 SYSTEM=$(get_prebuilt_host_tag)
28 if [ "$SYSTEM" = "windows" ] ; then
32 SYSTEM64=${SYSTEM}_64
36 ARM_GPP=$NDK/toolchains/arm-linux-androideabi-$VERSION/prebuilt/$SYSTEM/bin/arm-linux-androideabi-g++${HOST_EXE}
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
AnnotationVisibility.java 39 public static final int SYSTEM = 2;
41 private static String[] NAMES = new String[] {"build", "runtime", "system"};
58 if (visibility.equals("system")) {
59 return SYSTEM;
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /packages/apps/DeskClock/src/com/android/deskclock/
AndroidClockTextView.java 30 private static final String SYSTEM = "/system/fonts/";
31 private static final String SYSTEM_FONT_TIME_BACKGROUND = SYSTEM + "AndroidClock.ttf";
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOCase.java 41 * The constant for case sensitive regardless of operating system.
46 * The constant for case insensitive regardless of operating system.
51 * The constant for case sensitivity determined by the current operating system.
57 public static final IOCase SYSTEM = new IOCase("System", !FilenameUtils.isSystemWindows());
83 if (IOCase.SYSTEM.name.equals(name)){
84 return IOCase.SYSTEM;
103 * This ensures that the correct flag is set for SYSTEM.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 31 ( 'SYSTEM' WS sys1=VALUE
32 {say("SYSTEM: " + $sys1.text)}
36 {say("SYSTEM: " + $sys2.text)}
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java 19 import static com.android.dx.rop.annotation.AnnotationVisibility.SYSTEM;
92 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
106 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
120 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
136 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
154 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
167 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
230 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/power/
background.js 11 SYSTEM: 'system'
55 case StateEnum.SYSTEM:
56 chrome.power.requestKeepAwake('system');
84 setState(StateEnum.SYSTEM);
86 case StateEnum.SYSTEM:
  /external/lohit-fonts/lohit-odia-ttf/
66-lohit-odia.conf 2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  /ndk/tests/
check-release.sh 38 SYSTEM=
49 --system=*)
50 SYSTEM=$optarg
75 echo " --system=<name> Specify host system type."
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationUtils.java 92 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
106 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
120 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
136 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
155 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
168 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
231 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationUtils.java 91 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
105 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
119 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
135 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
153 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
166 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
229 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /external/qemu/distrib/
package-release.sh 188 panic "Unsupported system! This can only run on Linux and Darwin."
227 --system=*)
228 OPT_SYSTEM=${OPT##--system=}
276 --system=<list> Specify host system list [$DEFAULT_SYSTEMS].
310 log "Auto-config: --system=$SYSTEMS"
451 for SYSTEM in $SYSTEMS; do
452 PKG_NAME="$PKG_REVISION-$SYSTEM"
455 case $SYSTEM in
477 panic "Can't rebuild $SYSTEM binaries on $HOST_SYSTEM for now!
    [all...]
  /frameworks/base/services/core/java/com/android/server/firewall/
SenderFilter.java 36 private static final String VAL_SYSTEM = "system";
37 private static final String VAL_SYSTEM_OR_SIGNATURE = "system|signature";
66 return SYSTEM;
87 private static final Filter SYSTEM = new Filter() {
108 // This checks whether the caller is either the system process, or has the same user id
  /external/chromium_org/chrome/browser/chromeos/dbus/
cros_dbus_service_unittest.cc 41 options.bus_type = dbus::Bus::SYSTEM;

Completed in 607 milliseconds

1 2 3 4 5