Searched defs:results (Results 1 - 25 of 314) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Dstress-array-push.js30 var results = []; variable
32 if ((k%10000) == 0) results.length = 0;
33 results.push({});
/external/srec/srec/Semproc/include/
H A DSR_SemanticResultImpl.h42 HashMap* results; member in struct:SR_SemanticResultImpl_t
/external/webkit/Source/WebKit/chromium/src/
H A DWebPluginListBuilderImpl.h43 WebPluginListBuilderImpl(Vector<WebCore::PluginInfo>* results) : m_results(results) { } argument
/external/icu4c/test/intltest/
H A Dallcoll.h50 static const Collator::EComparisonResult results[]; member in class:CollationDummyTest
H A Ddecoll.h43 static const Collator::EComparisonResult results[][2]; member in class:CollationGermanTest
H A Descoll.h42 static const Collator::EComparisonResult results[]; member in class:CollationSpanishTest
H A Dficoll.h41 static const Collator::EComparisonResult results[]; member in class:CollationFinnishTest
H A Dfrcoll.h44 static const Collator::EComparisonResult results[]; member in class:CollationFrenchTest
H A Dlcukocol.h33 static const Collator::EComparisonResult results[]; member in class:LotusCollationKoreanTest
H A Dtrcoll.h42 static const Collator::EComparisonResult results[]; member in class:CollationTurkishTest
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DCollidable.java49 * @param results Will contain the list of {@link CollisionResult}s.
52 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException; argument
/external/junit/src/org/junit/experimental/results/
H A DFailureList.java4 package org.junit.experimental.results;
/external/webkit/Source/WebCore/page/
H A DSpeechInputEvent.cpp38 PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results) argument
40 return adoptRef(new SpeechInputEvent(eventType, results));
46 SpeechInputEvent::SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results) argument
48 , m_results(SpeechInputResultList::create(results))
H A DSpeechInputEvent.h42 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);
H A DSpeechInputResultList.cpp38 PassRefPtr<SpeechInputResultList> SpeechInputResultList::create(const SpeechInputResultArray& results) argument
40 return adoptRef(new SpeechInputResultList(results));
48 SpeechInputResultList::SpeechInputResultList(const SpeechInputResultArray& results) argument
49 : m_results(results) // Takes a copy of the array of RefPtrs.
/external/webkit/Source/WebKit/chromium/src/x11/
H A DWebScreenInfoFactory.cpp42 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/chromium/testing/gtest/test/
H A Dgtest-test-part_test.cc170 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
199 TestPartResultArray results; local
[all...]
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocationAndResults.java26 Results results; field in class:ExpectedInvocationAndResults
29 Results results) {
31 this.results = results;
39 return results;
44 return expectedInvocation.toString() + ": " + results.toString();
28 ExpectedInvocationAndResults(ExpectedInvocation expectedInvocation, Results results) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DPerformanceResultsPreferenceInitializer.java11 package org.eclipse.test.internal.performance.results.ui;
19 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants;
/external/gtest/test/
H A Dgtest-test-part_test.cc170 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
199 TestPartResultArray results; local
[all...]
/external/icu4c/test/cintltst/
H A Dcdetst.c69 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]);
H A Dcestst.c61 const static UCollationResult results[] = { variable
99 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
118 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
H A Dcfintst.c53 const static UCollationResult results[] = { variable
89 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
107 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
H A Dcturtst.c65 const static UCollationResult results[] = { variable
106 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
126 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DCollisionData.java51 CollisionResults results);
48 collideWith(Collidable other, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument

Completed in 1892 milliseconds

1234567891011>>