Searched refs:addResult (Results 1 - 23 of 23) sorted by relevance

/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-validate-input.js23 addResult(r);
28 addResult(r);
45 addResult(r);
52 addResult(r);
57 addResult(r);
84 function addResult(r) function
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-validate-input.js23 addResult(r);
28 addResult(r);
45 addResult(r);
52 addResult(r);
57 addResult(r);
84 function addResult(r) function
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DSimpleFontDataCoreText.cpp45 pair<HashMap<unsigned, RetainPtr<CFDictionaryRef> >::iterator, bool> addResult = m_CFStringAttributes.add(key, RetainPtr<CFDictionaryRef>()); local
46 RetainPtr<CFDictionaryRef>& attributesDictionary = addResult.first->second;
47 if (!addResult.second)
H A DComplexTextControllerATSUI.cpp280 pair<HashMap<unsigned, ATSUStyle>::iterator, bool> addResult = fontData->m_ATSUStyleMap.add(key, 0); local
281 ATSUStyle& atsuStyle = addResult.first->second;
282 if (!addResult.second)
288 fontData->m_ATSUStyleMap.remove(addResult.first);
/external/webkit/Source/WebCore/storage/
H A DSQLResultSetRowList.h47 void addResult(const SQLValue& result) { m_result.append(result); } function in class:WebCore::SQLResultSetRowList
H A DStorageMap.cpp136 pair<HashMap<String, String>::iterator, bool> addResult = m_map.add(key, value); local
137 if (!addResult.second)
138 addResult.first->second = value;
H A DSQLStatementSync.cpp98 rows->addResult(statement.getColumnValue(i));
H A DSQLStatement.cpp120 rows->addResult(statement.getColumnValue(i));
/external/webkit/Source/WebCore/dom/
H A DDocumentOrderedMap.cpp72 pair<Map::iterator, bool> addResult = m_map.add(key, element); local
73 if (addResult.second)
79 m_map.remove(addResult.first);
H A DQualifiedName.cpp59 pair<QNameSet::iterator, bool> addResult = gNameCache->add<QualifiedNameComponents, QNameComponentsTranslator>(components); local
60 m_impl = *addResult.first;
61 if (!addResult.second)
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.h48 static void addResult(JNIEnv* env, jobject resultlist, const btVector3 hitnormal,const btVector3 m_hitPointWorld,const btScalar m_hitFraction,btCollisionObject* hitobject);
H A Dcom_jme3_bullet_PhysicsSpace.cpp429 jmeBulletUtil::addResult(env, resultlist, m_hitNormalWorld, m_hitPointWorld, rayResult.m_hitFraction, rayResult.m_collisionObject);
H A DjmeBulletUtil.cpp310 void jmeBulletUtil::addResult(JNIEnv* env, jobject resultlist, btVector3 hitnormal, btVector3 m_hitPointWorld, btScalar m_hitFraction, btCollisionObject* hitobject) { function in class:jmeBulletUtil
/external/webkit/Source/JavaScriptCore/runtime/
H A DIdentifier.cpp130 pair<HashSet<StringImpl*>::iterator, bool> addResult = identifierTable.add<const char*, IdentifierCStringTranslator>(c);
134 RefPtr<StringImpl> addedString = addResult.second ? adoptRef(*addResult.first) : *addResult.first;
226 pair<HashSet<StringImpl*>::iterator, bool> addResult = globalData->identifierTable->add<UCharBuffer, IdentifierUCharBufferTranslator>(buf); local
230 return addResult.second ? adoptRef(*addResult.first) : *addResult.first;
/external/webkit/Source/WebCore/loader/
H A DCrossOriginPreflightResultCache.cpp163 pair<CrossOriginPreflightResultHashMap::iterator, bool> addResult = m_preflightHashMap.add(make_pair(origin, url), resultPtr); local
164 if (!addResult.second) {
166 addResult.first->second = resultPtr;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java307 int addResult = Security.addProvider(test);
308 assertTrue("Failed to add provider", addResult != -1);
320 addResult = Security.addProvider(entrust);
321 assertTrue("Failed to add provider", addResult != -1);
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionAuditCategory.js83 addResult: function(displayName, description, severity, details)
H A DExtensionAPI.js299 addResult: function(displayName, description, severity, details)
301 // shorthand for specifying details directly in addResult().
H A DExtensionServer.js360 auditResult.addResult(request.displayName, request.description, request.severity, request.details);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicString.cpp80 pair<HashSet<StringImpl*>::iterator, bool> addResult = stringTable().add<T, HashTranslator>(value); local
84 return addResult.second ? adoptRef(*addResult.first) : *addResult.first;
/external/webkit/Source/WebCore/platform/cf/
H A DBinaryPropertyList.cpp227 pair<IntegerArrayMap::iterator, bool> addResult = m_integerArrays.add(IntegerArray(integers, size), 0); local
228 if (!addResult.second)
232 addResult.first->second = m_currentObjectReference++;
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp2140 pair<LayerMap::iterator, bool> addResult = clones->add(cloneID, dummy); local
2141 if (!addResult.second) {
2143 resultLayer = addResult.first->second.get();
2149 addResult.first->second = resultLayer;
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKView.mm703 pair<ValidationMap::iterator, bool> addResult = _data->_validationMap.add(commandName, ValidationVector());
704 addResult.first->second.append(item);
705 if (addResult.second) {

Completed in 4104 milliseconds