HomeSort by relevance Sort by last modified time
    Searched defs:AddResult (Results 1 - 18 of 18) 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 171 def AddResult(value_name_memory, value_name_trace, description):
198 AddResult('VM', 'vm_%s_size' % chart_trace_name,
200 AddResult('WorkingSetSize', 'vm_%s_%s_size' % (metric, chart_trace_name),
203 AddResult('PrivateDirty', 'vm_private_dirty_%s' % chart_trace_name,
211 AddResult('ProportionalSetSize',
220 AddResult('SharedDirty', 'vm_shared_dirty_%s' % chart_trace_name,
223 AddResult('VMPeak', 'vm_peak_size',
226 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/platform/network/
HTTPHeaderMap.h 55 typedef MapType::AddResult AddResult;
64 AddResult set(const AtomicString& k, const AtomicString& v) { return m_headers.set(k, v); }
65 AddResult add(const AtomicString& k, const AtomicString& v) { return m_headers.add(k, v); }
73 AddResult add(const char* name, const AtomicString& value);
  /external/chromium_org/build/android/pylib/base/
base_test_result.py 134 def AddResult(self, result):
150 self.AddResult(t)
  /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 308 // the AddResult destructor takes place after a modification. You
309 // may need to limit the scope of the AddResult.
377 typedef HashTableAddResult<HashTable, ValueType> AddResult;
450 AddResult add(ValuePassInType value)
458 template<typename HashTranslator, typename T, typename Extra> AddResult add(const T& key, const Extra&);
459 template<typename HashTranslator, typename T, typename Extra> AddResult addPassingHashCode(const T& key, const 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()); }
614 typename LinkedHashSet<Value, HashFunctions, Traits, Allocator>::AddResult LinkedHashSet<Value, HashFunctions, Traits, Allocator>::add(ValuePeekInType value)
622 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/tools/perf/benchmarks/
dromaeo.py 74 def AddResult(name, value):
83 AddResult('%s/%s' % (data['collection'], data['name']),
93 AddResult(key, math.exp(value['sum'] / value['count']))
  /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 211 milliseconds