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

1 2 3 4 5 6 7 8

  /external/emma/core/java12/com/vladium/emma/rt/
RTSettings.java 29 public static synchronized void setStandaloneMode (final boolean standalone)
31 s_not_standalone = ! standalone;
  /external/clang/test/Analysis/
cfg.cpp 49 // CHECK-NEXT: 9: struct standalone myStandalone;
60 struct standalone { int x, y; }; struct
61 struct standalone myStandalone;
  /external/chromium-trace/trace-viewer/examples/
run_stream_server.sh 6 SERVERPATH=$BASEDIR/stream_server/standalone.py
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_unknown.properties 32 standalone=no
output_xml.properties 31 standalone=no
XSLOutputAttributes.java 38 * standalone
97 * @return a value of "yes" if the <code>standalone</code> delaration is to
170 * Sets the value coming from the xsl:output standalone stylesheet attribute.
171 * @param standalone a value of "yes" indicates that the
172 * <code>standalone</code> delaration is to be included in the output
175 public void setStandalone(String standalone);
ToXMLStream.java 129 String standalone; local
133 standalone = " standalone=\"" + getStandalone() + "\"";
137 standalone = "";
148 writer.write(standalone);
159 // standalone, or a doctype system or public is
  /external/ceres-solver/android/
build_android.sh 46 # standalone NDK toolchain from the NDK, and getting the right arguments to
100 MAKE_ANDROID_TOOLCHAIN=$ANDROID_NDK/build/tools/make-standalone-toolchain.sh
121 # Make a standalone Android NDK toolchain if needed.
124 echo "Extracting the Android GCC standalone toolchain to:"
126 $ANDROID_NDK/build/tools/make-standalone-toolchain.sh \
130 echo "Found NDK standalone toolchain; skipping creation."
  /ndk/build/tools/
build-device-llvm.sh 160 run $BUILDTOOLS/make-standalone-toolchain.sh \
166 --install-dir=$BUILD_OUT/ndk-standalone-$arch
167 fail_panic "Couldn't make standalone for $arch"
170 cp -f $BUILD_OUT/ndk-standalone-$arch/$toolchain_prefix/lib/libstlport_shared.so $TOOLCHAIN_BUILD_PREFIX/$arch
172 CC=$BUILD_OUT/ndk-standalone-$arch/bin/$toolchain_prefix-gcc
173 CXX=$BUILD_OUT/ndk-standalone-$arch/bin/$toolchain_prefix-g++
208 CC=$BUILD_OUT/ndk-standalone-$arch/bin/$toolchain_prefix-gcc
209 CXX="$BUILD_OUT/ndk-standalone-$arch/bin/$toolchain_prefix-g++ -lstlport_shared"
231 STRIP=$BUILD_OUT/ndk-standalone-$arch/bin/$toolchain_prefix-strip
  /external/iptables/iptables/
Android.mk 42 iptables-standalone.c iptables.c xshared.c
69 ip6tables-standalone.c ip6tables.c xshared.c
  /external/v8/
Makefile 121 GYPFILES = build/all.gyp build/common.gypi build/standalone.gypi \
215 -Ibuild/standalone.gypi --depth=. -Dtarget_arch=ia32 \
220 -Ibuild/standalone.gypi --depth=. -Dtarget_arch=x64 \
225 -Ibuild/standalone.gypi --depth=. -Ibuild/armu.gypi \
230 -Ibuild/standalone.gypi --depth=. -Ibuild/mipsu.gypi \
235 -Ibuild/standalone.gypi --depth=. -S-native $(GYPFLAGS)
241 -Ibuild/standalone.gypi --depth=. -Ibuild/android.gypi \
  /external/bison/lib/
timevar.c 153 /* Non-zero if this timing variable is running as a standalone
155 unsigned standalone : 1; member in struct:timevar_def
281 TIMEVAR cannot be running as a standalone timer. */
297 /* Can't push a standalone timer. */
298 if (tv->standalone)
386 if (tv->standalone)
388 tv->standalone = 1;
407 if (!tv->standalone)
427 /* Is TIMEVAR currently running as a standalone timer? */
428 if (tv->standalone)
    [all...]
  /external/expat/lib/
xmltok_ns.c 100 int *standalone)
112 standalone);
  /frameworks/base/core/java/android/text/format/
DateFormat.java 527 boolean standalone = (kind == 'c');
529 return standalone ? ld.tinyStandAloneWeekdayNames[day] : ld.tinyWeekdayNames[day];
531 return standalone ? ld.longStandAloneWeekdayNames[day] : ld.longWeekdayNames[day];
533 return standalone ? ld.shortStandAloneWeekdayNames[day] : ld.shortWeekdayNames[day];
538 boolean standalone = (kind == 'L');
540 return standalone ? ld.tinyStandAloneMonthNames[month] : ld.tinyMonthNames[month];
542 return standalone ? ld.longStandAloneMonthNames[month] : ld.longMonthNames[month];
544 return standalone ? ld.shortStandAloneMonthNames[month] : ld.shortMonthNames[month];
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlparser.h 84 void ExpatXmlDecl(const char * ver, const char * enc, int standalone);
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlparser.h 84 void ExpatXmlDecl(const char * ver, const char * enc, int standalone);
  /ndk/tests/
run-tests-all.sh 126 # Run standalone tests
162 ./build/tools/make-standalone-toolchain.sh \
177 ./tests/standalone/run.sh --prefix=$(get_toolchain_binprefix_for_arch $ARCH $GCC_VERSION $TAG)-gcc)
181 dump "### [$TAG] Making $ARCH gcc-$GCC_VERSION/clang$LLVM_VERSION standalone toolchain STL=$STL"
184 dump "### [$TAG] Testing $ARCH gcc-$GCC_VERSION standalone toolchain"
186 ./tests/standalone/run.sh --no-sysroot \
190 dump "### [$TAG] Testing clang$LLVM_VERSION in $ARCH gcc-$GCC_VERSION standalone toolchain STL=$STL"
192 ./tests/standalone/run.sh --no-sysroot \
  /cts/tests/tests/nativeopengl/libnativeopengltests/
Android.mk 19 LOCAL_PATH:= $(call my-dir)/../standalone/jni/
  /external/chromium_org/v8/
Makefile.nacl 96 -Ibuild/standalone.gypi --depth=. \
  /external/tinyxml/
tinyxml.cpp 1394 standalone = _standalone;
1406 standalone = _standalone;
1433 if ( !standalone.empty() )
1434 fprintf (cfile, "standalone=\"%s\" ", standalone.c_str ());
1454 if ( !standalone.empty() )
1456 (*stream) << "standalone=\"";
1457 PutString( standalone, stream );
1470 target->standalone = standalone;
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 106 * and standalone flag (if standalone not null)
109 void startDocument (String encoding, Boolean standalone)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 240 # For standalone apps, we have our own minimal site.py. We don't need
308 if %(standalone)s or %(semi_standalone)s:
310 if %(standalone)s:
336 # When building a standalone app with Python.framework, we need to copy
386 # If True, build standalone app.
387 standalone = 0 variable in class:AppBuilder
389 # If True, build semi-standalone app (only includes third-party modules).
399 # The following attributes are only used when building a standalone app.
421 if ((self.standalone or self.semi_standalone)
424 "building a standalone application."
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 1386 standalone = _standalone;
1398 standalone = _standalone;
1431 if ( !standalone.empty() ) {
1432 if ( cfile ) fprintf (cfile, "standalone=\"%s\" ", standalone.c_str ());
1433 if ( str ) { (*str) += "standalone=\""; (*str) += standalone; (*str) += "\" "; }
1446 target->standalone = standalone;
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 6 * @fileoverview NTP Standalone hack
51 icon_big: 'standalone/poppit-icon.png',
52 icon_small: 'standalone/poppit-favicon.png',
63 icon_big: 'standalone/gmail-icon.png',
64 icon_small: 'standalone/gmail-favicon.png',
75 icon_big: 'standalone/googlebooks-icon.png',
76 icon_small: 'standalone/googlebooks-favicon.png',
88 icon_big: 'standalone/googlemaps-icon.png',
89 icon_small: 'standalone/googlemaps-favicon.png',
101 icon_big: 'standalone/entaglement-icon.png'
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 341 public void startDocument(String encoding, Boolean standalone) throws IOException {
357 if (standalone != null) {
358 writer.write("standalone='");
360 standalone.booleanValue() ? "yes" : "no");

Completed in 4020 milliseconds

1 2 3 4 5 6 7 8