HomeSort by relevance Sort by last modified time
    Searched defs:results (Results 1 - 25 of 263) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/v8/test/mjsunit/
stress-array-push.js 30 var results = []; variable
32 if ((k%10000) == 0) results.length = 0;
33 results.push({});
string-index.js 180 var results = [1, 2, 3, NaN]; variable
184 var expected = results[index];
  /external/srec/srec/Semproc/include/
SR_SemanticResultImpl.h 42 HashMap* results; member in struct:SR_SemanticResultImpl_t
  /external/webkit/Source/WebKit/chromium/src/x11/
WebScreenInfoFactory.cpp 42 WebScreenInfo results; local
44 results.depthPerComponent = 8;
48 results.depth = XDisplayPlanes(display, screenNumber);
49 results.isMonochrome = results.depth == 1;
51 results.rect = WebRect(0, 0, displayWidth, displayHeight);
56 results.availableRect = results.rect;
58 return results;
  /external/icu4c/test/intltest/
allcoll.h 50 static const Collator::EComparisonResult results[]; member in class:CollationDummyTest
decoll.h 43 static const Collator::EComparisonResult results[][2]; member in class:CollationGermanTest
escoll.h 42 static const Collator::EComparisonResult results[]; member in class:CollationSpanishTest
ficoll.h 41 static const Collator::EComparisonResult results[]; member in class:CollationFinnishTest
frcoll.h 44 static const Collator::EComparisonResult results[]; member in class:CollationFrenchTest
lcukocol.cpp 60 const Collator::EComparisonResult LotusCollationKoreanTest::results[] = { member in class:LotusCollationKoreanTest
70 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
lcukocol.h 33 static const Collator::EComparisonResult results[]; member in class:LotusCollationKoreanTest
trcoll.h 42 static const Collator::EComparisonResult results[]; member in class:CollationTurkishTest
  /external/webkit/Source/WebCore/page/
SpeechInputEvent.h 42 static PassRefPtr<SpeechInputEvent> create(const AtomicString& eventType, const SpeechInputResultArray& results);
47 SpeechInputResultList* results() const { return m_results.get(); } function in class:WebCore::SpeechInputEvent
50 SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results);
  /external/chromium/testing/gtest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/easymock/src/org/easymock/internal/
ExpectedInvocationAndResults.java 26 Results results; field in class:ExpectedInvocationAndResults
29 Results results) {
31 this.results = results;
38 public Results getResults() {
39 return results;
44 return expectedInvocation.toString() + ": " + results.toString();
  /external/gtest/test/
gtest-test-part_test.cc 96 TestPartResultArray results; local
97 EXPECT_EQ(0, results.size());
103 TestPartResultArray results; local
104 results.Append(r1_);
105 EXPECT_EQ(1, results.size());
106 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
112 TestPartResultArray results; local
113 results.Append(r1_);
114 results.Append(r2_);
115 EXPECT_EQ(2, results.size())
127 TestPartResultArray results; local
    [all...]
  /external/icu4c/test/cintltst/
cdetst.c 69 const static UCollationResult results[][2] = variable
115 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i][1]);
134 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i][0]);
cestst.c 61 const static UCollationResult results[] = { variable
99 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
118 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
cfintst.c 53 const static UCollationResult results[] = { variable
89 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
107 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
cturtst.c 65 const static UCollationResult results[] = { variable
106 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
126 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
  /external/protobuf/gtest/test/
gtest-test-part_test.cc 121 TestPartResultArray results; local
122 EXPECT_EQ(0, results.size());
128 TestPartResultArray results; local
129 results.Append(r1_);
130 EXPECT_EQ(1, results.size());
131 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
137 TestPartResultArray results; local
138 results.Append(r1_);
139 results.Append(r2_);
140 EXPECT_EQ(2, results.size())
150 TestPartResultArray results; local
    [all...]
  /external/srec/srec/Recognizer/include/
SR_RecognizerResultImpl.h 66 * The second ArrayList denotes the collection of semantic results per nbest list entry.
68 ArrayList* results; member in struct:SR_RecognizerResultImpl_t
  /external/valgrind/main/none/tests/darwin/
access_extended.c 23 int results[3]; local
35 retval = syscall(SYS_access_extended, entries, entries_szB, results,
40 name1, results[0], strerror(results[0]));
42 name1, results[1], strerror(results[1]));
44 name2, results[2], strerror(results[2]));
  /external/webkit/Source/WebKit/chromium/src/win/
WebScreenInfoFactory.cpp 63 WebScreenInfo results; local
64 results.depth = devMode.dmBitsPerPel;
65 results.depthPerComponent = devMode.dmBitsPerPel / 3; // Assumes RGB
66 results.isMonochrome = devMode.dmColor == DMCOLOR_MONOCHROME;
67 results.rect = toWebRect(monitorInfo.rcMonitor);
68 results.availableRect = toWebRect(monitorInfo.rcWork);
69 return results;
  /frameworks/base/tools/localize/
Perforce_test.cpp 16 vector<string> results; local
20 int err = Perforce::GetResourceFileNames("43019", "//device", apps, &results, true);
24 if (results.size() != 2) {
27 if (results[0] != "//device/apps/common/res/values/strings.xml") {
30 if (results[1] != "//device/apps/Contacts/res/values/strings.xml") {
34 for (size_t i=0; i<results.size(); i++) {
35 printf("[%zd] '%s'\n", i, results[i].c_str());

Completed in 706 milliseconds

1 2 3 4 5 6 7 8 91011