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

1 2 3

  /external/robolectric/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_org/chrome/browser/ui/cocoa/download/
download_util_mac_unittest.mm 38 base::FilePath testPath;
39 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &testPath));
41 testPath = testPath.Append(testFile);
44 download_util::AddFileToPasteboard(pasteboard(), testPath);
55 NSString* realPath = base::SysUTF8ToNSString(testPath.value());
  /external/chromium_org/third_party/angle/tests/gles_conformance_tests/
gles_conformance_tests.h 24 void RunConformanceTest(const std::string &testPath, const ConformanceConfig& config);
gles_conformance_tests.cpp 61 void RunConformanceTest(const std::string &testPath, const ConformanceConfig& config)
77 std::vector<char> runArg = FormatArg("-run=%s/conformance_tests/%s", GetExecutableDirectory().c_str(), testPath.c_str());
  /cts/tests/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 68 testPath = path_in_suite + (basename, testname)
69 yield lit.Test.Test(testSuite, testPath, localConfig, file_path=execpath)
94 testPath,testName = os.path.split(test.getSourcePath())
95 while not os.path.exists(testPath):
98 testPath, namePrefix = os.path.split(testPath)
101 cmd = [testPath, '--gtest_filter=' + testName]
  /external/skia/tools/skpdiff/
SkDiffContext.h 47 * @param testPath The test directory's path
49 void diffDirectories(const char baselinePath[], const char testPath[]);
61 * @param testPath The matching test file path
63 void addDiff(const char* baselinePath, const char* testPath);
71 * and testPath filenames
73 * "testPath" : string containing the path to the test image
91 * "testPath": "/b/queue.png",
SkDiffContext.cpp 68 void SkDiffContext::addDiff(const char* baselinePath, const char* testPath) {
76 if (!SkImageDecoder::DecodeFile(testPath, &testBitmap)) {
77 SkDebugf("Failed to load bitmap \"%s\"\n", testPath);
88 SkString testName = SkOSPath::SkBasename(testPath);
92 newRecord->fTestPath = testPath;
141 void setup(SkDiffContext* diffContext, const SkString& baselinePath, const SkString& testPath) {
144 fTestPath = testPath;
157 void SkDiffContext::diffDirectories(const char baselinePath[], const char testPath[]) {
174 SkString testFile = SkOSPath::SkPathJoin(testPath, baseFilename);
252 stream.writeText(" \"testPath\": \"")
    [all...]
  /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/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/util/
BookmarkUtils.java 44 public static byte[] getIcon(String testPath) {
48 UrlUtils.getTestFileUrl(testPath))).getContent();
52 Log.e(TAG, "Error trying to get the icon '" + testPath + "': " + e.getMessage());
  /external/chromium_org/third_party/angle/tests/deqp_tests/
deqp_tests.h 27 void RunDEQPTest(const std::string &testPath, const DEQPConfig& config);
deqp_tests.cpp 110 void RunDEQPTest(const std::string &testPath, const DEQPConfig& config)
128 std::vector<char> testNameArg = FormatArg("--deqp-case=%s", testPath.c_str());
  /external/chromium_org/third_party/skia/tools/skpdiff/
SkDiffContext.h 63 * testPath=/tmp/dir/image-after.png
84 * @param testPath The test directory's path
86 void diffDirectories(const char baselinePath[], const char testPath[]);
98 * @param testPath The matching test file path
100 void addDiff(const char* baselinePath, const char* testPath);
111 * "testPath" : string containing the path to the test image
137 * "testPath": "/b/queue.png",
SkDiffContext.cpp 98 void SkDiffContext::addDiff(const char* baselinePath, const char* testPath) {
106 if (!SkImageDecoder::DecodeFile(testPath, &testBitmap)) {
107 SkDebugf("Failed to load bitmap \"%s\"\n", testPath);
118 SkString testName = SkOSPath::Basename(testPath);
128 newRecord->fTestPath = testPath;
216 void setup(SkDiffContext* diffContext, const SkString& baselinePath, const SkString& testPath) {
219 fTestPath = testPath;
232 void SkDiffContext::diffDirectories(const char baselinePath[], const char testPath[]) {
249 SkString testFile = SkOSPath::Join(testPath, baseFilename);
336 stream.writeText(" \"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(),
  /external/chromium_org/sync/internal_api/
syncapi_server_connection_manager_unittest.cc 83 &params, "/testpath", "testauth", &watcher);
101 &params, "/testpath", "testauth", &watcher);
126 &params, "/testpath", "testauth", &watcher);
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
ClientOnPageFinishedTest.java 159 final String testPath = "/test.html";
162 final String testUrl = webServer.setResponse(testPath, testHtml, null);
202 final String testPath = "/test.html";
206 final String testUrl = webServer.setResponse(testPath, testHtml, null);
257 final String testPath = "/test.html";
258 final String testUrl = webServer.setResponse(testPath, testHtml, null);
  /external/libedit/
acinclude.m4 22 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
23 AC_PATH_PROGS(NROFF, nroff awf, /bin/false, $TestPath)
  /external/chromium_org/third_party/icu/source/test/cintltst/
udatatst.c 134 const char* testPath=loadTestData(&status);
142 log_verbose("Testing udata_open(%s)\n", testPath);
143 result=udata_open(testPath, type, name, &status);
145 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myErrorName(status));
292 result = udata_open( testPath, "typ", "nam", &status);
294 log_data_err("FAIL: udata_open( \"%s\", \"typ\", \"nam\") returned status %s\n", testPath, u_errorName(status));
309 /* strcpy(icuDataFilePath, testPath); */
357 strcat(longTestPath, testPath);
648 const char* testPath="testdata";
681 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
udatatst.c 134 const char* testPath=loadTestData(&status);
142 log_verbose("Testing udata_open(%s)\n", testPath);
143 result=udata_open(testPath, type, name, &status);
145 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myErrorName(status));
292 result = udata_open( testPath, "typ", "nam", &status);
294 log_data_err("FAIL: udata_open( \"%s\", \"typ\", \"nam\") returned status %s\n", testPath, u_errorName(status));
309 /* strcpy(icuDataFilePath, testPath); */
357 strcat(longTestPath, testPath);
648 const char* testPath="testdata";
681 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status)
    [all...]
  /cts/apps/CameraITS/tools/
run_all_tests.py 73 for (scene,testname,testpath) in tests:
74 cmd = ['python', os.path.join(os.getcwd(),testpath)] + sys.argv[1:]
  /external/lldb/test/attic/
tester.py 7 testPath = sys.path[0]
8 rem = re.match("(^.*/)test$", testPath)
  /external/chromium_org/third_party/skia/experimental/Intersection/
SimplifyAddIntersectingTs_Test.cpp 86 static void testPath(const SkPath& path, const SkPoint* pts1, SkPath::Verb c1Type,
124 testPath(path2, pts1, c1Type, pts2, c2Type);
132 testPath(path2, pts1, c1Type, pts2, c2Type);
  /external/chromium_org/v8/test/message/
testcfg.py 87 def IsFailureOutput(self, output, testpath):
88 expected_path = os.path.join(self.root, testpath + ".out")
97 env = { "basename": os.path.basename(testpath + ".js") }

Completed in 939 milliseconds

1 2 3