HomeSort by relevance Sort by last modified time
    Searched refs:testing (Results 226 - 250 of 5870) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gradle-plugin/com/android/tools/build/builder-test-api/0.8.0/
builder-test-api-0.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder-test-api/0.8.1/
builder-test-api-0.8.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder-test-api/0.8.3/
builder-test-api-0.8.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder-test-api/0.9.0/
builder-test-api-0.9.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder-test-api/0.9.1/
builder-test-api-0.9.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder-test-api/0.9.3/
builder-test-api-0.9.3.jar 
  /external/libbrillo/brillo/message_loops/
mock_message_loop.h 35 ON_CALL(*this, PostDelayedTask(::testing::_, ::testing::_, ::testing::_))
36 .WillByDefault(::testing::Invoke(
44 ::testing::_, ::testing::_, ::testing::_, ::testing::_, ::testing::_))
45 .WillByDefault(::testing::Invoke
    [all...]
  /system/update_engine/common/
mock_hardware.h 34 .WillByDefault(testing::Invoke(&fake_,
37 .WillByDefault(testing::Invoke(&fake_,
40 .WillByDefault(testing::Invoke(&fake_,
43 .WillByDefault(testing::Invoke(&fake_,
45 ON_CALL(*this, IsOOBEComplete(testing::_))
46 .WillByDefault(testing::Invoke(&fake_,
49 .WillByDefault(testing::Invoke(&fake_,
52 .WillByDefault(testing::Invoke(&fake_,
55 .WillByDefault(testing::Invoke(&fake_,
58 .WillByDefault(testing::Invoke(&fake_
    [all...]
  /hardware/interfaces/audio/common/test/utility/include/utility/
AssertOk.h 39 inline ::testing::AssertionResult assertIsOk(const char* expr, const Return<T>& ret) {
40 return ::testing::AssertionResult(ret.isOk())
46 inline ::testing::AssertionResult continueIfIsOk(const char* expr, const Return<T>& ret,
53 inline ::testing::AssertionResult assertResult(const char* e_expr, const char* r_expr,
55 return ::testing::AssertionResult(expected == result)
56 << "Value of: " << r_expr << "\n Actual: " << ::testing::PrintToString(result)
57 << "\nExpected: " << e_expr << "\nWhich is: " << ::testing::PrintToString(expected);
61 inline ::testing::AssertionResult assertResult(const char* e_expr, const char* r_expr,
68 inline ::testing::AssertionResult assertResult(const char* e_expr, const char* r_expr,
71 return ::testing::AssertionSuccess(); // result is in expecte
    [all...]
  /external/guava/guava-gwt/test/com/google/common/collect/testing/
IteratorTesterTest_gwt.java 16 package com.google.common.collect.testing;
19 return "com.google.common.collect.testing.testModule";
22 com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.testing.IteratorTesterTest();
27 com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.testing.IteratorTesterTest();
32 com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.testing.IteratorTesterTest();
37 com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.testing.IteratorTesterTest()
    [all...]
  /external/webrtc/webrtc/common_audio/resampler/
push_sinc_resampler_unittest.cc 14 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h"
37 class PushSincResamplerTest : public ::testing::TestWithParam<
38 ::testing::tuple<int, int, double, double>> {
41 : input_rate_(::testing::get<0>(GetParam())),
42 output_rate_(::testing::get<1>(GetParam())),
43 rms_error_(::testing::get<2>(GetParam())),
44 low_freq_error_(::testing::get<3>(GetParam())) {
257 // testing. All thresholds are in dbFS, http://en.wikipedia.org/wiki/DBFS.
261 ::testing::Values
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/test/
divconst_test.go 8 "testing"
13 func BenchmarkDivconstI64(b *testing.B) {
21 func BenchmarkDivconstU64(b *testing.B) {
29 func BenchmarkDivconstI32(b *testing.B) {
37 func BenchmarkDivconstU32(b *testing.B) {
45 func BenchmarkDivconstI16(b *testing.B) {
53 func BenchmarkDivconstU16(b *testing.B) {
61 func BenchmarkDivconstI8(b *testing.B) {
69 func BenchmarkDivconstU8(b *testing.B) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/test/
divconst_test.go 8 "testing"
13 func BenchmarkDivconstI64(b *testing.B) {
21 func BenchmarkDivconstU64(b *testing.B) {
29 func BenchmarkDivconstI32(b *testing.B) {
37 func BenchmarkDivconstU32(b *testing.B) {
45 func BenchmarkDivconstI16(b *testing.B) {
53 func BenchmarkDivconstU16(b *testing.B) {
61 func BenchmarkDivconstI8(b *testing.B) {
69 func BenchmarkDivconstU8(b *testing.B) {
  /device/google/wahoo/wifi_offload/test/
chre_interface_test.cpp 39 class ChreInterfaceTest : public ::testing::Test {
48 std::unique_ptr<testing::NiceMock<MockChreInterfaceCallbacks>> chre_interface_callback_{
49 new testing::NiceMock<MockChreInterfaceCallbacks>()};
54 EXPECT_CALL(*chre_interface_callback_, handleConnectionEvents(testing::_));
60 EXPECT_CALL(*chre_interface_callback_, handleMessage(testing::_, testing::_));
63 ON_CALL(*chre_interface_callback_, handleMessage(testing::_, testing::_))
65 DoAll(testing::SaveArg<0>(&messageType), testing::SaveArg<1>(&buffer_recvd)))
    [all...]
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
OpenJdk6ListTests.java 17 package com.google.common.collect.testing;
19 import static com.google.common.collect.testing.testers.CollectionToArrayTester.getToArrayIsPlainObjectArrayMethod;
20 import static com.google.common.collect.testing.testers.ListAddTester.getAddSupportedNullPresentMethod;
21 import static com.google.common.collect.testing.testers.ListListIteratorTester.getListIteratorFullyModifiableMethod;
22 import static com.google.common.collect.testing.testers.ListSetTester.getSetNullSupportedMethod;
23 import static com.google.common.collect.testing.testers.ListSubListTester.getSubListOriginalListSetAffectsSubListLargeListMethod;
24 import static com.google.common.collect.testing.testers.ListSubListTester.getSubListOriginalListSetAffectsSubListMethod;
25 import static com.google.common.collect.testing.testers.ListSubListTester.getSubListSubListRemoveAffectsOriginalLargeListMethod;
27 import com.google.common.collect.testing.testers.CollectionAddTester;
28 import com.google.common.collect.testing.testers.ListAddAtIndexTester
    [all...]
OpenJdk6MapTests.java 17 package com.google.common.collect.testing;
19 import static com.google.common.collect.testing.testers.CollectionAddAllTester.getAddAllUnsupportedNonePresentMethod;
20 import static com.google.common.collect.testing.testers.CollectionAddAllTester.getAddAllUnsupportedSomePresentMethod;
21 import static com.google.common.collect.testing.testers.CollectionAddTester.getAddUnsupportedNotPresentMethod;
22 import static com.google.common.collect.testing.testers.CollectionCreationTester.getCreateWithNullUnsupportedMethod;
23 import static com.google.common.collect.testing.testers.MapCreationTester.getCreateWithNullKeyUnsupportedMethod;
24 import static com.google.common.collect.testing.testers.MapEntrySetTester.getContainsEntryWithIncomparableKeyMethod;
25 import static com.google.common.collect.testing.testers.MapEntrySetTester.getContainsEntryWithIncomparableValueMethod;
26 import static com.google.common.collect.testing.testers.MapPutAllTester.getPutAllNullKeyUnsupportedMethod;
27 import static com.google.common.collect.testing.testers.MapPutTester.getPutNullKeyUnsupportedMethod
    [all...]
  /external/selinux/libsepol/cil/test/integration_testing/
nonmls.conf 2 class testing
12 class testing
56 allow typea_t typeb_t : testing write;
57 allow typea_t typeb_t : testing {open close};
58 type_transition typea_t typeb_t : testing typec_t;
  /external/toybox/tests/
tar.test 6 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
13 testing "tgz - compession, extraction and data validation" "tar -czf dir.tgz dir/ && [ -e dir.tgz ] && echo 'yes'; rm -rf dir; tar -xf dir.tgz && [ -f dir/dir1/file ] && cat dir/dir1/file; rm -rf dir.tgz" "yes\nThis is testdata\n" "" ""
18 testing "tar.gz - compession, extraction and data validation" "tar -czf dir.tar.gz dir/ && [ -e dir.tar.gz ] && echo 'yes'; rm -rf dir; tar -xf dir.tar.gz && [ -f dir/dir1/file ] && cat dir/dir1/file; rm -rf dir.tar.gz" "yes\nThis is testdata\n" "" ""
23 testing "verbose compression" "tar -cvzf dir.tgz dir/; rm -rf dir.tgz" "dir/\ndir/dir1/\ndir/dir1/file\n" "" ""
28 testing "- compession and extraction of a file" "tar -czf testFile.tgz testFile && [ -e testFile.tgz ] && echo 'yes'; rm -rf testFile; tar -xf testFile.tgz && [ -f testFile ] && echo 'yes'; rm -rf testFile.tgz" "yes\nyes\n" "" ""
32 testing "- compession and extraction of a empty file" "tar -czf testFile.tgz testFile && [ -e testFile.tgz ] && echo 'yes'; rm -rf testFile; tar -xf testFile.tgz && [ -f testFile ] && echo 'yes'; rm -rf testFile.tgz" "yes\nyes\n" "" ""
37 testing "-t option" "tar -czf dir.tar.gz dir/; rm -rf dir; tar -tf dir.tar.gz | sort; rm -rf dir.tar.gz" "dir/\ndir/dir1/\ndir/dir1/file1\ndir/dir1/file2\ndir/dir1/file3\ndir/dir1/file4\n" "" ""
45 testing "create with files excluded : -X" "tar -czf dir.tgz dir/ -X exclude_file ; rm -rf dir ; tar -tf di (…)
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
cgo_linux_test.go 7 import "testing"
9 func TestSetgid(t *testing.T) { testSetgid(t) }
10 func Test6997(t *testing.T) { test6997(t) }
11 func TestBuildID(t *testing.T) { testBuildID(t) }
12 func Test9400(t *testing.T) { test9400(t) }
cgo_stubs_android_test.go 7 import "testing"
10 func test6997(t *testing.T) {}
11 func test3775(t *testing.T) {}
12 func test8694(t *testing.T) {}
13 func testSigaltstack(t *testing.T) {}
  /prebuilts/go/darwin-x86/src/math/big/
gcd_test.go 12 "testing"
22 func runGCD(b *testing.B, aSize, bSize uint) {
26 b.Run("WithoutXY", func(b *testing.B) {
29 b.Run("WithXY", func(b *testing.B) {
34 func runGCDExt(b *testing.B, aSize, bSize uint, calcXY bool) {
50 func BenchmarkGCD10x10(b *testing.B) { runGCD(b, 10, 10) }
51 func BenchmarkGCD10x100(b *testing.B) { runGCD(b, 10, 100) }
52 func BenchmarkGCD10x1000(b *testing.B) { runGCD(b, 10, 1000) }
53 func BenchmarkGCD10x10000(b *testing.B) { runGCD(b, 10, 10000) }
54 func BenchmarkGCD10x100000(b *testing.B) { runGCD(b, 10, 100000)
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/test/
cgo_linux_test.go 7 import "testing"
9 func TestSetgid(t *testing.T) { testSetgid(t) }
10 func Test6997(t *testing.T) { test6997(t) }
11 func TestBuildID(t *testing.T) { testBuildID(t) }
12 func Test9400(t *testing.T) { test9400(t) }
cgo_stubs_android_test.go 7 import "testing"
10 func test6997(t *testing.T) {}
11 func test3775(t *testing.T) {}
12 func test8694(t *testing.T) {}
13 func testSigaltstack(t *testing.T) {}
  /prebuilts/go/linux-x86/src/math/big/
gcd_test.go 12 "testing"
22 func runGCD(b *testing.B, aSize, bSize uint) {
26 b.Run("WithoutXY", func(b *testing.B) {
29 b.Run("WithXY", func(b *testing.B) {
34 func runGCDExt(b *testing.B, aSize, bSize uint, calcXY bool) {
50 func BenchmarkGCD10x10(b *testing.B) { runGCD(b, 10, 10) }
51 func BenchmarkGCD10x100(b *testing.B) { runGCD(b, 10, 100) }
52 func BenchmarkGCD10x1000(b *testing.B) { runGCD(b, 10, 1000) }
53 func BenchmarkGCD10x10000(b *testing.B) { runGCD(b, 10, 10000) }
54 func BenchmarkGCD10x100000(b *testing.B) { runGCD(b, 10, 100000)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
vlop_arm_test.go 9 "testing"
39 func bmUint32Div(divisor uint32, b *testing.B) {
46 func BenchmarkUint32Div7(b *testing.B) { bmUint32Div(7, b) }
47 func BenchmarkUint32Div37(b *testing.B) { bmUint32Div(37, b) }
48 func BenchmarkUint32Div123(b *testing.B) { bmUint32Div(123, b) }
49 func BenchmarkUint32Div763(b *testing.B) { bmUint32Div(763, b) }
50 func BenchmarkUint32Div1247(b *testing.B) { bmUint32Div(1247, b) }
51 func BenchmarkUint32Div9305(b *testing.B) { bmUint32Div(9305, b) }
52 func BenchmarkUint32Div13307(b *testing.B) { bmUint32Div(13307, b) }
53 func BenchmarkUint32Div52513(b *testing.B) { bmUint32Div(52513, b)
    [all...]

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>