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

1234567891011>>

/external/chromium_org/v8/test/mjsunit/
H A Dstress-array-push.js30 var results = []; variable
32 if ((k%10000) == 0) results.length = 0;
33 results.push({});
/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/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dresults.js29 var results = results || {};
34 results.NUM_FAILURES_BY_TYPE = 'num_failures_by_type';
35 results.FAILURE_MAP = 'failure_map';
36 results.CHROME_REVISIONS = 'chromeRevision';
37 results.BLINK_REVISIONS = 'blinkRevision';
38 results.TIMESTAMPS = 'secondsSinceEpoch';
39 results.BUILD_NUMBERS = 'buildNumbers';
40 results.TESTS = 'tests';
43 results
[all...]
/external/chromium_org/native_client_sdk/src/tests/sdk_util_test/
H A Dstring_util_test.cc53 std::vector<std::string> results; local
54 SplitString("alongwordwithnodelimiter", 'D', &results);
55 EXPECT_THAT(results, ElementsAre("alongwordwithnodelimiter"));
59 std::vector<std::string> results; local
60 SplitString("DDDoneDtwoDthree", 'D', &results);
61 EXPECT_THAT(results, ElementsAre("", "", "", "one", "two", "three"));
65 std::vector<std::string> results; local
66 SplitString("unoDDDdosDtresDDcuatro", 'D', &results);
67 EXPECT_THAT(results, ElementsAre("uno", "", "", "dos", "tres", "", "cuatro"));
71 std::vector<std::string> results; local
[all...]
/external/chromium_org/tools/json_schema_compiler/test/
H A Dfunctions_on_types_unittest.cc54 scoped_ptr<ListValue> results = StorageArea::Get::Results::Create(items); local
56 ASSERT_TRUE(results->GetDictionary(0, &item_result));
H A Dcallbacks_unittest.cc14 scoped_ptr<ListValue> results = ReturnsObject::Results::Create(some_object); local
20 EXPECT_TRUE(results->Equals(&expected));
26 scoped_ptr<ListValue> results = local
34 EXPECT_TRUE(results->Equals(&expected));
H A Dcrossref_unittest.cc64 scoped_ptr<ListValue> results = GetTestType::Results::Create(*test_type); local
66 results->GetDictionary(0, &result_dict);
H A Dobjects_unittest.cc52 scoped_ptr<ListValue> results = ReturnsObject::Results::Create(info); local
57 ASSERT_TRUE(results->GetDictionary(0, &result));
64 scoped_ptr<ListValue> results(OnObjectFired::Create(object));
69 ASSERT_TRUE(results->GetDictionary(0, &result));
H A Dsimple_api_unittest.cc25 scoped_ptr<ListValue> results = IncrementInteger::Results::Create(5); local
28 EXPECT_TRUE(results->Equals(&expected));
111 scoped_ptr<ListValue> results = OptionalString::Results::Create(); local
113 EXPECT_TRUE(results->Equals(&expected));
140 scoped_ptr<ListValue> results = GetTestType::Results::Create(*test_type); local
143 results->GetDictionary(0, &result);
150 scoped_ptr<ListValue> results(OnIntegerFired::Create(5));
153 EXPECT_TRUE(results->Equals(&expected));
159 scoped_ptr<ListValue> results(OnStringFired::Create("yo dawg"));
162 EXPECT_TRUE(results
[all...]
/external/chromium_org/chrome/test/ui/
H A Djavascript_test_util.cc16 std::map<std::string, std::string>* results) {
17 DCHECK(results != NULL);
43 results->insert(std::make_pair(it.key(), result));
15 JsonDictionaryToMap(const std::string& json, std::map<std::string, std::string>* results) argument
/external/chromium_org/third_party/WebKit/Source/platform/plugins/
H A DPluginListBuilder.h42 PluginListBuilder(Vector<WebCore::PluginInfo>* results) : m_results(results) { } argument
/external/chromium_org/third_party/opus/src/silk/float/
H A Dautocorrelation_FLP.c37 silk_float *results, /* O result (length correlationCount) */
50 results[ i ] = (silk_float)silk_inner_product_FLP( inputData, inputData + i, inputDataSize - i );
36 silk_autocorrelation_FLP( silk_float *results, const silk_float *inputData, opus_int inputDataSize, opus_int correlationCount ) argument
/external/srec/srec/Semproc/include/
H A DSR_SemanticResultImpl.h42 HashMap* results; member in struct:SR_SemanticResultImpl_t
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dresults.js26 var results = results || {};
70 // Kinds of results.
71 results.kActualKind = 'actual';
72 results.kExpectedKind = 'expected';
73 results.kDiffKind = 'diff';
74 results.kUnknownKind = 'unknown';
77 results.kImageType = 'image'
78 results.kAudioType = 'audio'
79 results
[all...]
/external/chromium_org/third_party/WebKit/Source/core/speech/
H A DSpeechInputEvent.h41 static PassRefPtr<SpeechInputEvent> create(const AtomicString& eventType, const SpeechInputResultArray& results);
44 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/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionResultList.cpp32 PassRefPtr<SpeechRecognitionResultList> SpeechRecognitionResultList::create(const Vector<RefPtr<SpeechRecognitionResult> >& results) argument
34 return adoptRef(new SpeechRecognitionResultList(results));
45 SpeechRecognitionResultList::SpeechRecognitionResultList(const Vector<RefPtr<SpeechRecognitionResult> >& results) argument
46 : m_results(results)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextCheckingCompletionImpl.cpp44 static Vector<TextCheckingResult> toCoreResults(const WebVector<WebTextCheckingResult>& results) argument
47 for (size_t i = 0; i < results.size(); ++i)
48 coreResults.append(results[i]);
52 void WebTextCheckingCompletionImpl::didFinishCheckingText(const WebVector<WebTextCheckingResult>& results) argument
54 m_request->didSucceed(toCoreResults(results));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dallcoll.h50 static const Collator::EComparisonResult results[]; member in class:CollationDummyTest
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dautocorr_FIX.c37 opus_int32 *results, /* O Result (length correlationCount) */
46 *scale = _celt_autocorr(inputData, results, NULL, 0, corrCount-1, inputDataSize);
36 silk_autocorr( opus_int32 *results, opus_int *scale, const opus_int16 *inputData, const opus_int inputDataSize, const opus_int correlationCount ) argument
/external/icu4c/test/intltest/
H A Dallcoll.h50 static const Collator::EComparisonResult results[]; member in class:CollationDummyTest
/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/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/chromium_org/chrome/common/safe_browsing/
H A Dzip_analyzer.cc14 void AnalyzeZipFile(base::PlatformFile zip_file, Results* results) { argument
36 results->has_archive = true;
39 results->has_executable = true;
46 results->success = true;

Completed in 752 milliseconds

1234567891011>>