HomeSort by relevance Sort by last modified time
    Searched refs:testPath (Results 1 - 21 of 21) sorted by null

  /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/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...]
diff_viewer.js 37 image.src = scope.record.testPath;
295 rebaselines.push($scope.records[recordIndex].testPath);
  /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/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/third_party/icu/source/test/cintltst/
udatatst.c 143 const char* testPath=loadTestData(&status);
155 result=udata_open(testPath, type, name, &status);
157 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myErrorName(status));
259 result = udata_open( testPath, "typ", "nam", &status);
261 log_data_err("FAIL: udata_open( \"%s\", \"typ\", \"nam\") returned status %s\n", testPath, u_errorName(status));
276 /* strcpy(icuDataFilePath, testPath); */
324 strcat(longTestPath, testPath);
613 const char* testPath="testdata";
646 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status);
649 result=udata_openChoice(testPath, type, name[2], isAcceptable3, NULL, &status)
    [all...]
  /external/icu4c/test/cintltst/
udatatst.c 144 const char* testPath=loadTestData(&status);
156 result=udata_open(testPath, type, name, &status);
158 log_data_err("FAIL: udata_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myErrorName(status));
260 result = udata_open( testPath, "typ", "nam", &status);
262 log_data_err("FAIL: udata_open( \"%s\", \"typ\", \"nam\") returned status %s\n", testPath, u_errorName(status));
277 /* strcpy(icuDataFilePath, testPath); */
325 strcat(longTestPath, testPath);
616 const char* testPath="testdata";
649 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status);
652 result=udata_openChoice(testPath, type, name[2], isAcceptable3, NULL, &status)
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
ClientOnPageFinishedTest.java 140 final String testPath = "/test.html";
143 final String testUrl = webServer.setResponse(testPath, testHtml, null);
183 final String testPath = "/test.html";
187 final String testUrl = webServer.setResponse(testPath, testHtml, null);
238 final String testPath = "/test.html";
239 final String testUrl = webServer.setResponse(testPath, testHtml, null);
  /external/llvm/utils/lit/lit/
TestFormats.py 66 testPath = path_in_suite + (basename, testname)
67 yield lit.Test.Test(testSuite, testPath, localConfig)
92 testPath,testName = os.path.split(test.getSourcePath())
93 while not os.path.exists(testPath):
96 testPath, namePrefix = os.path.split(testPath)
99 cmd = [testPath, '--gtest_filter=' + testName]
  /external/skia/tests/
SurfaceTest.cpp 65 SkPath testPath;
66 testPath.addRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
124 EXPECT_COPY_ON_WRITE(drawPath(testPath, testPaint))
133 EXPECT_COPY_ON_WRITE(drawTextOnPath(testText.c_str(), testText.size(), testPath, NULL, \
CanvasTest.cpp 192 static SkPath testPath() {
198 const SkPath kTestPath = testPath();
    [all...]
PathTest.cpp     [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieTest.java 165 public void testPath() {
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.h 236 char* testPath; // specifies subtests
intltest.cpp 506 testPath = NULL;
544 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath );
551 this->testPath = pathVal;
622 testPath = pos+1; // store subpath for calling subtest
625 testPath = NULL;
    [all...]
  /external/icu4c/test/intltest/
intltest.h 285 char* testPath; // specifies subtests
intltest.cpp 521 testPath = NULL;
560 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath );
567 this->testPath = pathVal;
645 testPath = pos+1; // store subpath for calling subtest
648 testPath = NULL;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test1.c     [all...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 

Completed in 385 milliseconds