HomeSort by relevance Sort by last modified time
    Searched full:testing (Results 551 - 575 of 7783) sorted by null

<<21222324252627282930>>

  /external/llvm/utils/unittest/googletest/include/gtest/
gtest_prod.h 32 // Google C++ Testing Framework definitions useful in production code.
47 // class MyClassTest : public testing::Test {
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
SocketPolicy.java 54 * Shutdown the socket input after sending the response. For testing bad
60 * Shutdown the socket output after sending the response. For testing bad
  /external/protobuf/gtest/include/gtest/
gtest_prod.h 32 // Google C++ Testing Framework definitions useful in production code.
47 // class MyClassTest : public testing::Test {
  /external/protobuf/gtest/test/
gtest-typed-test_test.h 39 using testing::Test;
41 // For testing that the same type-parameterized test case can be
gtest_uninitialized_test_.cc 36 // realistic stage for testing the behavior of Google Test when
37 // RUN_ALL_TESTS() is called without testing::InitGoogleTest() being
gtest_environment_test.cc 38 namespace testing { namespace
48 // For testing using global test environments.
49 class MyEnvironment : public testing::Environment {
132 testing::InitGoogleTest(&argc, argv);
137 Check(testing::AddGlobalTestEnvironment(env) == env,
175 testing::GTEST_FLAG(filter) = "-*";
  /external/webkit/LayoutTests/storage/domstorage/
remove-item-expected.txt 6 Testing sessionStorage
35 Testing localStorage
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
quota.js 11 debug("Testing " + storageString);
57 debug("Testing " + storageString);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-104584.js 25 * Testing that we don't crash on this code. The idea is to
31 var summary = "Testing that we don't crash on this code -";
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-69607.js 23 * SUMMARY: testing that we don't crash on trivial JavaScript
28 var summary = "Testing that we don't crash on trivial JavaScript";
  /external/webkit/Tools/DumpRenderTree/chromium/
DumpRenderTree.cpp 35 #include <v8/include/v8-testing.h>
107 v8::Testing::SetStressRunType(v8::Testing::kStressTypeOpt);
109 v8::Testing::SetStressRunType(v8::Testing::kStressTypeDeopt);
110 for (int i = 0; i < v8::Testing::GetStressRuns(); i++) {
111 v8::Testing::PrepareStressRun(i);
112 bool isLastLoad = (i == (v8::Testing::GetStressRuns() - 1));
  /frameworks/base/libs/utils/tests/
String8_test.cpp 25 class String8Test : public testing::Test {
61 // Testing String8 += String8
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
LayoutTestController.java 37 // Show/Hide window for window.onBlur() testing
47 // History testing functions
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
Log.java 54 /** for unit testing */
59 /** for unit testing */
  /libcore/support/src/test/java/tests/http/
SocketPolicy.java 54 * Shutdown the socket input after sending the response. For testing bad
60 * Shutdown the socket output after sending the response. For testing bad
  /packages/experimental/UiAutomation/service/
AndroidManifest.xml 16 package="com.android.testing.uiautomation"
26 <action android:name="com.android.testing.uiautomation" />
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 322 "take effect by automatic testing")
344 "take effect by automatic testing")
366 "take effect by automatic testing")
388 "take effect by automatic testing")
410 "take effect by automatic testing")
432 "take effect by automatic testing")
454 "take effect by automatic testing")
486 "take effect by automatic testing")
518 "take effect by automatic testing")
615 "take effect by automatic testing")
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CheckedInputStreamTest.java 60 // testing getChecksum for an empty file
71 // testing getChecksum for the file checkInput
81 // testing getChecksum for file checkInput
96 // testing that the return by skip is valid
112 // testing that the return by skip is valid
129 // testing that the return by skip is valid
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC2ParameterSpecTest.java 39 * RC2ParameterSpec(int effectiveKeyBits, byte[] iv) method testing.
71 * testing. Tests that IllegalArgumentException is thrown in the case of
102 * getEffectiveKeyBits() method testing. Tests that returned value is
116 * getIV() method testing. Tests that returned array is equal to the
141 * equals(Object obj) method testing. Tests the correctness of equal
182 * hashCode() method testing. Tests that for equal objects hash codes
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherOutputStreamTest.java 50 * CipherOutputStream(OutputStream os) method testing. Tests that
67 * write(int b) method testing. Tests that method writes correct values to
85 * write(byte[] b) method testing. Tests that method writes correct values
101 * write(byte[] b, int off, int len) method testing.
143 * flush() method testing. Tests that method flushes the data to the
159 * close() method testing. Tests that the method calls the close() method of
  /external/chromium/chrome/browser/
about_flags.h 20 // This is exposed only for testing.
24 // for testing).
25 // This is exposed only for testing.
106 // This is exposed only for testing.
113 namespace testing { namespace in namespace:about_flags
128 } // namespace testing
plugin_exceptions_table_model_unittest.cc 12 #include "testing/gmock/include/gmock/gmock.h"
13 #include "testing/gtest/include/gtest/gtest.h"
22 using ::testing::_;
23 using ::testing::Invoke;
53 using ::testing::InSequence;
55 class PluginExceptionsTableModelTest : public testing::Test {
  /external/chromium/chrome/browser/chromeos/login/
existing_user_controller_browsertest.cc 21 #include "testing/gmock/include/gmock/gmock.h"
22 #include "testing/gtest/include/gtest/gtest.h"
27 using ::testing::AnyNumber;
28 using ::testing::InvokeWithoutArgs;
29 using ::testing::Return;
30 using ::testing::ReturnNull;
  /external/chromium/testing/gtest/test/
gtest-test-part_test.cc 37 using testing::Message;
38 using testing::Test;
39 using testing::TestPartResult;
40 using testing::TestPartResultArray;
46 // The test fixture for testing TestPartResult.
61 message << static_cast<const char*>(testing::internal::kStackTraceMarker);
  /external/gtest/test/
gtest_environment_test.cc 38 namespace testing { namespace
48 // For testing using global test environments.
49 class MyEnvironment : public testing::Environment {
132 testing::InitGoogleTest(&argc, argv);
137 Check(testing::AddGlobalTestEnvironment(env) == env,
175 testing::GTEST_FLAG(filter) = "-*";

Completed in 1240 milliseconds

<<21222324252627282930>>