HomeSort by relevance Sort by last modified time
    Searched full:clog (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/stlport/stlport/using/h/
iostream.h 14 #if !defined(clog)
15 using _STLP_OLD_IO_NAMESPACE::clog;
  /ndk/sources/cxx-stl/stlport/stlport/using/h/
iostream.h 14 #if !defined(clog)
15 using _STLP_OLD_IO_NAMESPACE::clog;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/using/h/
iostream.h 14 #if !defined(clog)
15 using _STLP_OLD_IO_NAMESPACE::clog;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/using/h/
iostream.h 14 #if !defined(clog)
15 using _STLP_OLD_IO_NAMESPACE::clog;
  /external/iproute2/tc/
tc_red.c 77 int clog; local
82 for (clog=0; clog<32; clog++) {
83 if (maxtime/(1<<clog) < 512)
86 if (clog >= 32)
91 sbuf[i] = (i<<clog)*lW;
96 return clog;
  /external/stlport/stlport/using/
iostream 7 using _STLP_VENDOR_STD::clog;
  /ndk/sources/cxx-stl/stlport/stlport/using/
iostream 7 using _STLP_VENDOR_STD::clog;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/using/
iostream 7 using _STLP_VENDOR_STD::clog;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/using/
iostream 7 using _STLP_VENDOR_STD::clog;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 21 import com.android.tradefed.log.LogUtil.CLog;
66 CLog.d("Creating device temp directory, including dalvik-cache.");
70 CLog.d("Creating host temp dir %s", localTmpDir.getPath());
73 CLog.e("Missing jar file %s", jarFile.getPath());
76 CLog.d("Extracting jar file %s to host temp directory %s.",
81 CLog.d("Syncing host dir %s to device dir %s",
84 CLog.e("Failed to push vm test files");
87 CLog.d("Cleaning up host temp dir %s", localTmpDir.getPath());
90 CLog.e("Failed to extract jar file %s and sync it to device %s.",
105 CLog.d("Removing device's temp dir %s from previous runs.", VM_TEST_TEMP_DIR)
    [all...]
TestPackageDef.java 20 import com.android.tradefed.log.LogUtil.CLog;
217 CLog.d("Creating host test for %s", mName);
225 CLog.d("Creating vm host test for %s", mName);
236 CLog.d("Creating signature test %s", mName);
256 CLog.d("Creating instrumentation test for %s", mName);
365 CLog.e(e);
ResultFilter.java 20 import com.android.tradefed.log.LogUtil.CLog;
82 CLog.d("Skipping reporting unknown test %s", test);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestResultRepo.java 18 import com.android.tradefed.log.LogUtil.CLog;
75 CLog.e(e);
78 CLog.e(e);
104 CLog.e("Session id %d does not exist", sessionId);
114 CLog.e("Could not find result file for session %d", sessionId);
116 CLog.e("Failed to parse result file for session %d", sessionId);
  /external/stlport/stlport/
iostream 54 # define clog _STLP_clog
61 // program; the same applies to cout and wcout, and cerr/clog and
69 extern _STLP_DECLSPEC ofstream clog;
73 extern _STLP_DECLSPEC ostream clog;
  /ndk/sources/cxx-stl/stlport/stlport/
iostream 54 # define clog _STLP_clog
61 // program; the same applies to cout and wcout, and cerr/clog and
69 extern _STLP_DECLSPEC ofstream clog;
73 extern _STLP_DECLSPEC ostream clog;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/
iostream 54 # define clog _STLP_clog
61 // program; the same applies to cout and wcout, and cerr/clog and
69 extern _STLP_DECLSPEC ofstream clog;
73 extern _STLP_DECLSPEC ostream clog;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/
iostream 54 # define clog _STLP_clog
61 // program; the same applies to cout and wcout, and cerr/clog and
69 extern _STLP_DECLSPEC ofstream clog;
73 extern _STLP_DECLSPEC ostream clog;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
iostream 61 extern ostream clog; ///< Linked to standard error (buffered)
71 // For construction of filebuffers for cout, cin, cerr, clog et. al.
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
iostream 61 extern ostream clog; ///< Linked to standard error (buffered)
71 // For construction of filebuffers for cout, cin, cerr, clog et. al.
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
iostream 61 extern ostream clog; ///< Linked to standard error (buffered)
71 // For construction of filebuffers for cout, cin, cerr, clog et. al.
  /external/stlport/src/
iostream.cpp 40 # define clog _STLP_clog macro
73 _STLP_DECLSPEC ostream clog(0);
103 _STLP_DECLSPEC _Stl_aligned_buffer<ostream> clog;
108 _Stl_aligned_buffer<ostream> clog;
113 # pragma alias("?clog@std@@3V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@A", "?clog@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@@1@A")
227 /*ostream* ptr_clog = */ new(&clog) ostream(clog_buf.get()); clog_buf.release();
253 ostream* ptr_clog = &clog;
343 delete (&clog)->rdbuf(clog_buf.release());
  /ndk/sources/cxx-stl/stlport/src/
iostream.cpp 40 # define clog _STLP_clog macro
73 _STLP_DECLSPEC ostream clog(0);
103 _STLP_DECLSPEC _Stl_aligned_buffer<ostream> clog;
108 _Stl_aligned_buffer<ostream> clog;
113 # pragma alias("?clog@std@@3V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@A", "?clog@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@@1@A")
227 /*ostream* ptr_clog = */ new(&clog) ostream(clog_buf.get()); clog_buf.release();
253 ostream* ptr_clog = &clog;
343 delete (&clog)->rdbuf(clog_buf.release());
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsRootDeviceSetup.java 23 import com.android.tradefed.log.LogUtil.CLog;
61 CLog.i("Setting up %s to run CTS tests", device.getSerialNumber());
  /external/stlport/test/unit/
iostream_test.cpp 86 CPPUNIT_CHECK( clog.rdbuf()->in_avail() == -1 );
  /ndk/tests/device/test-gnustl-full/unit/
iostream_test.cpp 86 CPPUNIT_CHECK( clog.rdbuf()->in_avail() == -1 );

Completed in 1119 milliseconds

1 2 3 4