HomeSort by relevance Sort by last modified time
    Searched full:testing (Results 276 - 300 of 8489) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/cocoa/
html_dialog_window_controller_unittest.mm 21 #include "testing/gmock/include/gmock/gmock.h"
22 #include "testing/gtest/include/gtest/gtest.h"
61 using ::testing::_;
62 using ::testing::Return;
63 using ::testing::SetArgumentPointee;
  /external/protobuf/gtest/test/
gtest_color_test_.cc 32 // A helper program for testing how Google Test determines whether to use
40 namespace testing { namespace
44 } // namespace testing
46 using testing::internal::ShouldUseColor;
56 testing::InitGoogleTest(&argc, argv);
gtest_output_test_.cc 53 using testing::ScopedFakeTestPartResultReporter;
54 using testing::TestPartResultArray;
56 namespace posix = ::testing::internal::posix;
57 using testing::internal::String;
74 // The testing::Test:: prefix is necessary when calling
76 if (testing::Test::HasFatalFailure()) return;
105 // fixture, the testing::Test:: prefix is not needed.
134 // A helper function for testing SCOPED_TRACE.
140 // Another helper function for testing SCOPED_TRACE.
142 SCOPED_TRACE(testing::Message() << "n = " << n)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_OutputStream.java 44 throw new IOException("Exception thrown for testing purposes.");
52 throw new IOException("Exception thrown for testing purposes.");
60 throw new IOException("Exception thrown for testing purposes.");
70 throw new IOException("Exception thrown for testing purposes.");
83 throw new IOException("Exception thrown for testing purposes.");
  /cts/tests/src/android/renderscript/cts/
vector.rs 3 // Testing vector types
47 rsDebug("Testing F32", 0);
60 rsDebug("Testing F64", 0);
73 rsDebug("Testing I8", 0);
86 rsDebug("Testing U8", 0);
99 rsDebug("Testing I16", 0);
112 rsDebug("Testing U16", 0);
125 rsDebug("Testing I32", 0);
138 rsDebug("Testing U32", 0);
151 rsDebug("Testing I64", 0)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
EDIPartyNameTest.java 56 * EDIPartyName(String nameAssigner, String partyName) method testing.
134 * method testing.
148 * getNameAssigner() method testing.
154 * getPartyName() method testing.
160 * getEncoded() method testing.
166 * getEncoder() method testing.
172 * DerEncoder(String nameAssigner, String partyName) method testing.
178 * getDirStrAlternatives() method testing.
184 * DerDecoder() method testing.
190 * getValue(byte[] encoding) method testing
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_helper_browsertest.cc 27 #include "testing/gmock/include/gmock/gmock.h"
28 #include "testing/gtest/include/gtest/gtest.h"
30 using testing::_;
73 testing::InSequence expect_in_sequence;
76 testing::Eq(NotificationType::DOM_OPERATION_RESPONSE), _, _));
78 .WillOnce(testing::InvokeWithoutArgs(
131 testing::InSequence expect_in_sequence;
169 testing::InSequence expect_in_sequence;
189 testing::InSequence expect_in_sequence;
191 testing::Eq(NotificationType::DOM_OPERATION_RESPONSE), _, _))
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tts_apitest.cc 8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h"
13 #include "testing/gmock_mutant.h"
19 using ::testing::AnyNumber;
20 using ::testing::CreateFunctor;
21 using ::testing::DoAll;
22 using ::testing::InSequence;
23 using ::testing::InvokeWithoutArgs;
24 using ::testing::Return;
25 using ::testing::StrictMock
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 11 #include "testing/gmock/include/gmock/gmock.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 using ::testing::_;
15 using ::testing::Return;
16 using ::testing::DoDefault;
17 using ::testing::ReturnRef;
18 using ::testing::Pointee;
19 using ::testing::Ref;
20 using ::testing::Invoke;
84 class AutofillProfileModelAssociatorTest : public testing::Test
    [all...]
extension_data_type_controller_unittest.cc 5 #include "testing/gtest/include/gtest/gtest.h"
23 using testing::_;
24 using testing::DoAll;
25 using testing::InvokeWithoutArgs;
26 using testing::Return;
27 using testing::SetArgumentPointee;
35 class ExtensionDataTypeControllerTest : public testing::Test {
preference_data_type_controller_unittest.cc 5 #include "testing/gtest/include/gtest/gtest.h"
24 using testing::_;
25 using testing::DoAll;
26 using testing::InvokeWithoutArgs;
27 using testing::Return;
28 using testing::SetArgumentPointee;
36 class PreferenceDataTypeControllerTest : public testing::Test {
theme_data_type_controller_unittest.cc 5 #include "testing/gtest/include/gtest/gtest.h"
23 using testing::_;
24 using testing::DoAll;
25 using testing::InvokeWithoutArgs;
26 using testing::Return;
27 using testing::SetArgumentPointee;
35 class ThemeDataTypeControllerTest : public testing::Test {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionIteratorTester.java 17 package com.google.common.collect.testing.testers;
19 import static com.google.common.collect.testing.IteratorFeature.MODIFIABLE;
20 import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE;
21 import static com.google.common.collect.testing.features.CollectionFeature.KNOWN_ORDER;
22 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
24 import com.google.common.collect.testing.AbstractCollectionTester;
25 import com.google.common.collect.testing.Helpers;
26 import com.google.common.collect.testing.IteratorFeature;
27 import com.google.common.collect.testing.IteratorTester;
28 import com.google.common.collect.testing.features.CollectionFeature
    [all...]
CollectionRemoveAllTester.java 17 package com.google.common.collect.testing.testers;
19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
20 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
21 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE_ALL;
22 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
24 import com.google.common.collect.testing.AbstractCollectionTester;
25 import com.google.common.collect.testing.MinimalCollection;
26 import com.google.common.collect.testing.WrongType;
27 import com.google.common.collect.testing.features.CollectionFeature;
28 import com.google.common.collect.testing.features.CollectionSize
    [all...]
ListAddAllAtIndexTester.java 17 package com.google.common.collect.testing.testers;
19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
22 import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_ADD_ALL_WITH_INDEX;
23 import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_ADD_WITH_INDEX;
26 import com.google.common.collect.testing.MinimalCollection;
27 import com.google.common.collect.testing.features.CollectionFeature;
28 import com.google.common.collect.testing.features.CollectionSize;
29 import com.google.common.collect.testing.features.ListFeature
    [all...]
  /frameworks/base/docs/html/tools/testing/
activity_testing.jd 1 page.title=Activity Testing
2 parent.title=Testing
11 <a href="#ActivityTestAPI">The Activity Testing API</a>
23 <a href="#MockObjectNotes">Mock objects and activity testing</a>
26 <a href="#AssertionNotes">Assertions for activity testing</a>
37 <a href="#UITesting">Appendix: UI Testing Notes</a>
40 <a href="#RunOnUIThread">Testing on the UI thread</a>
63 <a href="{@docRoot}tools/testing/activity_test.html">Activity Testing Tutorial</a>
69 <a href="{@docRoot}tools/testing/testing_eclipse.html"
    [all...]
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
vector.rs 3 // Testing vector types
47 rsDebug("Testing F32", 0);
60 rsDebug("Testing F64", 0);
73 rsDebug("Testing I8", 0);
86 rsDebug("Testing U8", 0);
99 rsDebug("Testing I16", 0);
112 rsDebug("Testing U16", 0);
125 rsDebug("Testing I32", 0);
138 rsDebug("Testing U32", 0);
151 rsDebug("Testing I64", 0)
    [all...]
  /frameworks/base/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/
vector.rs 3 // Testing vector types
47 rsDebug("Testing F32", 0);
60 rsDebug("Testing F64", 0);
73 rsDebug("Testing I8", 0);
86 rsDebug("Testing U8", 0);
99 rsDebug("Testing I16", 0);
112 rsDebug("Testing U16", 0);
125 rsDebug("Testing I32", 0);
138 rsDebug("Testing U32", 0);
151 rsDebug("Testing I64", 0)
    [all...]
  /external/bluetooth/glib/tests/
list-test.c 39 PRINT_MSG (("testing g_list_sort()"));
65 PRINT_MSG (("testing g_list_sort_with_data()"));
91 PRINT_MSG (("testing g_list_insert_sorted()"));
116 PRINT_MSG (("testing g_list_insert_sorted_with_data()"));
146 PRINT_MSG (("testing g_list_reverse()"));
170 PRINT_MSG (("testing g_list_nth()"));
209 PRINT_MSG (("testing finished"));
slist-test.c 39 PRINT_MSG (("testing g_slist_sort()"));
63 PRINT_MSG (("testing g_slist_sort_with_data()"));
87 PRINT_MSG (("testing g_slist_insert_sorted()"));
110 PRINT_MSG (("testing g_slist_insert_sorted_with_data()"));
138 PRINT_MSG (("testing g_slist_reverse()"));
162 PRINT_MSG (("testing g_slist_nth()"));
201 PRINT_MSG (("testing finished"));
  /external/chromium/base/
sys_info_unittest.cc 7 #include "testing/gtest/include/gtest/gtest.h"
8 #include "testing/platform_test.h"
13 // We aren't actually testing that it's correct, just that it's sane.
18 // We aren't actually testing that it's correct, just that it's sane.
24 // We aren't actually testing that it's correct, just that it's sane.
46 // We aren't actually testing that it's correct, just that it's sane.
54 // We aren't actually testing that it's correct, just that it's sane.
  /external/chromium/chrome/browser/chromeos/
update_browsertest.cc 16 using ::testing::AnyNumber;
17 using ::testing::InvokeWithoutArgs;
18 using ::testing::Return;
19 using ::testing::ReturnRef;
20 using ::testing::_;
21 using ::testing::Invoke;
22 using ::testing::Exactly;
  /external/chromium/chrome/browser/policy/
device_token_fetcher_unittest.cc 20 #include "testing/gmock/include/gmock/gmock.h"
21 #include "testing/gtest/include/gtest/gtest.h"
27 using testing::_;
28 using testing::Mock;
41 class DeviceTokenFetcherTest : public testing::Test {
72 testing::InSequence s;
104 testing::InSequence s;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
RegExp_object.js 43 // testing SSN pattern
47 // testing SSN pattern
52 // testing PHONE pattern
56 // testing PHONE pattern
60 // testing PHONE pattern
64 // testing conversion to String
68 // testing conversion to int
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
X509CertificateTest.java 48 // Testing data was generated by using of classes
96 * getInstance(InputStream inStream) method testing.
130 * getInstance(byte[] certData) method testing.
158 * checkValidity() method testing.
185 * checkValidity(Date date) method testing.
219 * getVersion() method testing.
232 * getSerialNumber() method testing.
245 * getIssuerDN() method testing.
258 * getSubjectDN() method testing.
271 * getNotBefore() method testing
    [all...]

Completed in 416 milliseconds

<<11121314151617181920>>