Searched refs:os (Results 126 - 150 of 2611) sorted by relevance

1234567891011>>

/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-printers.h116 ::std::ostream* os);
127 // TypeWithoutFormatter<T, kTypeKind>::PrintValue(value, os) is called
135 static void PrintValue(const T& value, ::std::ostream* os) { argument
137 sizeof(value), os); local
149 static void PrintValue(const T& value, ::std::ostream* os) { argument
154 *os << ("<" + pretty_str + ">");
168 static void PrintValue(const T& value, ::std::ostream* os) { argument
170 *os << kBigInt;
200 ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
204 kConvertibleToInteger : kOtherType)>::PrintValue(x, &os);
199 operator <<( ::std::basic_ostream<Char, CharTraits>& os, const T& x) argument
218 DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) argument
269 DefaultPrintTo(IsContainer , false_type , const C& container, ::std::ostream* os) argument
303 DefaultPrintTo(IsNotContainer , true_type , T* p, ::std::ostream* os) argument
335 DefaultPrintTo(IsNotContainer , false_type , const T& value, ::std::ostream* os) argument
353 PrintTo(const T& value, ::std::ostream* os) argument
386 PrintTo(char c, ::std::ostream* os) argument
390 PrintTo(static_cast<unsigned char>(c), os); local
394 PrintTo(bool x, ::std::ostream* os) argument
409 PrintTo(char* s, ::std::ostream* os) argument
410 PrintTo(ImplicitCast_<const char*>(s), os); local
415 PrintTo(const signed char* s, ::std::ostream* os) argument
416 PrintTo(ImplicitCast_<const void*>(s), os); local
418 PrintTo(signed char* s, ::std::ostream* os) argument
419 PrintTo(ImplicitCast_<const void*>(s), os); local
421 PrintTo(const unsigned char* s, ::std::ostream* os) argument
422 PrintTo(ImplicitCast_<const void*>(s), os); local
424 PrintTo(unsigned char* s, ::std::ostream* os) argument
425 PrintTo(ImplicitCast_<const void*>(s), os); local
436 PrintTo(wchar_t* s, ::std::ostream* os) argument
437 PrintTo(ImplicitCast_<const wchar_t*>(s), os); local
447 PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) argument
458 PrintTo(const ::string& s, ::std::ostream* os) argument
464 PrintTo(const ::std::string& s, ::std::ostream* os) argument
471 PrintTo(const ::wstring& s, ::std::ostream* os) argument
478 PrintTo(const ::std::wstring& s, ::std::ostream* os) argument
497 PrintTo(const ::std::tr1::tuple<& t, ::std::ostream* os) argument
502 PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) argument
507 PrintTo(const ::std::tr1::tuple<T1, T2>& t, ::std::ostream* os) argument
512 PrintTo(const ::std::tr1::tuple<T1, T2, T3>& t, ::std::ostream* os) argument
517 PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4>& t, ::std::ostream* os) argument
522 PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5>& t, ::std::ostream* os) argument
529 PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6>& t, ::std::ostream* os) argument
536 PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7>& t, ::std::ostream* os) argument
543 PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8>& t, ::std::ostream* os) argument
550 PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9>& t, ::std::ostream* os) argument
557 PrintTo( const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& t, ::std::ostream* os) argument
566 PrintTo(const ::std::pair<T1, T2>& value, ::std::ostream* os) argument
591 Print(const T& value, ::std::ostream* os) argument
611 UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) argument
659 Print(const T& value, ::std::ostream* os) argument
677 UniversalTersePrint(const T& value, ::std::ostream* os) argument
680 UniversalTersePrint(const char* str, ::std::ostream* os) argument
684 UniversalPrint(string(str), os); local
687 UniversalTersePrint(char* str, ::std::ostream* os) argument
688 UniversalTersePrint(static_cast<const char*>(str), os); local
696 UniversalPrint(const T& value, ::std::ostream* os) argument
715 PrintPrefixTo(const Tuple& t, ::std::ostream* os) argument
719 ::Print(::std::tr1::get<N - 1>(t), os); local
750 PrintPrefixTo(const Tuple& t, ::std::ostream* os) argument
752 Print(::std::tr1::get<0>(t), os); local
766 PrintTupleTo(const T& t, ::std::ostream* os) argument
[all...]
/external/chromium_org/third_party/sqlite/src/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock_test_utils.py36 import os namespace
41 SCRIPT_DIR = os.path.dirname(__file__) or '.'
44 gtest_tests_util_dir = os.path.join(SCRIPT_DIR, '../gtest/test')
45 if os.path.isdir(gtest_tests_util_dir):
48 GTEST_TESTS_UTIL_DIR = os.path.join(SCRIPT_DIR, '../../gtest/test')
80 exit_code: the result value of os.system(command).
83 if os.name == 'nt':
84 # On Windows, os.WEXITSTATUS() doesn't work and os.system() returns
88 # On Unix, os
[all...]
/external/chromium_org/build/
H A Ddir_exists.py7 import os.path namespace
11 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
H A Dchrome_test.py7 import common, commands, logging, os namespace
16 pwd = os.getcwd()
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
H A Dpage_cycler_dep.py10 import os namespace
19 pwd = os.getcwd()
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
H A Dperf_data_dep.py12 import os namespace
21 pwd = os.getcwd()
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/
H A Dpyauto_dep.py12 import os namespace
21 pwd = os.getcwd()
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
H A Dtelemetry_dep.py12 import os namespace
21 pwd = os.getcwd()
/external/chromium_org/tools/deep_memory_profiler/visualizer/
H A Dtemplate.py6 import os namespace
58 dmprof_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
59 html_dir = os.path.join(dmprof_path, 'graphs')
60 if not os.path.exists(html_dir):
61 os.mkdir(html_dir)
64 html_file = os.fdopen(html_handle, 'w')
/external/chromium_org/tools/gyp/test/msvs/external_builder/
H A Dmsbuild_rule.py5 import sys, os.path namespace
7 sys.argv[1] = os.path.basename(sys.argv[1])
/external/chromium_org/tools/gyp/test/ninja/chained-dependency/
H A Dgyptest-chained-dependency.py12 import os namespace
24 os.path.join('obj', 'chained.chained' + objext))
/external/chromium/sdch/open-vcdiff/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/chromium_org/third_party/libxslt/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/libffi/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/protobuf/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/protobuf/gtest/build-aux/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/stressapptest/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFilterOutputStreamTest.java30 private OutputStream os; field in class:FilterOutputStreamTest
45 os = new FilterOutputStream(bos);
46 os.write('t');
54 os = new FilterOutputStream(bos);
55 os.write(fileString.getBytes(), 0, 500);
56 os.flush();
58 os.close();
66 os = new FilterOutputStream(bos);
67 os.write(fileString.getBytes(), 0, 500);
68 os
[all...]
/external/chromium_org/tools/vim/
H A Dchromium.ycm_extra_conf.py40 import os namespace
54 return os.path.exists(os.path.join(*args))
68 curdir = os.path.normpath(os.path.dirname(filename))
72 nextdir = os.path.normpath(os.path.join(curdir, '..'))
76 return os.path.join(curdir, 'src')
84 root = os.path.join(chrome_root, 'out')
85 debug_path = os
[all...]
/external/chromium_org/tools/win/link_limiter/
H A Dbuild_link_limiter.py7 import os namespace
18 with os.fdopen(fd, 'w') as f:
30 os.unlink(filename)
42 if not os.path.exists(BUILD_DIR):
43 os.makedirs(BUILD_DIR)
45 outpath = os.path.join(BUILD_DIR, outfile)
46 cpptime = os.path.getmtime(infile)
47 if not os.path.exists(outpath) or cpptime > os.path.getmtime(outpath):
52 % (os
[all...]
/external/dropbear/
H A Dconfig.sub126 os=-$maybe_os
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=
162 os=-vxworks
166 os=-chorusos
170 os
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest_xml_outfiles_test.py36 import os namespace
68 # We want the trailing '/' that the last "" provides in os.path.join, for
71 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
81 except os.error:
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
85 except os.error:
88 os
[all...]
/external/chromium_org/build/android/tests/multiple_proguards/src/dummy/
H A DDummyActivity.java8 import android.os.Bundle;
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_outfiles_test.py36 import os namespace
68 # We want the trailing '/' that the last "" provides in os.path.join, for
71 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
81 except os.error:
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
85 except os.error:
88 os
[all...]

Completed in 605 milliseconds

1234567891011>>