HomeSort by relevance Sort by last modified time
    Searched defs:tester (Results 26 - 50 of 135) sorted by null

12 3 4 5 6

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ntpath.py 8 def tester(fn, wantResult): function
18 tester('ntpath.splitext("foo.ext")', ('foo', '.ext'))
19 tester('ntpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
20 tester('ntpath.splitext(".ext")', ('.ext', ''))
21 tester('ntpath.splitext("\\foo.ext\\foo")', ('\\foo.ext\\foo', ''))
22 tester('ntpath.splitext("foo.ext\\")', ('foo.ext\\', ''))
23 tester('ntpath.splitext("")', ('', ''))
24 tester('ntpath.splitext("foo.bar.ext")', ('foo.bar', '.ext'))
25 tester('ntpath.splitext("xx/foo.bar.ext")', ('xx/foo.bar', '.ext'))
26 tester('ntpath.splitext("xx\\foo.bar.ext")', ('xx\\foo.bar', '.ext')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ntpath.py 8 def tester(fn, wantResult): function
18 tester('ntpath.splitext("foo.ext")', ('foo', '.ext'))
19 tester('ntpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
20 tester('ntpath.splitext(".ext")', ('.ext', ''))
21 tester('ntpath.splitext("\\foo.ext\\foo")', ('\\foo.ext\\foo', ''))
22 tester('ntpath.splitext("foo.ext\\")', ('foo.ext\\', ''))
23 tester('ntpath.splitext("")', ('', ''))
24 tester('ntpath.splitext("foo.bar.ext")', ('foo.bar', '.ext'))
25 tester('ntpath.splitext("xx/foo.bar.ext")', ('xx/foo.bar', '.ext'))
26 tester('ntpath.splitext("xx\\foo.bar.ext")', ('xx\\foo.bar', '.ext')
    [all...]
  /prebuilts/go/darwin-x86/src/log/
log_test.go 28 type tester struct { type
34 var tests = []tester{
  /prebuilts/go/linux-x86/src/log/
log_test.go 28 type tester struct { type
34 var tests = []tester{
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ntpath.py 8 def tester(fn, wantResult): function
18 tester('ntpath.splitext("foo.ext")', ('foo', '.ext'))
19 tester('ntpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
20 tester('ntpath.splitext(".ext")', ('.ext', ''))
21 tester('ntpath.splitext("\\foo.ext\\foo")', ('\\foo.ext\\foo', ''))
22 tester('ntpath.splitext("foo.ext\\")', ('foo.ext\\', ''))
23 tester('ntpath.splitext("")', ('', ''))
24 tester('ntpath.splitext("foo.bar.ext")', ('foo.bar', '.ext'))
25 tester('ntpath.splitext("xx/foo.bar.ext")', ('xx/foo.bar', '.ext'))
26 tester('ntpath.splitext("xx\\foo.bar.ext")', ('xx\\foo.bar', '.ext')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ntpath.py 8 def tester(fn, wantResult): function
18 tester('ntpath.splitext("foo.ext")', ('foo', '.ext'))
19 tester('ntpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
20 tester('ntpath.splitext(".ext")', ('.ext', ''))
21 tester('ntpath.splitext("\\foo.ext\\foo")', ('\\foo.ext\\foo', ''))
22 tester('ntpath.splitext("foo.ext\\")', ('foo.ext\\', ''))
23 tester('ntpath.splitext("")', ('', ''))
24 tester('ntpath.splitext("foo.bar.ext")', ('foo.bar', '.ext'))
25 tester('ntpath.splitext("xx/foo.bar.ext")', ('xx/foo.bar', '.ext'))
26 tester('ntpath.splitext("xx\\foo.bar.ext")', ('xx\\foo.bar', '.ext')
    [all...]
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
IteratorTesterTest.java 44 IteratorTester<Integer> tester = local
51 assertFailure(tester);
55 IteratorTester<Integer> tester = local
62 assertFailure(tester);
66 IteratorTester<Integer> tester = local
73 assertFailure(tester);
86 IteratorTester<Integer> tester = local
93 assertFailure(tester);
158 IteratorTester<Integer> tester = local
171 tester.ignoreSunJavaBug6529795()
195 TesterThatCountsCalls tester = new TesterThatCountsCalls(); local
206 IteratorTester<Integer> tester = local
231 IteratorTester<Integer> tester = local
256 IteratorTester<Integer> tester = local
268 IteratorTester<Integer> tester = local
293 IteratorTester<Integer> tester = local
    [all...]
  /external/guava/guava-testlib/test/com/google/common/testing/
EqualsTesterTest.java 206 EqualsTester tester = new EqualsTester(); local
208 tester.addEqualityGroup((Object[]) null);
214 EqualsTester tester = new EqualsTester(); local
216 tester.addEqualityGroup(1, null, 3);
224 EqualsTester tester = new EqualsTester() local
227 tester.testEquals();
238 EqualsTester tester = new EqualsTester() local
244 tester.testEquals();
255 EqualsTester tester = new EqualsTester() local
258 tester.testEquals()
269 EqualsTester tester = new EqualsTester() local
    [all...]
  /external/guava/guava-testlib/test/com/google/common/testing/anotherpackage/
ForwardingWrapperTesterTest.java 47 private final ForwardingWrapperTester tester = new ForwardingWrapperTester(); field in class:ForwardingWrapperTesterTest
50 tester.testForwarding(Arithmetic.class,
56 tester.testForwarding(ParameterTypesDifferent.class,
65 tester.testForwarding(Runnable.class,
74 tester.testForwarding(Runnable.class,
99 tester.includingEquals();
116 tester.includingEquals();
117 tester.testForwarding(Runnable.class, new Function<Runnable, Runnable>() {
136 tester.includingEquals();
222 tester.testForwarding(interfaceType, wrapperFunction)
    [all...]
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
ResultReporterBuildInfoTest.java 32 ResultReporterBuildInfoTester tester = new ResultReporterBuildInfoTester(); local
43 IInvocationResult result = tester.testBuildInfoOverride(fingerprint, manufacture, model);
  /external/deqp/modules/gles31/functional/
es31fSamplerStateQueryTests.cpp 61 static bool isIsVectorQuery (TesterType tester)
63 return tester == TESTER_TEXTURE_BORDER_COLOR;
66 static bool isExtendedParamQuery (TesterType tester)
68 return tester == TESTER_TEXTURE_WRAP_S_CLAMP_TO_BORDER ||
69 tester == TESTER_TEXTURE_WRAP_T_CLAMP_TO_BORDER ||
70 tester == TESTER_TEXTURE_WRAP_R_CLAMP_TO_BORDER;
114 TesterType tester; member in struct:deqp::gles31::Functional::__anon17562
176 if (isExtendedParamQuery(states[stateNdx].tester))
184 states[stateNdx].tester));
186 else if (isIsVectorQuery(states[stateNdx].tester))
218 const TesterType tester = (pureSetters[setterNdx].verifier == QUERY_SAMPLER_PARAM_PURE_INTEGER) ? (pureStates[stateNdx].intTester) local
    [all...]
es31fTextureStateQueryTests.cpp 61 static bool isIsVectorQuery (TesterType tester)
63 return tester == TESTER_TEXTURE_BORDER_COLOR;
66 static bool isExtendedParamQuery (TesterType tester)
68 return tester == TESTER_TEXTURE_WRAP_S_CLAMP_TO_BORDER ||
69 tester == TESTER_TEXTURE_WRAP_T_CLAMP_TO_BORDER ||
70 tester == TESTER_TEXTURE_WRAP_R_CLAMP_TO_BORDER;
132 TesterType tester; member in struct:deqp::gles31::Functional::__anon17632
217 if (!isLegalTesterForTarget(textureTargets[targetNdx].target, states[stateNdx].tester))
224 if (isExtendedParamQuery(states[stateNdx].tester))
233 states[stateNdx].tester));
269 const TesterType tester = (pureSetters[setterNdx].verifier == QUERY_TEXTURE_PARAM_PURE_INTEGER) ? (pureStates[stateNdx].intTester) local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 83 NullPointerTester tester = new NullPointerTester(); local
84 tester.testAllPublicStaticMethods(Objects.class);
  /external/guava/guava-tests/test/com/google/common/net/
HostSpecifierTest.java 91 final NullPointerTester tester = new NullPointerTester(); local
93 tester.testAllPublicStaticMethods(HostSpecifier.class);
94 tester.testAllPublicInstanceMethods(HostSpecifier.fromValid("google.com"));
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicsTest.java 86 NullPointerTester tester = new NullPointerTester(); local
87 tester.testAllPublicConstructors(Atomics.class); // there aren't any
88 tester.testAllPublicStaticMethods(Atomics.class);
  /external/python/cpython2/Lib/test/
test_ntpath.py 15 def tester(fn, wantResult): function
22 tester('ntpath.splitext("foo.ext")', ('foo', '.ext'))
23 tester('ntpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
24 tester('ntpath.splitext(".ext")', ('.ext', ''))
25 tester('ntpath.splitext("\\foo.ext\\foo")', ('\\foo.ext\\foo', ''))
26 tester('ntpath.splitext("foo.ext\\")', ('foo.ext\\', ''))
27 tester('ntpath.splitext("")', ('', ''))
28 tester('ntpath.splitext("foo.bar.ext")', ('foo.bar', '.ext'))
29 tester('ntpath.splitext("xx/foo.bar.ext")', ('xx/foo.bar', '.ext'))
30 tester('ntpath.splitext("xx\\foo.bar.ext")', ('xx\\foo.bar', '.ext')
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
SimpleTestCursor.java 1 package com.xtremelabs.robolectric.tester.android.database;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
HttpEntityStub.java 1 package com.xtremelabs.robolectric.tester.org.apache.http;
ParamsParser.java 1 package com.xtremelabs.robolectric.tester.org.apache.http;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/android/view/
TestMenuTest.java 1 package com.xtremelabs.robolectric.tester.android.view;
12 import com.xtremelabs.robolectric.tester.android.view.TestMenuItem;
  /frameworks/av/media/libaaudio/tests/
test_block_adapter.cpp 123 TestBlockWriter tester; local
132 result = tester.testInputWrite(size);
138 TestBlockReader tester; local
147 result = tester.testOutputRead(size);
  /frameworks/base/core/tests/coretests/src/android/os/
BroadcasterTest.java 37 HandlerTester tester = new HandlerTester() { local
60 tester.doTest(1000);
114 HandlerTester tester = new Tests2and3(2); local
115 tester.doTest(1000);
123 HandlerTester tester = new Tests2and3(10); local
124 tester.doTest(1000);
133 HandlerTester tester = new HandlerTester() { local
159 tester.doTest(1000);
168 HandlerTester tester = new HandlerTester() { local
194 tester.doTest(1000)
203 HandlerTester tester = new HandlerTester() { local
    [all...]
  /packages/apps/Settings/tests/anomaly-tester/src/com/android/settings/anomaly/tester/utils/
AnomalyPolicyBuilder.java 17 package com.android.settings.anomaly.tester.utils;
  /cts/tests/sensor/src/android/hardware/cts/
SensorIntegrationTests.java 235 TestSensorOperation tester = local
237 tester.addVerification(new EventOrderingVerification());
249 operation.add(tester, testee);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilder.java 276 AbstractTester<?> tester = (AbstractTester<?>) test; local
277 return Helpers.getMethod(tester.getClass(), tester.getTestMethodName());
297 AbstractTester<? super G> tester = (AbstractTester<? super G>) test; local
298 tester.init(subjectGenerator, name, setUp, tearDown);

Completed in 798 milliseconds

12 3 4 5 6