Searched refs:os (Results 1 - 25 of 4603) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/namedpkg/
H A Dslave.py2 import os namespace
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/namedpkg/
H A Dslave.py2 import os namespace
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/namedpkg/
H A Dslave.py2 import os namespace
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/src/child/namedpkg/
H A Dslave.py2 import os namespace
/external/v8/build/win/
H A Duse_ansi_codes.py7 import os namespace
10 print 'ANSICON' in os.environ
/external/chromium-trace/catapult/hooks/
H A D__init__.py4 import os namespace
/external/v8/tools/gyp/test/variables/commands/repeated_multidir/
H A Dprint_cwd_basename.py7 import os namespace
8 import os.path namespace
10 print os.path.basename(os.getcwd())
/external/autotest/frontend/
H A Dsetup_django_readonly_environment.py8 import os namespace
11 os.environ.setdefault('DJANGO_SETTINGS_MODULE',
/external/zlib/src/contrib/iostream/
H A Dtest.cpp8 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();
/external/libyuv/files/
H A Dgyp_libyuv.py25 import os namespace
27 path = os.path.abspath(os.path.split(__file__)[0])
28 execfile(os.path.join(path, 'gyp_libyuv'))
/external/pdfium/build/
H A Dgyp_pdfium.py5 import os namespace
7 path = os.path.abspath(os.path.split(__file__)[0])
8 execfile(os.path.join(path, 'gyp_pdfium'))
/external/skia/
H A Dgyp_skia.py15 import os namespace
17 path = os.path.abspath(os.path.split(__file__)[0])
18 execfile(os.path.join(path, 'gyp_skia'))
/external/v8/gypfiles/
H A Dgyp_v8.py38 import os namespace
40 path = os.path.abspath(os.path.split(__file__)[0])
41 execfile(os.path.join(path, 'gyp_v8'))
/external/webrtc/webrtc/build/
H A Dgyp_webrtc.py21 import os namespace
23 path = os.path.abspath(os.path.split(__file__)[0])
24 execfile(os.path.join(path, 'gyp_webrtc'))
/external/autotest/client/cros/networking/
H A Dapmanager_helper.py5 import os.path namespace
9 return os.path.exists('/usr/bin/apmanager')
/external/fonttools/MetaTools/
H A DbuildChangeLog.py3 import os, sys namespace
5 fontToolsDir = os.path.dirname(os.path.dirname(os.path.normpath(
6 os.path.join(os.getcwd(), sys.argv[0]))))
8 os.chdir(fontToolsDir)
9 os.system("git2cl > Doc/ChangeLog")
/external/v8/build/android/buildbot/
H A Denv_to_json.py9 import os namespace
11 print json.dumps(dict(os.environ))
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Drunant.py24 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
[all...]
/external/autotest/client/bin/self-test/
H A Dtest_redirect2 import os namespace
8 os.system ("echo About to redirect stdout 2")
9 os.system ("date")
12 os.system ("echo This should go into the stdout logfile 2")
15 os.system ("date")
19 os.system ("echo stdout all done 2")
20 os.system ("date")
/external/skia/platform_tools/android/tests/
H A Dtest_variables.py12 import os namespace
15 SCRIPT_DIR = os.path.dirname(__file__)
16 ANDROID_DIR = os.path.normpath(os.path.join(SCRIPT_DIR, os.pardir))
19 BIN_DIR = os.path.join(ANDROID_DIR, 'bin')
22 GYP_GEN_DIR = os.path.join(ANDROID_DIR, 'gyp_gen')
/external/v8/src/
H A Dmachine-type.cc11 std::ostream& operator<<(std::ostream& os, MachineRepresentation rep) { argument
14 return os << "kMachNone";
16 return os << "kRepBit";
18 return os << "kRepWord8";
20 return os << "kRepWord16";
22 return os << "kRepWord32";
24 return os << "kRepWord64";
26 return os << "kRepFloat32";
28 return os << "kRepFloat64";
30 return os << "kRepSimd12
39 operator <<(std::ostream& os, MachineSemantic type) argument
63 operator <<(std::ostream& os, MachineType type) argument
[all...]
H A Dobjects-printer.cc20 OFStream os(stdout);
21 this->Print(os);
22 os << std::flush;
26 void Object::Print(std::ostream& os) { // NOLINT argument
28 Smi::cast(this)->SmiPrint(os);
30 HeapObject::cast(this)->HeapObjectPrint(os);
35 void HeapObject::PrintHeader(std::ostream& os, const char* id) { // NOLINT argument
36 os << reinterpret_cast<void*>(this) << ": [";
38 os << id;
40 os << ma
46 HeapObjectPrint(std::ostream& os) argument
209 Simd128ValuePrint(std::ostream& os) argument
218 Float32x4Print(std::ostream& os) argument
261 ByteArrayPrint(std::ostream& os) argument
266 BytecodeArrayPrint(std::ostream& os) argument
271 FreeSpacePrint(std::ostream& os) argument
277 FixedTypedArrayPrint( std::ostream& os) argument
283 PrintProperties(std::ostream& os) argument
323 DoPrintElements(std::ostream& os, Object* object) argument
331 PrintElements(std::ostream& os) argument
404 JSObjectPrintHeader(std::ostream& os, JSObject* obj, const char* id) argument
426 JSObjectPrintBody(std::ostream& os, JSObject* obj, bool print_elements = true) argument
439 JSObjectPrint(std::ostream& os) argument
444 JSArrayPrint(std::ostream& os) argument
451 JSRegExpPrint(std::ostream& os) argument
458 JSModulePrint(std::ostream& os) argument
466 SymbolPrint(std::ostream& os) argument
478 MapPrint(std::ostream& os) argument
531 TypeFeedbackInfoPrint(std::ostream& os) argument
539 AliasedArgumentsEntryPrint( std::ostream& os) argument
546 FixedArrayPrint(std::ostream& os) argument
556 FixedDoubleArrayPrint(std::ostream& os) argument
571 TransitionArrayPrint(std::ostream& os) argument
594 FeedbackVectorSpecPrint( std::ostream& os) argument
625 TypeFeedbackMetadataPrint( std::ostream& os) argument
655 TypeFeedbackVectorPrint(std::ostream& os) argument
722 JSValuePrint(std::ostream& os) argument
729 JSMessageObjectPrint(std::ostream& os) argument
741 StringPrint(std::ostream& os) argument
768 NamePrint(std::ostream& os) argument
782 JSDatePrint(std::ostream& os) argument
805 JSProxyPrint(std::ostream& os) argument
818 JSSetPrint(std::ostream& os) argument
825 JSMapPrint(std::ostream& os) argument
834 OrderedHashTableIteratorPrint( std::ostream& os) argument
853 JSSetIteratorPrint(std::ostream& os) argument
859 JSMapIteratorPrint(std::ostream& os) argument
865 JSWeakMapPrint(std::ostream& os) argument
872 JSWeakSetPrint(std::ostream& os) argument
879 JSArrayBufferPrint(std::ostream& os) argument
888 JSTypedArrayPrint(std::ostream& os) argument
899 JSDataViewPrint(std::ostream& os) argument
909 JSBoundFunctionPrint(std::ostream& os) argument
918 JSFunctionPrint(std::ostream& os) argument
938 SharedFunctionInfoPrint(std::ostream& os) argument
982 JSGlobalProxyPrint(std::ostream& os) argument
990 JSGlobalObjectPrint(std::ostream& os) argument
998 CellPrint(std::ostream& os) argument
1005 PropertyCellPrint(std::ostream& os) argument
1013 WeakCellPrint(std::ostream& os) argument
1024 CodePrint(std::ostream& os) argument
1035 ForeignPrint(std::ostream& os) argument
1041 AccessorInfoPrint(std::ostream& os) argument
1053 BoxPrint(std::ostream& os) argument
1060 PrototypeInfoPrint(std::ostream& os) argument
1070 SloppyBlockWithEvalContextExtensionPrint(std::ostream& os) argument
1078 AccessorPairPrint(std::ostream& os) argument
1086 AccessCheckInfoPrint(std::ostream& os) argument
1096 InterceptorInfoPrint(std::ostream& os) argument
1108 CallHandlerInfoPrint(std::ostream& os) argument
1116 FunctionTemplateInfoPrint( std::ostream& os) argument
1140 ObjectTemplateInfoPrint(std::ostream& os) argument
1152 AllocationSitePrint(std::ostream& os) argument
1176 AllocationMementoPrint(std::ostream& os) argument
1187 ScriptPrint(std::ostream& os) argument
1206 DebugInfoPrint(std::ostream& os) argument
1215 BreakPointInfoPrint(std::ostream& os) argument
1225 PrintBitMask(std::ostream& os, uint32_t value) argument
1241 Print(std::ostream& os) argument
1324 PrintDescriptors(std::ostream& os) argument
1343 PrintTransitions(std::ostream& os, Object* transitions, bool print_header) argument
1390 PrintTransitions(std::ostream& os) argument
[all...]
/external/autotest/client/site_tests/security_Minijail0/src/
H A Dmountns-enter-child.py5 import os namespace
12 if os.access(test_file, os.F_OK):
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
H A Dtunes_db.py20 import os namespace
24 definition.import_file_set(os.path.join(os.path.dirname(__file__),
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/
H A Dmove.pass.cpp48 test_ostream<char> os(std::move(os1));
50 assert(os.rdbuf() == 0);
51 assert(os.tie() == 0);
52 assert(os.fill() == ' ');
53 assert(os.rdstate() == os.goodbit);
54 assert(os.exceptions() == os.goodbit);
55 assert(os.flags() == (os
[all...]

Completed in 1486 milliseconds

1234567891011>>