HomeSort by relevance Sort by last modified time
    Searched defs:Add (Results 126 - 150 of 370) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/v8/src/
bootstrapper.h 42 void Add(Vector<const char> name, Handle<SharedFunctionInfo> shared) {
collector.h 40 // Add a single element.
41 inline void Add(T value) {
50 // Add a block of contiguous elements and return a Vector backed by the
68 // Add a contiguous block of elements and return a vector backed
162 chunks_.Add(current_chunk_.SubVector(0, index_));
234 this->chunks_.Add(this->current_chunk_.SubVector(0, sequence_start_));
list-inl.h 18 void List<T, P>::Add(const T& element, P alloc) {
82 for (int i = 0; i < count; i++) Add(value, alloc);
97 Add(elm, alloc);
small-pointer-list.h 39 list->Add(single_value(), zone);
63 void Add(T* pointer, Zone* zone) {
71 list->Add(single_value(), zone);
72 list->Add(pointer, zone);
77 list()->Add(pointer, zone);
  /external/webrtc/talk/media/base/
codec.cc 55 void FeedbackParams::Add(const FeedbackParam& param) {
155 feedback_params.Add(param);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 162 Matrix& Add(const Matrix& operand) {
173 Matrix& Add(const Matrix& lhs, const Matrix& rhs) {
175 return Add(rhs);
  /external/webrtc/webrtc/video/
receive_statistics_proxy.cc 113 decode_time_counter_.Add(decode_ms);
116 delay_counter_.Add(target_delay_ms + rtt_ms / 2);
174 render_width_counter_.Add(width);
175 render_height_counter_.Add(height);
202 qp_counters_.vp8.Add(encoded_image.qp_);
206 void ReceiveStatisticsProxy::SampleCounter::Add(int sample) {
  /frameworks/av/drm/mediacas/plugins/clearkey/
ecm.cpp 121 status_t EcmContainer::Add(const EcmDescriptor& descriptor) {
  /prebuilts/go/darwin-x86/src/expvar/
expvar.go 60 func (v *Int) Add(delta int64) {
82 // Add adds delta to v.
83 func (v *Float) Add(delta float64) {
162 func (v *Map) Add(key string, delta int64) {
178 // Add to Int; ignore otherwise.
180 iv.Add(delta)
201 // Add to Float; ignore otherwise.
203 iv.Add(delta)
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 36 func (t *Arith) Add(args *Args, reply *Reply) error {
68 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "123"}`)
102 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "\u%04d", "params": [{"A": %d, "B": %d}]}`, i, i, i+1)
132 err := client.Call("Arith.Add", args, reply)
134 t.Errorf("Add: expected no error but got string %q", err.Error())
137 t.Errorf("Add: got %d expected %d", reply.C, args.A+args.B)
155 addCall := client.Go("Arith.Add", args, addReply, nil)
159 t.Errorf("Add: expected no error but got string %q", addCall.Error.Error())
162 t.Errorf("Add: got %d expected %d", addReply.C, args.A+args.B)
201 err := client.Call("Arith.Add", args, reply
    [all...]
  /prebuilts/go/linux-x86/src/expvar/
expvar.go 60 func (v *Int) Add(delta int64) {
82 // Add adds delta to v.
83 func (v *Float) Add(delta float64) {
162 func (v *Map) Add(key string, delta int64) {
178 // Add to Int; ignore otherwise.
180 iv.Add(delta)
201 // Add to Float; ignore otherwise.
203 iv.Add(delta)
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 36 func (t *Arith) Add(args *Args, reply *Reply) error {
68 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "123"}`)
102 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "\u%04d", "params": [{"A": %d, "B": %d}]}`, i, i, i+1)
132 err := client.Call("Arith.Add", args, reply)
134 t.Errorf("Add: expected no error but got string %q", err.Error())
137 t.Errorf("Add: got %d expected %d", reply.C, args.A+args.B)
155 addCall := client.Go("Arith.Add", args, addReply, nil)
159 t.Errorf("Add: expected no error but got string %q", addCall.Error.Error())
162 t.Errorf("Add: got %d expected %d", addReply.C, args.A+args.B)
201 err := client.Call("Arith.Add", args, reply
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field_reflection.h 91 virtual void Add(Field* data, const Value* value) const = 0;
144 void Add(Field* data, const ValueType& value) const {
154 Add(data, static_cast<const Value*>(&tmp));
  /art/runtime/gc/collector/
garbage_collector.h 49 void Add(const ObjectBytePair& other) {
  /art/runtime/
reference_table.cc 47 void ReferenceTable::Add(ObjPtr<mirror::Object> obj) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 396 _insertionOrderList.Add(key);
425 public void Add(object key, object value)
427 _dictionary.Add(key, value);
428 _insertionOrderList.Add(key);
  /external/autotest/client/cros/cellular/
pseudo_modem.py 232 os.system('ip link add name %s type veth peer name %s' % (
239 os.system('route add -host 255.255.255.255 dev %s' % self.peer)
318 # Add the device to the manager only after the pseudo
320 self.manager.Add(self)
601 def Add(self, device):
603 logging.info('ModemManager: add %s', device.name)
606 logging.info('Add: %s', interfaces)
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 64 constexpr int Add(int a, int b, int c) { return a + b + c; }
65 constexpr int FunctionArgs(int a) { return Add(a, ng, a); } // expected-error {{never produces}} expected-note {{read}}
  /external/google-breakpad/src/processor/
microdump.cc 87 void MicrodumpModules::Add(const CodeModule* module) {
292 modules_->Add(new BasicCodeModule(
stackwalker_unittest_utils.h 133 void Add(const MockCodeModule *module) {
  /external/libbrillo/brillo/dbus/
dbus_object_unittest.cc 32 const char kTestMethod_Add[] = "Add";
47 int Add(int x, int y) { return x + y; }
120 kTestMethod_Add, base::Unretained(&calc_), &Calc::Add);
154 TEST_F(DBusObjectTest, Add) {
383 kTestMethod_Add, base::Unretained(&calc_), &Calc::Add);
  /external/libchrome/base/
id_map.h 62 // Sets whether Add and Replace should DCHECK if passed in NULL data.
67 KeyType Add(T* data) {
79 // this function, or allow this object to generate IDs and call Add. These
272 // The next ID that we will return from Add()
  /external/libchrome/base/metrics/
sparse_histogram.cc 103 void SparseHistogram::Add(Sample value) {
124 snapshot->Add(*samples_);
133 snapshot->Add(*samples_);
137 logged_samples_->Add(*snapshot);
147 snapshot->Add(*samples_);
156 samples_->Add(samples);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 60 // Add a basic block to the function. As before, it automatically inserts
72 // Create the add instruction, inserting it into the end of BB.
73 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
75 // Create the return instruction and add it to the basic block
76 ReturnInst::Create(M->getContext(), Add, BB);
91 // Add a basic block to the function.
126 // Create the return instruction and add it to the basic block
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 175 void Add(const BitCodeAbbrevOp &OpInfo) {

Completed in 1302 milliseconds

1 2 3 4 56 7 8 91011>>