/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
D | string-validate-input.js | 23 addResult(r); 28 addResult(r); 45 addResult(r); 52 addResult(r); 57 addResult(r); 84 function addResult(r) function
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
D | string-validate-input.js | 23 addResult(r); 28 addResult(r); 45 addResult(r); 52 addResult(r); 57 addResult(r); 84 function addResult(r) function
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/ |
D | string-validate-input.js | 23 addResult(r); 28 addResult(r); 45 addResult(r); 52 addResult(r); 57 addResult(r); 84 function addResult(r) function
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | QualifiedName.cpp | 86 …QualifiedNameCache::AddResult addResult = qualifiedNameCache().add<QNameComponentsTranslator>(data… in QualifiedName() local 87 m_impl = addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue; in QualifiedName() 93 …QualifiedNameCache::AddResult addResult = qualifiedNameCache().add<QNameComponentsTranslator>(data… in QualifiedName() local 94 m_impl = addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue; in QualifiedName()
|
D | DocumentOrderedMap.cpp | 74 Map::AddResult addResult = m_map.add(key, adoptPtrWillBeNoop(new MapEntry(element))); in add() local 75 if (addResult.isNewEntry) in add() 78 OwnPtrWillBeMember<MapEntry>& entry = addResult.storedValue->value; in add()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | RuleFeature.cpp | 367 InvalidationSetMap::AddResult addResult = m_classInvalidationSets.add(className, nullptr); in ensureClassInvalidationSet() local 368 if (addResult.isNewEntry) in ensureClassInvalidationSet() 369 addResult.storedValue->value = DescendantInvalidationSet::create(); in ensureClassInvalidationSet() 370 return *addResult.storedValue->value; in ensureClassInvalidationSet() 375 … InvalidationSetMap::AddResult addResult = m_attributeInvalidationSets.add(attributeName, nullptr); in ensureAttributeInvalidationSet() local 376 if (addResult.isNewEntry) in ensureAttributeInvalidationSet() 377 addResult.storedValue->value = DescendantInvalidationSet::create(); in ensureAttributeInvalidationSet() 378 return *addResult.storedValue->value; in ensureAttributeInvalidationSet() 383 InvalidationSetMap::AddResult addResult = m_idInvalidationSets.add(id, nullptr); in ensureIdInvalidationSet() local 384 if (addResult.isNewEntry) in ensureIdInvalidationSet() [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | WidthCache.h | 157 SingleCharMap::AddResult addResult = m_singleCharMap.add(run[0], entry); in addSlowCase() local 158 isNewEntry = addResult.isNewEntry; in addSlowCase() 159 value = &addResult.storedValue->value; in addSlowCase() 167 Map::AddResult addResult = m_map.add(smallStringKey, entry); in addSlowCase() local 168 isNewEntry = addResult.isNewEntry; in addSlowCase() 169 value = &addResult.storedValue->value; in addSlowCase()
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
D | WebServiceWorkerResponse.cpp | 77 HTTPHeaderMap::AddResult addResult = m_private->headers.add(key, value); in appendHeader() local 78 if (!addResult.isNewEntry) in appendHeader() 79 addResult.storedValue->value = addResult.storedValue->value + ", " + String(value); in appendHeader()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLOptionsCollection.cpp | 53 HashSet<AtomicString>::AddResult addResult = existingNames.add(idAttribute); in supportedPropertyNames() local 54 if (addResult.isNewEntry) in supportedPropertyNames() 59 HashSet<AtomicString>::AddResult addResult = existingNames.add(nameAttribute); in supportedPropertyNames() local 60 if (addResult.isNewEntry) in supportedPropertyNames()
|
D | HTMLFormControlsCollection.cpp | 225 HashSet<AtomicString>::AddResult addResult = existingNames.add(idAttribute); in supportedPropertyNames() local 226 if (addResult.isNewEntry) in supportedPropertyNames() 231 HashSet<AtomicString>::AddResult addResult = existingNames.add(nameAttribute); in supportedPropertyNames() local 232 if (addResult.isNewEntry) in supportedPropertyNames()
|
D | HTMLCollection.cpp | 435 HashSet<AtomicString>::AddResult addResult = existingNames.add(idAttribute); in supportedPropertyNames() local 436 if (addResult.isNewEntry) in supportedPropertyNames() 443 HashSet<AtomicString>::AddResult addResult = existingNames.add(nameAttribute); in supportedPropertyNames() local 444 if (addResult.isNewEntry) in supportedPropertyNames()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | MatchedPropertiesCache.cpp | 128 Cache::AddResult addResult = m_cache.add(hash, nullptr); in add() local 129 if (addResult.isNewEntry) in add() 130 addResult.storedValue->value = adoptPtrWillBeNoop(new CachedMatchedProperties); in add() 132 CachedMatchedProperties* cacheItem = addResult.storedValue->value.get(); in add() 133 if (!addResult.isNewEntry) in add()
|
/external/deqp/framework/common/ |
D | tcuTestContext.cpp | 97 void ResultCollector::addResult (qpTestResult result, const std::string& msg) in addResult() function in tcu::ResultCollector 112 addResult(result, msg); in checkResult() 118 addResult(QP_TEST_RESULT_FAIL, msg); in fail()
|
D | tcuTestContext.hpp | 104 void addResult (qpTestResult result, const std::string& msg);
|
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/ |
D | StyleInvalidator.cpp | 47 PendingInvalidationMap::AddResult addResult = m_pendingInvalidationMap.add(&element, nullptr); in ensurePendingInvalidationList() local 48 if (addResult.isNewEntry) in ensurePendingInvalidationList() 49 addResult.storedValue->value = adoptPtrWillBeNoop(new InvalidationList); in ensurePendingInvalidationList() 50 return *addResult.storedValue->value; in ensurePendingInvalidationList()
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/ |
D | devtools.js | 11 auditResults.addResult("No broken links", 22 auditResults.addResult("Broken links found (" +
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | Security2Test.java | 307 int addResult = Security.addProvider(test); in test_removeProviderLjava_lang_String() local 308 assertTrue("Failed to add provider", addResult != -1); in test_removeProviderLjava_lang_String() 320 addResult = Security.addProvider(entrust); in test_removeProviderLjava_lang_String() 321 assertTrue("Failed to add provider", addResult != -1); in test_removeProviderLjava_lang_String()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/ |
D | SimpleFontDataSkia.cpp | 260 …WTF::HashMap<String, bool>::AddResult addResult = m_combiningCharacterSequenceSupport->add(String(… in canRenderCombiningCharacterSequence() local 261 if (!addResult.isNewEntry) in canRenderCombiningCharacterSequence() 262 return addResult.storedValue->value; in canRenderCombiningCharacterSequence() 275 addResult.storedValue->value = true; in canRenderCombiningCharacterSequence()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/ |
D | SimpleFontDataCoreText.cpp | 46 …HashMap<unsigned, RetainPtr<CFDictionaryRef> >::AddResult addResult = m_CFStringAttributes.add(key… in getCFStringAttributes() local 47 RetainPtr<CFDictionaryRef>& attributesDictionary = addResult.storedValue->value; in getCFStringAttributes() 48 if (!addResult.isNewEntry) in getCFStringAttributes()
|
/external/deqp/modules/gles31/functional/ |
D | es31fDebugTests.cpp | 457 m_results.addResult(QP_TEST_RESULT_FAIL, "Message was not reported as expected"); in verifyMessageExists() 462 …m_results.addResult(QP_TEST_RESULT_QUALITY_WARNING, "Verification accuracy is lacking without a de… in verifyMessageExists() 477 m_results.addResult(QP_TEST_RESULT_FAIL, "Incorrect message source"); in verifyMessageGroup() 484 m_results.addResult(QP_TEST_RESULT_FAIL, "Incorrect message type"); in verifyMessageGroup() 498 m_results.addResult(QP_TEST_RESULT_QUALITY_WARNING, "Empty message"); in verifyMessageString() 523 m_results.addResult(QP_TEST_RESULT_FAIL, "Incorrect message id"); in verifyMessage() 530 m_results.addResult(QP_TEST_RESULT_FAIL, "Incorrect message severity"); in verifyMessage() 681 m_results.addResult(QP_TEST_RESULT_FAIL, "Error was not reported as expected"); in expectMessage() 686 …m_results.addResult(QP_TEST_RESULT_QUALITY_WARNING, "Verification accuracy is lacking without a de… in expectMessage() 775 m_results.addResult(QP_TEST_RESULT_FAIL, "Incorrect error was reported"); in expectError() [all …]
|
D | es31fNegativeTestShared.cpp | 71 m_results.addResult(QP_TEST_RESULT_FAIL, msg); in fail()
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | EventPath.cpp | 173 … TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(treeScope, nullptr); in ensureTreeScopeEventContext() local 174 isNewEntry = addResult.isNewEntry; in ensureTreeScopeEventContext() 176 addResult.storedValue->value = TreeScopeEventContext::create(*treeScope); in ensureTreeScopeEventContext() 177 treeScopeEventContext = addResult.storedValue->value.get(); in ensureTreeScopeEventContext()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | TextAutosizer.cpp | 727 …SuperclusterMap::AddResult addResult = m_superclusters.add(fingerprint, PassOwnPtr<Supercluster>()… in getSupercluster() local 728 if (!addResult.isNewEntry) in getSupercluster() 729 return addResult.storedValue->value.get(); in getSupercluster() 732 addResult.storedValue->value = adoptPtr(supercluster); in getSupercluster() 1041 …ReverseFingerprintMap::AddResult addResult = m_blocksForFingerprint.add(fingerprint, PassOwnPtr<Bl… in addTentativeClusterRoot() local 1042 if (addResult.isNewEntry) in addTentativeClusterRoot() 1043 addResult.storedValue->value = adoptPtr(new BlockSet); in addTentativeClusterRoot() 1044 addResult.storedValue->value->add(block); in addTentativeClusterRoot()
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
D | SQLResultSetRowList.h | 50 void addResult(const SQLValue& result) { m_result.append(result); } in addResult() function
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | AtomicString.cpp | 116 HashSet<StringImpl*>::AddResult addResult = atomicStrings().add<HashTranslator>(value); in addToStringTable() local 120 return addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue; in addToStringTable()
|