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

1 2 3 4 5

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AssetManagerTest.java 43 String testPath;
45 testPath = "";
46 files = Arrays.asList(assetManager.list(testPath));
50 testPath = "docs";
51 files = Arrays.asList(assetManager.list(testPath));
54 testPath = "docs" + sp + "extra";
55 files = Arrays.asList(assetManager.list(testPath));
58 testPath = "docs" + sp + "extra" + sp + "testing";
59 files = Arrays.asList(assetManager.list(testPath));
62 testPath = "assetsHome.txt"
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/static/
testselection.html 27 * @param {string} testPath Test path.
30 var testFromTestPath_ = function(testPath) {
31 return testPath.split('/').slice(2).join('/');
80 * @param {string} testPath Test path.
84 testPath, selectedTraces) {
85 if (!(testPath in this.testPathDict_)) {
86 this.testPathDict_[testPath] = [];
90 if (this.testPathDict_[testPath].indexOf(selectedTraces[i]) == -1) {
91 this.testPathDict_[testPath].push(selectedTraces[i]);
124 for (var testPath in this.testPathDict_)
    [all...]
  /platform_testing/tests/functional/otatests/src/com/android/functional/otatests/
SystemUpdateTest.java 26 public SystemUpdateTest(String testPath) {
27 super(testPath);
VersionCheckingTest.java 49 public VersionCheckingTest(String testPath) {
50 mTestPath = testPath;
  /art/test/510-checker-try-catch/src/
Main.java 24 public enum TestPath {
29 TestPath(boolean arg1, boolean arg2, int expected) {
44 for (TestPath path : TestPath.values()) {
  /cts/tests/app/app/res/xml/
intentfilter.xml 25 <path name="testPath" literal="test"/>
26 <path name="testPath" prefix="test"/>
27 <path name="testPath" sglob="test"/>
  /cts/tests/tests/content/res/xml/
intentfilter.xml 25 <path name="testPath" literal="test"/>
26 <path name="testPath" prefix="test"/>
27 <path name="testPath" sglob="test"/>
  /external/llvm/utils/lit/lit/formats/
googletest.py 72 testPath = path_in_suite + (basename, testname)
73 yield lit.Test.Test(testSuite, testPath, localConfig, file_path=execpath)
98 testPath,testName = os.path.split(test.getSourcePath())
99 while not os.path.exists(testPath):
102 testPath, namePrefix = os.path.split(testPath)
105 cmd = [testPath, '--gtest_filter=' + testName]
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 101 for testPath in glob.glob(os.path.join(testDir, 'test*.py')):
102 testFiles.append(testPath)
105 for testPath in testFiles:
106 testID = os.path.basename(testPath)[:-3]
125 (os.path.basename(testPath), buf.getvalue())
226 for testPath in glob.glob(os.path.join(testDir, test_glob)):
227 if testPath.endswith('Lexer.py') or testPath.endswith('Parser.py'):
233 and not os.path.basename(testPath)[:-3].startswith(self.testcase)):
236 testFiles.append(testPath)
    [all...]
  /external/llvm/unittests/Support/
MemoryBufferTest.cpp 71 SmallString<64> TestPath;
73 TestFD, TestPath);
80 ErrorOr<OwningBuffer> MB = MemoryBuffer::getFile(TestPath.c_str());
133 SmallString<64> TestPath;
135 sys::fs::createTemporaryFile("prefix", "temp", TestFD, TestPath);
146 EXPECT_FALSE(sys::fs::openFileForRead(TestPath.c_str(), TestFD));
150 MemoryBuffer::getOpenFileSlice(TestFD, TestPath.c_str(),
183 SmallString<64> TestPath;
184 sys::fs::createTemporaryFile("MemoryBufferTest_Slice", "temp", FD, TestPath);
198 ErrorOr<OwningBuffer> MB = MemoryBuffer::getFileSlice(TestPath.str()
    [all...]
  /external/skia/tests/
SubsetPath.h 25 SubsetContours subsetContours(testPath);
30 SubsetVerbs subsetVerbs(testPath);
  /external/chromium-trace/catapult/dashboard/dashboard/
debug_alert_test.py 50 test_path = utils.TestPath(test_key)
57 test_path = utils.TestPath(test_key)
69 test_path = utils.TestPath(test_key)
79 test_path = utils.TestPath(test_key)
92 patterns=[utils.TestPath(test_key)]).put()
102 '/debug_alert?test_path=%s' % utils.TestPath(test_key))
113 (utils.TestPath(test_key),
125 (utils.TestPath(test_key), '{"foo":0.75}'))
133 (utils.TestPath(test_key), 'not valid json'))
145 '/debug_alert?test_path=%s' % utils.TestPath(test_key)
    [all...]
change_internal_only_test.py 90 test_path = utils.TestPath(row.key.parent())
100 test_path = utils.TestPath(a.test)
  /external/libedit/
acinclude.m4 22 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
23 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
  /external/chromium-trace/catapult/dashboard/docs/
code-snippets.md 29 parts = utils.TestPath(a.test).split('/', 3)[1:]
72 print utils.TestPath(key)
87 print utils.TestPath(key)
114 to_delete.append(ndb.Key('LastAddedRevision', utils.TestPath(test_key)))
  /external/google-benchmark/
appveyor.yml 85 $testpath = $test.Path
89 Add-AppveyorTest $testName -Outcome Failed -FileName $testpath -Duration $time -ErrorMessage $($test.results.measurement.value)
94 Add-AppveyorTest $testName -Outcome Ignored -Filename $testpath
98 Add-AppveyorTest $testName -Outcome Passed -FileName $testpath -Duration $time -StdOut $($test.results.measurement.value)
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter_test.go 53 func testPath(t *testing.T, path string) *types.Package {
57 t.Errorf("testPath(%s): %s", path, err)
60 t.Logf("testPath(%s): %v", path, time.Since(t0))
83 if testPath(t, filepath.Join(dir, name)) != nil {
107 if pkg := testPath(t, "./testdata/exports"); pkg != nil {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter_test.go 53 func testPath(t *testing.T, path string) *types.Package {
57 t.Errorf("testPath(%s): %s", path, err)
60 t.Logf("testPath(%s): %v", path, time.Since(t0))
83 if testPath(t, filepath.Join(dir, name)) != nil {
107 if pkg := testPath(t, "./testdata/exports"); pkg != nil {
  /external/chromium-trace/catapult/dashboard/dashboard/elements/
group-report-page.html 274 getSubtestsEntry: function(testPath) {
275 var testPathParts = testPath.split('/');
302 var testPath = this.getTestPath(alert);
303 var subtestsEntry = this.getSubtestsEntry(testPath);
304 var traceName = testPath.split('/').pop();
311 testPath = testPath.split('/').slice(0, -1).join('/');
312 subtestsEntry = this.getSubtestsEntry(testPath);
331 return [testPath, selectedTraces];
bisect-button.html 48 test-path="{{bisectInfo.testPath}}"
trace-button.html 46 test-path="{{traceInfo.testPath}}"
  /external/icu/icu4c/source/test/cintltst/
udatatst.c 138 const char* testPath=loadTestData(&status);
146 log_verbose("Testing udata_open(%s)\n", testPath);
147 result=udata_open(testPath, type, name, &status);
149 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myErrorName(status));
296 result = udata_open( testPath, "typ", "nam", &status);
298 log_data_err("FAIL: udata_open( \"%s\", \"typ\", \"nam\") returned status %s\n", testPath, u_errorName(status));
313 /* strcpy(icuDataFilePath, testPath); */
361 strcat(longTestPath, testPath);
652 const char* testPath="testdata";
685 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/UsesLibraryApp/src/com/android/cts/useslibrary/
UsesLibraryTest.java 75 String testPath = libPath + File.pathSeparator + apkPath + File.pathSeparator + apkPath;
76 PathClassLoader testLoader = new PathClassLoader(testPath, null);
  /external/chromium-trace/catapult/dashboard/dashboard/models/
alert_test.py 47 self.assertEqual('m/b/t/t', utils.TestPath(k))
54 self.assertEqual('a/b/c/d', utils.TestPath(k))
  /external/skia/include/gpu/
GrTestUtils.h 36 const SkPath& TestPath(SkRandom*);

Completed in 787 milliseconds

1 2 3 4 5