Searched defs:Add (Results 151 - 175 of 310) sorted by relevance

1234567891011>>

/external/chromium_org/sdch/open-vcdiff/src/
H A Dencodetable.cc242 void VCDiffCodeTableWriter::Add(const char* data, size_t size) { function in class:open_vcdiff::VCDiffCodeTableWriter
328 // Add first element: Win_Indicator
/external/chromium_org/skia/ext/
H A Dpixel_ref_utils.cc33 void Add(SkPixelRef* pixel_ref, const SkRect& rect) { function in class:skia::__anon10676::DiscardablePixelRefSet
340 pixel_ref_set_->Add(bm.pixelRef(), paint_rect);
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_util.h271 // Add an item to the set. Returns false iff the item was already in it.
272 bool Add(T item);
282 bool Set<T>::Add(T item) { function in class:crazy::Set
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_impl.h185 void Add(const CompactionStats& c) { function in struct:leveldb::DBImpl::CompactionStats
H A Dmemtable.cc82 void MemTable::Add(SequenceNumber s, ValueType type, function in class:leveldb::MemTable
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_builder.cc92 void TableBuilder::Add(const Slice& key, const Slice& value) { function in class:leveldb::TableBuilder
105 r->index_block.Add(r->last_key, Slice(handle_encoding));
115 r->data_block.Add(key, value);
217 // Add mapping from "filter.Name" to location of filter data
222 meta_index_block.Add(key, handle_encoding);
225 // TODO(postrelease): Add stats and other meta blocks
235 r->index_block.Add(r->last_key, Slice(handle_encoding));
/external/chromium_org/third_party/re2/re2/
H A Dprefilter_tree.cc74 void PrefilterTree::Add(Prefilter *f) { function in class:re2::PrefilterTree
76 LOG(DFATAL) << "Add after Compile.";
172 // Add the top level nodes of each regexp prefilter.
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.cpp123 int32_t SkFloat::Add(int32_t packed_a, int32_t packed_b) function in class:SkFloat
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dinternal_logging.cc68 bool Add(const LogItem& item);
87 && state.Add(a)
88 && state.Add(b)
89 && state.Add(c)
90 && state.Add(d);
123 bool Logger::Add(const LogItem& item) { function in class:tcmalloc::Logger
H A Dprofiledata.cc260 void ProfileData::Add(int depth, const void* const* stack) { function in class:ProfileData
266 RAW_CHECK(depth > 0, "ProfileData::Add depth <= 0");
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dinternal_logging.cc67 bool Add(const LogItem& item);
86 && state.Add(a)
87 && state.Add(b)
88 && state.Add(c)
89 && state.Add(d);
122 bool Logger::Add(const LogItem& item) { function in class:tcmalloc::Logger
H A Dprofiledata.cc260 void ProfileData::Add(int depth, const void* const* stack) { function in class:ProfileData
266 RAW_CHECK(depth > 0, "ProfileData::Add depth <= 0");
/external/chromium_org/third_party/webrtc/base/
H A Dmessagequeue.cc53 void MessageQueueManager::Add(MessageQueue *message_queue) { function in class:rtc::MessageQueueManager
124 MessageQueueManager::Add(this);
277 // Add the message to the end of the queue
298 // Add to the priority queue. Gets sorted soonest first.
/external/chromium_org/tools/gn/
H A Dtrace.cc29 void Add(TraceItem* item) { function in class:__anon16495::TraceLog
175 trace_log->Add(item);
/external/chromium_org/ui/base/models/
H A Dtree_node_model.h32 // you will need to do it yourself. This includes the following methods: Add,
41 // root->Add(new TreeNodeWithValue<int>(ASCIIToUTF16("child 1"), 0));
42 // root->Add(new TreeNodeWithValue<int>(ASCIIToUTF16("child 2"), 1));
74 virtual void Add(NodeType* node, int index) { function in class:ui::TreeNode
109 Add(children[i], static_cast<int>(i));
221 void Add(NodeType* parent, NodeType* node, int index) { function in class:ui::TreeNodeModel
223 parent->Add(node, index);
/external/chromium_org/v8/src/
H A Dbootstrapper.h42 void Add(Vector<const char> name, Handle<SharedFunctionInfo> shared) { function in class:v8::internal::BASE_EMBEDDED
H A Ddata-flow.h105 void Add(int i) { function in class:v8::internal::BitVector
217 void Add(int value, Zone* zone) { function in class:v8::internal::BASE_EMBEDDED
219 bits_->Add(value);
224 Add(it.Current(), zone);
H A Dinterface.h61 // Add a name to the list of exports. If it already exists, unify with
63 void Add(const AstRawString* name, Interface* interface, Zone* zone, function in class:v8::internal::Interface
H A Dlist-inl.h17 void List<T, P>::Add(const T& element, P alloc) { function in class:v8::internal::List
79 for (int i = 0; i < count; i++) Add(value, alloc);
94 Add(elm, alloc);
H A Dunique.h151 // Add a new element to this unique set. Mutates this set. O(|this|).
152 void Add(Unique<T> uniq, Zone* zone) { function in class:v8::internal::FINAL
/external/chromium_org/v8/test/cctest/
H A Dtest-compiler.cc92 static double Add(Isolate* isolate, int x, int y) { function
104 TEST(Add) {
107 CHECK_EQ(5.0, Add(CcTest::i_isolate(), 2, 3));
/external/clang/lib/Driver/
H A DSanitizerArgs.cpp50 unsigned Add, Remove; local
51 if (!parse(D, Args, *I, Add, Remove, true))
55 AllAdd |= expandGroups(Add);
59 Add &= ~AllRemove;
61 // in Add are those which have been explicitly enabled. Diagnose them.
62 Add = filterUnsupportedKinds(TC, Add, Args, *I, /*DiagnoseErrors=*/true,
64 Add = expandGroups(Add);
66 Add
269 parse(const Driver &D, const llvm::opt::ArgList &Args, const llvm::opt::Arg *A, unsigned &Add, unsigned &Remove, bool DiagnoseErrors) argument
291 unsigned Add, Remove; local
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp5.cpp63 constexpr int Add(int a, int b, int c) { return a + b + c; } function in namespace:PotentialConstant
64 constexpr int FunctionArgs(int a) { return Add(a, ng, a); } // expected-error {{never produces}} expected-note {{read}}
/external/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp32 // Add breakpoint site to the list. However, if the element already exists in the
36 BreakpointSiteList::Add(const BreakpointSiteSP &bp) function in class:BreakpointSiteList
229 bp_site_list.Add (prev_bp);
237 bp_site_list.Add ((*pos).second);
H A DWatchpointList.cpp32 // Add a watchpoint to the list.
34 WatchpointList::Add (const WatchpointSP &wp_sp, bool notify) function in class:WatchpointList

Completed in 961 milliseconds

1234567891011>>