| /external/autotest/client/cros/cellular/pseudomodem/ |
| dbus_std_ifaces.py | 341 def Add(self, device): 346 @param device: Device to add.
|
| /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| ProgramStateTrait.h | 77 return F.add(B, K, E); 124 static data_type Add(data_type B, key_type K, context_type F) { 125 return F.add(B, K); 158 static data_type Add(data_type L, key_type K, context_type F) { 159 return F.add(K, L);
|
| /external/dng_sdk/source/ |
| dng_spline.cpp | 54 void dng_spline_solver::Add (real64 x, real64 y)
|
| /external/libchrome/base/metrics/ |
| histogram_samples.cc | 85 void HistogramSamples::Add(const HistogramSamples& other) { 89 bool success = AddSubtractImpl(other.Iterator().get(), ADD); 105 return AddSubtractImpl(&pickle_iter, ADD);
|
| /external/libchrome/base/trace_event/ |
| trace_event_memory_overhead.cc | 43 void TraceEventMemoryOverhead::Add(const char* object_type, 45 Add(object_type, allocated_size_in_bytes, allocated_size_in_bytes); 48 void TraceEventMemoryOverhead::Add(const char* object_type, 61 Add("std::string", sizeof(std::string) + std::max<size_t>(capacity, 32u)); 66 Add("RefCountedString", sizeof(RefCountedString)); 76 Add("FundamentalValue", sizeof(Value)); 82 Add("StringValue", sizeof(StringValue)); 89 Add("BinaryValue", sizeof(BinaryValue) + binary_value->GetSize()); 95 Add("DictionaryValue", sizeof(DictionaryValue)); 106 Add("ListValue", sizeof(ListValue)) [all...] |
| /external/lzma/CPP/7zip/Crypto/ |
| 7zAes.cpp | 82 void CKeyInfoCache::Add(CKeyInfo &key)
106 g_GlobalKeyCache.Add(_key);
112 g_GlobalKeyCache.Add(_key);
114 _cachedKeys.Add(_key);
|
| /external/lzma/CPP/Windows/Control/ |
| ImageList.h | 59 int Add(HBITMAP hbmImage, HBITMAP hbmMask = 0)
|
| /external/pdfium/core/fpdfapi/parser/ |
| cpdf_array.cpp | 186 CPDF_Object* CPDF_Array::Add(std::unique_ptr<CPDF_Object> pObj) {
|
| /external/protobuf/csharp/src/Google.Protobuf/Collections/ |
| ReadOnlyDictionary.cs | 51 public void Add(TKey key, TValue value)
87 public void Add(KeyValuePair<TKey, TValue> item)
|
| /external/skia/src/core/ |
| SkMaskCache.cpp | 90 void SkMaskCache::Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, 94 return CHECK_LOCAL(localCache, add, Add, new RRectBlurRec(key, mask, data)); 185 void SkMaskCache::Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, 189 return CHECK_LOCAL(localCache, add, Add, new RectsBlurRec(key, mask, data));
|
| SkTypefaceCache.cpp | 18 void SkTypefaceCache::add(SkTypeface* face) { function in class:SkTypefaceCache 69 void SkTypefaceCache::Add(SkTypeface* face) { 71 Get().add(face);
|
| /external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/ |
| Cloning.cpp | 54 BinaryOperator *Add = BinaryOperator::Create(Instruction::Add, V, V); 58 BinaryOperator *AddClone = this->clone(Add); 71 Add->setHasNoUnsignedWrap(); 75 AddClone = this->clone(Add); 88 Add->setHasNoSignedWrap(); 92 AddClone = this->clone(Add); 105 Add->setHasNoUnsignedWrap(false); 109 AddClone = this->clone(Add);
|
| /frameworks/base/media/mca/filterfw/native/core/ |
| statistics.h | 28 void Add(float value); 53 void Add(float measurement) {
|
| /prebuilts/go/darwin-x86/misc/cgo/gmp/ |
| gmp.go | 230 // Add sets z = x + y and returns z. 231 func (z *Int) Add(x, y *Int) *Int {
|
| /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
| mpfloat.go | 53 func (a *Mpflt) Add(b *Mpflt) { 58 a.Val.Add(&a.Val, &b.Val) 69 a.Add(&b)
|
| mpint.go | 71 func (a *Mpint) Add(b *Mpint) { 74 yyerror("ovf in Mpint Add") 80 a.Val.Add(&a.Val, &b.Val)
|
| /prebuilts/go/darwin-x86/src/crypto/elliptic/ |
| elliptic.go | 13 // ScalarBaseMult). But even for Add and Double, it's faster to apply and 29 // Add returns the sum of (x1,y1) and (x2,y2) 30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int) 64 threeX.Add(threeX, x) 67 x3.Add(x3, curve.B) 102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) { 111 // See http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl 138 h.Add(h, curve.P) 152 r.Add(r, curve.P) 176 z3.Add(z1, z2 [all...] |
| /prebuilts/go/darwin-x86/src/image/ |
| geom.go | 22 // Add returns the vector p+q. 23 func (p Point) Add(q Point) Point { 61 return p.Add(r.Min) 112 // Add returns the rectangle r translated by p. 113 func (r Rectangle) Add(p Point) Rectangle {
|
| /prebuilts/go/darwin-x86/src/math/big/ |
| rat.go | 473 // Add sets z to the sum x+y and returns z. 474 func (z *Rat) Add(x, y *Rat) *Rat { 477 z.a.Add(a1, a2)
|
| /prebuilts/go/darwin-x86/src/net/http/ |
| header.go | 21 // Add adds the key, value pair to the header. 23 func (h Header) Add(key, value string) { 24 textproto.MIMEHeader(h).Add(key, value)
|
| /prebuilts/go/linux-x86/misc/cgo/gmp/ |
| gmp.go | 230 // Add sets z = x + y and returns z. 231 func (z *Int) Add(x, y *Int) *Int {
|
| /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
| mpfloat.go | 53 func (a *Mpflt) Add(b *Mpflt) { 58 a.Val.Add(&a.Val, &b.Val) 69 a.Add(&b)
|
| mpint.go | 71 func (a *Mpint) Add(b *Mpint) { 74 yyerror("ovf in Mpint Add") 80 a.Val.Add(&a.Val, &b.Val)
|
| /prebuilts/go/linux-x86/src/crypto/elliptic/ |
| elliptic.go | 13 // ScalarBaseMult). But even for Add and Double, it's faster to apply and 29 // Add returns the sum of (x1,y1) and (x2,y2) 30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int) 64 threeX.Add(threeX, x) 67 x3.Add(x3, curve.B) 102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) { 111 // See http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl 138 h.Add(h, curve.P) 152 r.Add(r, curve.P) 176 z3.Add(z1, z2 [all...] |
| /prebuilts/go/linux-x86/src/image/ |
| geom.go | 22 // Add returns the vector p+q. 23 func (p Point) Add(q Point) Point { 61 return p.Add(r.Min) 112 // Add returns the rectangle r translated by p. 113 func (r Rectangle) Add(p Point) Rectangle {
|