HomeSort by relevance Sort by last modified time
    Searched defs:AddResult (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/skia/gm/
display_json_results.py 43 def AddResult(self, testname):
103 accumulator.AddResult(result)
  /external/skia/gm/
display_json_results.py 43 def AddResult(self, testname):
103 accumulator.AddResult(result)
  /external/chromium_org/tools/perf/metrics/
memory.py 149 def AddResult(value_name_memory, value_name_trace):
176 AddResult('VM', 'vm_%s_size' % chart_trace_name)
177 AddResult('WorkingSetSize', 'vm_%s_%s_size' % (metric, chart_trace_name))
178 AddResult('PrivateDirty', 'vm_private_dirty_%s' % chart_trace_name)
179 AddResult('ProportionalSetSize',
181 AddResult('SharedDirty', 'vm_shared_dirty_%s' % chart_trace_name)
182 AddResult('VMPeak', 'vm_peak_size')
183 AddResult('WorkingSetSizePeak', '%s_peak_size' % metric)
  /external/chromium_org/v8/tools/testrunner/local/
perfdata.py 39 def AddResult(self, result):
88 entry.AddResult(duration)
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashCountedSet.h 45 typedef typename ImplType::AddResult AddResult;
69 AddResult add(const ValueType&);
90 inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value)
92 AddResult result = m_impl.add(value, 0);
HashSet.h 56 typedef typename HashTableType::AddResult AddResult;
89 AddResult add(ValuePassInType);
97 template<typename HashTranslator, typename T> AddResult add(const T&);
190 inline typename HashSet<T, U, V, W>::AddResult HashSet<T, U, V, W>::add(ValuePassInType value)
197 inline typename HashSet<Value, HashFunctions, Traits, Allocator>::AddResult
HashMap.h 83 typedef typename HashTableType::AddResult AddResult;
121 AddResult set(KeyPeekInType, MappedPassInType);
126 AddResult add(KeyPeekInType, MappedPassInType);
151 template<typename HashTranslator, typename T> AddResult add(const T&, MappedPassInType);
158 AddResult inlineAdd(KeyPeekInType, MappedPassInReferenceType);
354 typename HashMap<T, U, V, W, X, Y>::AddResult
361 typename HashMap<T, U, V, W, X, Y>::AddResult
364 AddResult result = inlineAdd(key, mapped);
374 typename HashMap<T, U, V, W, X, Y>::AddResult
    [all...]
HashTable.h 289 // the AddResult destructor takes place after a modification. You
290 // may need to limit the scope of the AddResult.
358 typedef HashTableAddResult<HashTable, ValueType> AddResult;
431 AddResult add(ValuePassInType value)
439 template<typename HashTranslator, typename T, typename Extra> AddResult add(const T& key, const Extra&);
440 template<typename HashTranslator, typename T, typename Extra> AddResult addPassingHashCode(const T& key, const Extra&);
759 typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::add(const T& key, const Extra& extra)
    [all...]
LinkedHashSet.h 164 struct AddResult {
165 AddResult(const typename ImplType::AddResult& hashTableAddResult)
223 AddResult add(ValuePeekInType);
233 AddResult appendOrMoveToLast(ValuePeekInType);
237 AddResult prependOrMoveToFirst(ValuePeekInType);
239 AddResult insertBefore(ValuePeekInType beforeValue, ValuePeekInType newValue);
240 AddResult insertBefore(iterator it, ValuePeekInType newValue) { return m_impl.template add<NodeHashFunctions>(newValue, it.node()); }
622 typename LinkedHashSet<Value, HashFunctions, Traits, Allocator>::AddResult LinkedHashSet<Value, HashFunctions, Traits, Allocator>::add(ValuePeekInType value)
630 typename ImplType::AddResult result = m_impl.template add<NodeHashFunctions>(value, &m_anchor)
    [all...]
ListHashSet.h 115 typedef HashTableAddResult<ValueType> AddResult;
159 AddResult add(ValuePassInType);
169 AddResult appendOrMoveToLast(ValuePassInType);
173 AddResult prependOrMoveToFirst(ValuePassInType);
175 AddResult insertBefore(ValuePeekInType beforeValue, ValuePassInType newValue);
176 AddResult insertBefore(iterator, ValuePassInType);
804 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::add(ValuePassInType value)
811 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(value, *this->allocator());
814 return AddResult(*result.storedValue, result.isNewEntry);
824 typename ListHashSet<T, inlineCapacity, U, V>::AddResult ListHashSet<T, inlineCapacity, U, V>::appendOrMoveToLast(ValuePassInType value
    [all...]
  /external/chromium_org/build/android/pylib/base/
base_test_result.py 126 def AddResult(self, result):
142 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 126 unsigned AddResult = 0;
127 if (Flags == KEYALL) AddResult = 2;
128 else if (LangOpts.CPlusPlus && (Flags & KEYCXX)) AddResult = 2;
129 else if (LangOpts.CPlusPlus11 && (Flags & KEYCXX11)) AddResult = 2;
130 else if (LangOpts.C99 && (Flags & KEYC99)) AddResult = 2;
131 else if (LangOpts.GNUKeywords && (Flags & KEYGNU)) AddResult = 1;
132 else if (LangOpts.MicrosoftExt && (Flags & KEYMS)) AddResult = 1;
133 else if (LangOpts.Borland && (Flags & KEYBORLAND)) AddResult = 1;
134 else if (LangOpts.Bool && (Flags & BOOLSUPPORT)) AddResult = 2;
135 else if (LangOpts.Half && (Flags & HALFSUPPORT)) AddResult = 2
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 305 void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding,
309 void AddResult(Result R);
931 void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 160 mutable bool AddResult;
166 : Reader(Reader), New(nullptr), Existing(nullptr), AddResult(false) {}
169 : Reader(Reader), New(New), Existing(Existing), AddResult(true) { }
173 AddResult(Other.AddResult)
175 Other.AddResult = false;
182 void suppress() { AddResult = false; }
    [all...]
ASTReader.cpp     [all...]

Completed in 513 milliseconds