/external/skia/gm/ |
display_json_results.py | 43 def AddResult(self, testname): 103 accumulator.AddResult(result)
|
/external/chromium_org/v8/tools/testrunner/network/ |
perfdata.py | 39 def AddResult(self, result): 88 entry.AddResult(duration)
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
HashCountedSet.h | 39 typedef typename ImplType::AddResult AddResult; 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);
|
HashSet.h | 52 typedef typename HashTableType::AddResult AddResult; 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
|
RefPtrHashMap.h | 63 typedef typename HashTableType::AddResult AddResult; 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...] |
HashMap.h | 74 typedef typename HashTableType::AddResult AddResult; 103 AddResult set(const KeyType&, MappedPassInType); 108 AddResult add(const KeyType&, MappedPassInType); 131 template<typename HashTranslator, typename T> AddResult add(const T&, MappedPassInType); 136 AddResult inlineAdd(const KeyType&, MappedPassInReferenceType); 338 typename HashMap<T, U, V, W, X>::AddResult 345 typename HashMap<T, U, V, W, X>::AddResult 348 AddResult result = inlineAdd(key, mapped); 358 typename HashMap<T, U, V, W, X>::AddResult [all...] |
ListHashSet.h | 84 typedef HashTableAddResult<iterator> AddResult; 130 AddResult add(const ValueType&); 134 AddResult appendOrMoveToLast(const ValueType&); 138 AddResult prependOrMoveToFirst(const ValueType&); 140 AddResult insertBefore(const ValueType& beforeValue, const ValueType& newValue); 141 AddResult insertBefore(iterator, const ValueType&); 732 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 ListHashSet<T, inlineCapacity, U>::appendOrMoveToLast(const ValueType &value [all...] |
HashTable.h | 225 typedef HashTableAddResult<iterator> AddResult; 297 AddResult add(const ValueType& value) { return add<IdentityTranslatorType>(Extractor::extract(value), value); } 302 template<typename HashTranslator, typename T, typename Extra> AddResult add(const T& key, const Extra&); 303 template<typename HashTranslator, typename T, typename Extra> AddResult addPassingHashCode(const T& key, const Extra&); 641 typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::add(const T& key, const Extra& extra) 675 return AddResult(makeKnownGoodIterator(entry), false); 686 return AddResult(makeKnownGoodIterator(entry), false); 719 AddResult result(find(enteredKey), true); 724 return AddResult(makeKnownGoodIterator(entry), true); 729 typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::addPassingHashCode(const T& ke (…) [all...] |
/external/chromium_org/build/android/pylib/base/ |
base_test_result.py | 114 def AddResult(self, result): 130 self.AddResult(t)
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITTestBase.h | 103 Value *AddResult = Builder.CreateAdd(Arg1, Arg2); 105 endFunctionWithRet(Result, AddResult);
|
/external/clang/lib/Basic/ |
IdentifierTable.cpp | 123 unsigned AddResult = 0; 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 = 2 [all...] |
/external/clang/lib/Serialization/ |
ASTReaderDecl.cpp | 157 mutable bool AddResult; 163 : Reader(Reader), New(0), Existing(0), AddResult(false) { } 166 : Reader(Reader), New(New), Existing(Existing), AddResult(true) { } 170 AddResult(Other.AddResult) 172 Other.AddResult = false; 179 void suppress() { AddResult = false; } [all...] |
ASTReader.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaCodeComplete.cpp | 305 void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding, 309 void AddResult(Result R); 932 void ResultBuilder::AddResult(Result R, DeclContext *CurContext, [all...] |