HomeSort by relevance Sort by last modified time
    Searched refs:testName (Results 76 - 100 of 280) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
example.js 15 function startCommand(testName) {
23 testNameEl.textContent = testName;
40 function endCommand(testName, testResult) {
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
example.js 15 function startCommand(testName) {
23 testNameEl.textContent = testName;
40 function endCommand(testName, testResult) {
  /external/chromium_org/native_client_sdk/src/tests/sdk_util_test/
example.js 15 function startCommand(testName) {
23 testNameEl.textContent = testName;
40 function endCommand(testName, testResult) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java 71 private static Intent createResult(Activity activity, int testResult, String testName,
74 data.putExtra(TEST_NAME, testName);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
PowerTestHostLink.java 55 void raiseError(String testName, String message) throws Exception;
251 final String testName = tokenizer.nextToken();
252 final String message = request.substring(7 + testName.length());
253 mHostToDeviceExecutor.raiseError(testName, message);
271 String testName = "";
276 testName = tokenizer.nextToken();
305 String fullMessage = testName + " " + message;
307 new SensorTestDetails(testName, resultCode, fullMessage));
  /cts/tests/tests/hardware/src/android/hardware/cts/
Camera_SizeTest.java 114 private static void addTestToSuite(TestSuite testSuite, String testName) {
116 test.setName(testName);
  /cts/tools/utils/
VogarUtils.java 112 * Determine the correct set of ABIs for the given className/testName.
115 * {@code architecture}, {@code className} and {@code testName}.
120 String testName) {
122 String fullTestName = VogarUtils.buildFullTestName(className, testName);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
fixChangeLogPatchThenSetChangeLogDateAndReviewer.pl 36 testName => "New entry inserted earlier in the file, but after an entry with the same author and date, patch applied a day later.",
81 my $testNameStart = "setChangeLogDateAndReviewer(fixChangeLogPatch()): $testCase->{testName}: comparing";
setChangeLogDateAndReviewer.pl 35 testName => "reviewer defined and \"NOBODY (OOPS!)\" in leading junk",
74 testName => "reviewer not defined and \"NOBODY (OOPS!)\" in leading junk",
118 my $testNameStart = "setChangeLogDateAndReviewer(): $testCase->{testName}: comparing";
  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js 26 var Test = function(name, testName, expected, testEnvironmentArg, async, callback) {
28 this.testName = testName;
75 name: this.testName
89 QUnit.ok( false, "Setup failed on " + this.testName + ": " + e.message );
104 fail("Test " + this.testName + " died, exception and test follows", e, this.callback);
120 QUnit.ok( false, "Teardown failed on " + this.testName + ": " + e.message );
157 sessionStorage.setItem("qunit-" + this.module + "-" + this.testName, bad);
159 sessionStorage.removeItem("qunit-" + this.module + "-" + this.testName);
210 fail("reset() failed, following Test " + this.testName + ", exception and reset fn follows", e, QUnit.reset)
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 293 static void showPathOpPath(const char* testName, const SkPath& one, const SkPath& two,
298 if (!testName) {
300 testName = defaultTestName.c_str();
302 SkDebugf("static void %s(skiatest::Reporter* reporter, const char* filename) {\n", testName);
323 static int comparePaths(skiatest::Reporter* reporter, const char* testName, const SkPath& one,
330 showPathOpPath(testName, one, two, a, b, scaledOne, scaledTwo, shapeOp, scale);
338 showPathOpPath(testName, one, two, a, b, scaledOne, scaledTwo, shapeOp, scale);
342 showPathOpPath(testName, one, two, a, b, scaledOne, scaledTwo, shapeOp, scale);
349 static const char* testName = "pathOpTest";
352 outFile.writeText(testName);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
builtins.js 72 var testName = name + "-" + propName;
74 assertTrue(propDesc.hasOwnProperty("value"), testName);
75 assertFalse(propDesc.configurable, testName);
77 assertFalse(propDesc.writable, testName);
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/
dromaeorunner.js 5 setup: function(testName) {
10 var url = DRT.baseURL + "?" + testName + '&numTests=' + ITERATION_COUNT;
  /external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
heap-snapshot-performance-test.js 27 var testName = /([^\/]+)\.html$/.exec(WebInspector.inspectedPageURL)[1];
70 timer.done(testName);
  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
tstdtmod.h 36 const char* testName;
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker_Test.h 52 void initializeTests(const char* testName, size_t testNameSize);
  /external/chromium_org/third_party/skia/gm/
gm_expectations.cpp 196 Expectations IndividualImageExpectationsSource::get(const char *testName) const {
197 SkString path = SkOSPath::Join(fRootDir.c_str(), testName);
217 Expectations JsonExpectationsSource::get(const char *testName) const {
218 return Expectations(fJsonExpectedResults[testName]);
  /external/deqp/android/scripts/
GenAndroidCTSXML.py 30 def hasTest(self, testName):
31 return testName in self.testCases
33 def getTest(self, testName):
34 return self.testCases[testName]
GenAndroidCTSXMLFromTestList.py 36 def hasTest(self, testName):
38 if test.getName() == testName:
42 def getTest(self, testName):
44 if test.getName() == testName:
  /external/icu/icu4c/source/tools/ctestfw/unicode/
tstdtmod.h 36 const char* testName;
  /external/skia/experimental/Intersection/
EdgeWalker_Test.h 52 void initializeTests(const char* testName, size_t testNameSize);
  /external/skia/gm/
gm_expectations.cpp 196 Expectations IndividualImageExpectationsSource::get(const char *testName) const {
197 SkString path = SkOSPath::SkPathJoin(fRootDir.c_str(), testName);
217 Expectations JsonExpectationsSource::get(const char *testName) const {
218 return Expectations(fJsonExpectedResults[testName]);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaEqualizerTest.java 75 private void log(String testName, String message) {
76 Log.v(TAG, "["+testName+"] "+message);
79 private void loge(String testName, String message) {
80 Log.e(TAG, "["+testName+"] "+message);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ScenarioResults.java 170 String testName = this.name.substring(classSeparator+1, length);
171 if (!hasClassName && testName.startsWith("test.")) { // specific case for swt... //$NON-NLS-1$
172 testName = testName.substring(5);
176 StringTokenizer tokenizer = new StringTokenizer(testName, " :,", true); //$NON-NLS-1$
  /external/jsoncpp/src/test_lib_json/
jsontest.cpp 320 std::string name = test->testName();
330 result.setTestName( test->testName() );
331 printf( "Testing %s: ", test->testName() );
397 Runner::testIndex( const std::string &testName,
403 if ( testNameAt(index) == testName )
549 "--test TESTNAME: executes the test case with the specified name.\n"

Completed in 1263 milliseconds

1 2 34 5 6 7 8 91011>>