Searched refs:AddResult (Results 1 - 25 of 65) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/platform/network/
H A DHTTPHeaderMap.h55 AddResult add(const AtomicString& name, const AtomicString& value);
60 AddResult add(const char* name, const AtomicString& value);
H A DHTTPHeaderMap.cpp75 HTTPHeaderMap::AddResult HTTPHeaderMap::add(const AtomicString& name, const AtomicString& value)
111 HTTPHeaderMap::AddResult HTTPHeaderMap::add(const char* name, const AtomicString& value)
/external/chromium_org/build/android/pylib/base/
H A Dbase_test_result_unittest.py23 self.tr.AddResult(self.p1)
24 self.tr.AddResult(other_p1)
25 self.tr.AddResult(self.p2)
45 tr2.AddResult(other_p1)
46 tr2.AddResult(f2)
H A Dbase_test_result.py114 def AddResult(self, result): member in class:TestRunResults
130 self.AddResult(t)
H A Dtest_dispatcher_unittest.py38 results.AddResult(
52 results.AddResult(
66 results.AddResult(base_test_result.BaseTestResult(
70 results.AddResult(base_test_result.BaseTestResult(
/external/clang/lib/Basic/
H A DIdentifierTable.cpp123 unsigned AddResult = 0; local
124 if (Flags == KEYALL) AddResult = 2;
125 else if (LangOpts.CPlusPlus && (Flags & KEYCXX)) AddResult = 2;
126 else if (LangOpts.CPlusPlus11 && (Flags & KEYCXX11)) AddResult = 2;
127 else if (LangOpts.C99 && (Flags & KEYC99)) AddResult = 2;
128 else if (LangOpts.GNUKeywords && (Flags & KEYGNU)) AddResult = 1;
129 else if (LangOpts.MicrosoftExt && (Flags & KEYMS)) AddResult = 1;
130 else if (LangOpts.Borland && (Flags & KEYBORLAND)) AddResult = 1;
131 else if (LangOpts.Bool && (Flags & BOOLSUPPORT)) AddResult = 2;
132 else if (LangOpts.WChar && (Flags & WCHARSUPPORT)) AddResult
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp305 void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding,
309 void AddResult(Result R);
932 void ResultBuilder::AddResult(Result R, DeclContext *CurContext, function in class:ResultBuilder
942 AddResult(Result(Using->getTargetDecl(),
1015 void ResultBuilder::AddResult(Result R) { function in class:ResultBuilder
1265 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
1274 Results.AddResult(Result("short", CCP_Type));
1275 Results.AddResult(Result("long", CCP_Type));
1276 Results.AddResult(Result("signed", CCP_Type));
1277 Results.AddResult(Resul
[all...]
/external/chromium_org/build/android/pylib/host_driven/
H A Dtest_runner.py100 results.AddResult(HostDrivenExceptionTestResult(
114 results.AddResult(HostDrivenExceptionTestResult(
129 results.AddResult(HostDrivenExceptionTestResult(
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRefPtrHashMap.h63 typedef typename HashTableType::AddResult AddResult; typedef in class:WTF::HashMap
90 AddResult set(const KeyType&, MappedPassInType);
91 AddResult set(RawKeyType, MappedPassInType);
96 AddResult add(const KeyType&, MappedPassInType);
97 AddResult add(RawKeyType, MappedPassInType);
108 AddResult inlineAdd(const KeyType&, MappedPassInReferenceType);
109 AddResult inlineAdd(RawKeyType, MappedPassInReferenceType);
199 inline typename HashMap<RefPtr<T>, U, V, W, X>::AddResult
206 inline typename HashMap<RefPtr<T>, U, V, W, X>::AddResult
[all...]
H A DHashSet.h52 typedef typename HashTableType::AddResult AddResult; typedef in class:WTF::HashSet
76 AddResult add(const ValueType&);
84 template<typename HashTranslator, typename T> AddResult add(const T&);
176 inline typename HashSet<T, U, V>::AddResult HashSet<T, U, V>::add(const ValueType& value)
183 inline typename HashSet<Value, HashFunctions, Traits>::AddResult
H A DHashCountedSet.h39 typedef typename ImplType::AddResult AddResult; typedef in class:WTF::HashCountedSet
63 AddResult add(const ValueType&);
154 inline typename HashCountedSet<Value, HashFunctions, Traits>::AddResult HashCountedSet<Value, HashFunctions, Traits>::add(const ValueType &value)
156 AddResult result = m_impl.add(value, 0);
H A DListHashSet.h84 typedef HashTableAddResult<iterator> AddResult; typedef in class:WTF::ListHashSet
132 AddResult add(const ValueType&);
136 AddResult appendOrMoveToLast(const ValueType&);
140 AddResult prependOrMoveToFirst(const ValueType&);
142 AddResult insertBefore(const ValueType& beforeValue, const ValueType& newValue);
143 AddResult insertBefore(iterator, const ValueType&);
733 typename ListHashSet<T, inlineCapacity, U>::AddResult ListHashSet<T, inlineCapacity, U>::add(const ValueType &value)
735 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, m_allocator.get());
738 return AddResult(makeIterator(*result.iterator), result.isNewEntry);
742 typename ListHashSet<T, inlineCapacity, U>::AddResult ListHashSe
[all...]
H A DHashMap.h73 typedef typename HashTableType::AddResult AddResult; typedef in class:WTF::HashMap
102 AddResult set(const KeyType&, MappedPassInType);
107 AddResult add(const KeyType&, MappedPassInType);
130 template<typename HashTranslator, typename T> AddResult add(const T&, MappedPassInType);
135 AddResult inlineAdd(const KeyType&, MappedPassInReferenceType);
337 typename HashMap<T, U, V, W, X>::AddResult
344 typename HashMap<T, U, V, W, X>::AddResult
347 AddResult result = inlineAdd(key, mapped);
357 typename HashMap<T, U, V, W, X>::AddResult
[all...]
H A DHashTable.h224 typedef HashTableAddResult<iterator> AddResult; typedef in class:WTF::HashTable
294 AddResult add(const ValueType& value) { return add<IdentityTranslatorType>(Extractor::extract(value), value); }
299 template<typename HashTranslator, typename T, typename Extra> AddResult add(const T& key, const Extra&);
300 template<typename HashTranslator, typename T, typename Extra> AddResult addPassingHashCode(const T& key, const Extra&);
638 typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::add(const T& key, const Extra& extra)
672 return AddResult(makeKnownGoodIterator(entry), false);
683 return AddResult(makeKnownGoodIterator(entry), false);
716 AddResult result(find(enteredKey), true);
721 return AddResult(makeKnownGoodIterator(entry), true);
726 typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::AddResult HashTabl
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/tests/
H A DListHashSet.cpp55 ListHashSet<int>::AddResult result = list.appendOrMoveToLast(1);
79 ListHashSet<int>::AddResult result = list.add(1);
116 ListHashSet<int>::AddResult result = list.prependOrMoveToFirst(1);
140 ListHashSet<int>::AddResult result = list.add(1);
/external/skia/gm/
H A Ddisplay_json_results.py43 def AddResult(self, testname): member in class:ResultAccumulator
103 accumulator.AddResult(result)
/external/chromium_org/build/android/pylib/gtest/
H A Dtest_runner.py116 results.AddResult(base_test_result.BaseTestResult(
120 results.AddResult(base_test_result.BaseTestResult(
125 results.AddResult(base_test_result.BaseTestResult(
135 results.AddResult(base_test_result.BaseTestResult(
142 results.AddResult(base_test_result.BaseTestResult(
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCustomElementUpgradeCandidateMap.cpp51 UpgradeCandidateMap::AddResult result = m_upgradeCandidates.add(element, descriptor);
101 DestructionObserverMap::AddResult result = destructionObservers().add(element, observer);
H A DIdTargetObserverRegistry.cpp43 IdToObserverSetMap::AddResult result = m_registry.add(id.impl(), nullptr);
H A DNodeRareData.h86 NodeListAtomicNameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, name), 0);
99 NodeListAtomicNameCacheMap::AddResult result = m_atomicNameCaches.add(namedNodeListKey(collectionType, starAtom), 0);
117 NodeListNameCacheMap::AddResult result = m_nameCaches.add(namedNodeListKey(collectionType, name), 0);
129 TagNodeListCacheNS::AddResult result = m_tagNodeListCacheNS.add(name, 0);
/external/chromium_org/v8/tools/testrunner/network/
H A Dperfdata.py39 def AddResult(self, result): member in class:PerfDataEntry
88 entry.AddResult(duration)
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
H A DSimpleFontDataCoreText.cpp37 HashMap<unsigned, RetainPtr<CFDictionaryRef> >::AddResult addResult = m_CFStringAttributes.add(key, RetainPtr<CFDictionaryRef>());
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DWidthCache.h160 SingleCharMap::AddResult addResult = m_singleCharMap.add(run[0], entry);
170 Map::AddResult addResult = m_map.add(smallStringKey, entry);
/external/chromium_org/build/android/pylib/monkey/
H A Dtest_runner.py76 results.AddResult(result)
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLIdentifier.cpp100 IdentifierTable::AddResult addResult = table.add(hash, name);

Completed in 367 milliseconds

123