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

1 2 3 4 5 6 7 8 91011>>

  /external/zlib/src/contrib/iostream/
test.cpp 8 gzofstream os( 1, ios::out );
12 os << "Hello, Mommy" << endl;
14 os << setcompressionlevel( Z_NO_COMPRESSION );
15 os << "hello, hello, hi, ho!" << endl;
17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION )
20 os.close();
  /frameworks/base/core/java/android/os/
BatteryProperties.aidl 17 package android.os;
Bundle.aidl 1 /* //device/java/android/android/os/Bundle.aidl
18 package android.os;
DeadObjectException.java 17 package android.os;
18 import android.os.RemoteException;
Message.aidl 18 package android.os;
Messenger.aidl 18 package android.os;
ParcelFileDescriptor.aidl 1 /* //device/java/android/android/os/ParcelFileDescriptor.aidl
18 package android.os;
ParcelUuid.aidl 17 package android.os;
PatternMatcher.aidl 17 package android.os;
RemoteCallback.aidl 17 package android.os;
ResultReceiver.aidl 1 /* //device/java/android/android/os/ParcelFileDescriptor.aidl
18 package android.os;
TransactionTooLargeException.java 17 package android.os;
18 import android.os.RemoteException;
UserHandle.aidl 17 package android.os;
WorkSource.aidl 16 package android.os;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
debug.py 1 import os namespace
7 DEBUG = os.environ.get('DISTUTILS_DEBUG')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
debug.py 1 import os namespace
7 DEBUG = os.environ.get('DISTUTILS_DEBUG')
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
runant.py 24 the python os library)
34 import os, os.path, string, sys namespace
42 if os.environ.has_key('ANT_HOME'):
43 ANT_HOME = os.environ['ANT_HOME']
45 ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0])))
48 ANT_LIB = os.path.join(ANT_HOME, 'lib')
52 if not os.environ.has_key('JAVACMD')
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValueTestHelper.cpp 44 void PrintTo(const AnimatableClipPathOperation& animValue, ::std::ostream* os)
46 *os << "AnimatableClipPathOperation@" << &animValue;
49 void PrintTo(const AnimatableColor& animColor, ::std::ostream* os)
51 *os << "AnimatableColor("
56 void PrintTo(const AnimatableDouble& animDouble, ::std::ostream* os)
58 PrintTo(*(animDouble.toCSSValue().get()), os, "AnimatableDouble");
61 void PrintTo(const AnimatableImage& animImage, ::std::ostream* os)
63 PrintTo(*(animImage.toCSSValue().get()), os, "AnimatableImage");
66 void PrintTo(const AnimatableLength& animLength, ::std::ostream* os)
68 PrintTo(*(animLength.toCSSValue().get()), os, "AnimatableLength")
232 PrintTo(*(toAnimatableClipPathOperation(&animValue)), os); local
234 PrintTo(*(toAnimatableColor(&animValue)), os); local
236 PrintTo(*(toAnimatableDouble(&animValue)), os); local
238 PrintTo(*(toAnimatableImage(&animValue)), os); local
240 PrintTo(*(toAnimatableLength(&animValue)), os); local
242 PrintTo(*(toAnimatableLengthBox(&animValue)), os); local
244 PrintTo(*(toAnimatableLengthPoint(&animValue)), os); local
246 PrintTo(*(toAnimatableLengthSize(&animValue)), os); local
248 PrintTo(*(static_cast<const AnimatableNeutral*>(&animValue)), os); local
250 PrintTo(*(toAnimatableRepeatable(&animValue)), os); local
252 PrintTo(*(toAnimatableSVGLength(&animValue)), os); local
254 PrintTo(*(toAnimatableSVGPaint(&animValue)), os); local
256 PrintTo(*(toAnimatableShapeValue(&animValue)), os); local
258 PrintTo(*(toAnimatableStrokeDasharrayList(&animValue)), os); local
260 PrintTo(*(toAnimatableTransform(&animValue)), os); local
262 PrintTo(*(toAnimatableUnknown(&animValue)), os); local
264 PrintTo(*(toAnimatableVisibility(&animValue)), os); local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
set_sys_path.py 37 import os namespace
42 sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
  /external/chromium_org/chrome/test/functional/media/
pyauto_media.py 20 import os namespace
26 media_dir = os.path.abspath(os.path.dirname(__file__))
28 sys.path.append(os.path.normpath(os.path.join(media_dir, os.pardir)))
32 sys.path.append(os.path.normpath(os.path.join(
33 media_dir, os.pardir, os.pardir, os.pardir, os.pardir
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
streambuf.pass.cpp 31 std::basic_ostream<char> os(&sb);
32 assert(os.rdbuf() == &sb);
33 assert(os.tie() == 0);
34 assert(os.fill() == ' ');
35 assert(os.rdstate() == os.goodbit);
36 assert(os.exceptions() == os.goodbit);
37 assert(os.flags() == (os.skipws | os.dec))
    [all...]
  /cts/tests/src/android/os/cts/
IEmptyService.aidl 17 package android.os.cts;
19 import android.os.IBinder;
  /external/chromium_org/build/
gyp_chromium.py 15 import os namespace
17 path = os.path.abspath(os.path.split(__file__)[0])
18 execfile(os.path.join(path, 'gyp_chromium'))
  /external/chromium_org/tools/gyp/test/actions/src/
confirm-dep-files.py 14 import os namespace
18 if (os.path.exists("dep_1.txt") and
19 os.path.exists("dep_2.txt") and
20 os.path.exists("dep_3.txt")):
  /external/skia/
gyp_skia.py 15 import os namespace
17 path = os.path.abspath(os.path.split(__file__)[0])
18 execfile(os.path.join(path, 'gyp_skia'))

Completed in 604 milliseconds

1 2 3 4 5 6 7 8 91011>>