Home
last modified time | relevance | path

Searched defs:add (Results 1 – 25 of 908) sorted by relevance

12345678910>>...37

/third_party/gstreamer/gstplugins_good/gst/goom/
Dppc_zoom_ultimate.s98 add r2,r2,r8 label
99 add r29,r29,r10 label
115 add r2,r2,r29 ; pos computing label
118 add r2,r2,r5 ; pos computing label
124 add r2,r2,r20 ; Adds one line for future load of col3 and col4 label
139 add r8 ,r8 ,r10 ; Adds col1 & col2 channels 1 & 3 label
141 add r25,r25,r29 ; Adds col1 & col2 channel 2 label
146 add r7 ,r8 ,r10 ; Adds col3 to (col1 + col2) channels 1 & 3 label
149 add r25,r25,r29 ; Adds col 3 to (col1 + col2) channel 2 label
152 add r7 ,r7 ,r10 ; Adds col4 to (col1 + col2 + col3) channels 1 & 3 label
[all …]
/third_party/typescript/tests/baselines/reference/
DtypedGenericPrototypeMember.js3 add(item: T) { } method in List
6 List.prototype.add("abc"); // Valid because T is instantiated to any method in List
13 List.prototype.add = function (item) { }; method in List
16 List.prototype.add("abc"); // Valid because T is instantiated to any method in List
DfunctionSubtypingOfVarArgs2.js11 add(listener: (items: string, moreitems: number) => void ) { method in StringEvent
37 EventBase.prototype.add = function (listener) { method in EventBase
47 StringEvent.prototype.add = function (listener) { method in StringEvent
48 _super.prototype.add.call(this, listener); method in _super
DfunctionSubtypingOfVarArgs.js11 add(listener: (items: string) => void ) { // valid, items is subtype of args method in StringEvent
37 EventBase.prototype.add = function (listener) { method in EventBase
47 StringEvent.prototype.add = function (listener) { method in StringEvent
48 _super.prototype.add.call(this, listener); method in _super
DtargetTypeTest1.js32 Point.prototype.add = function(dx, dy) { method in Point
44 add: function(dx, dy) { method in Point
90 Point.prototype.add = function (dx, dy) { method in Point
100 add: function (dx, dy) { method in Point
DassignToPrototype1.js6 Point.prototype.add = function(dx, dy) { method in Point
10 Point.prototype.add = function (dx, dy) { method in Point
DtargetTypeCastTest.js13 var add = <Adder>function(x,y) { return x+ y; } variable
31 var add = function (x, y) { return x + y; }; function
/third_party/libcoap/include/coap3/
Dutlist.h314 #define LL_PREPEND(head,add) \ argument
317 #define LL_PREPEND2(head,add,next) \ argument
338 #define LL_APPEND(head,add) \ argument
341 #define LL_APPEND2(head,add,next) \ argument
354 #define LL_INSERT_INORDER(head,add,cmp) \ argument
357 #define LL_INSERT_INORDER2(head,add,cmp,next) \ argument
445 #define LL_REPLACE_ELEM2(head, el, add, next) \ argument
465 #define LL_REPLACE_ELEM(head, el, add) \ argument
468 #define LL_PREPEND_ELEM2(head, el, add, next) \ argument
491 #define LL_PREPEND_ELEM(head, el, add) \ argument
[all …]
Duthash.h245 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ argument
255 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ argument
265 #define HASH_REPLACE(hh,head,fieldname,keylen_in,add,replaced) \ argument
272 #define HASH_REPLACE_INORDER(hh,head,fieldname,keylen_in,add,replaced,cmpfcn) \ argument
279 #define HASH_APPEND_LIST(hh, head, add) \ argument
287 #define HASH_AKBI_INNER_LOOP(hh,head,add,cmpfcn) \ argument
298 #define HASH_AKBI_INNER_LOOP(hh,head,add,cmpfcn) \ argument
314 #define HASH_ADD_TO_TABLE(hh,head,keyptr,keylen_in,hashval,add,oomed) \ argument
338 #define HASH_ADD_TO_TABLE(hh,head,keyptr,keylen_in,hashval,add,oomed) \ argument
351 #define HASH_ADD_KEYPTR_BYHASHVALUE_INORDER(hh,head,keyptr,keylen_in,hashval,add,cmpfcn) \ argument
[all …]
/third_party/flutter/skia/src/pathops/
DSkPathOpsBounds.h25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { in add() function
32 void add(const SkPathOpsBounds& toAdd) { in add() function
36 void add(const SkPoint& pt) { in add() function
43 void add(const SkDPoint& pt) { in add() function
/third_party/skia/src/pathops/
DSkPathOpsBounds.h25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { in add() function
32 void add(const SkPathOpsBounds& toAdd) { in add() function
36 void add(const SkPoint& pt) { in add() function
43 void add(const SkDPoint& pt) { in add() function
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DLocalePriorityList.java88 public static Builder add(ULocale... locales) { in add() method in LocalePriorityList
101 public static Builder add(ULocale locale, final double weight) { in add() method in LocalePriorityList
111 public static Builder add(LocalePriorityList list) { in add() method in LocalePriorityList
121 public static Builder add(String acceptLanguageString) { in add() method in LocalePriorityList
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DLocalePriorityList.java88 public static Builder add(ULocale... locales) { in add() method in LocalePriorityList
102 public static Builder add(ULocale locale, final double weight) { in add() method in LocalePriorityList
113 public static Builder add(LocalePriorityList list) { in add() method in LocalePriorityList
124 public static Builder add(String acceptLanguageString) { in add() method in LocalePriorityList
/third_party/typescript/tests/cases/compiler/
DfunctionSubtypingOfVarArgs2.ts4 add(listener: (...args: any[]) => void): void { method in EventBase
10 add(listener: (items: string, moreitems: number) => void ) { method in StringEvent
DfunctionSubtypingOfVarArgs.ts4 add(listener: (...args: any[]) => void): void { method in EventBase
10 add(listener: (items: string) => void ) { // valid, items is subtype of args method in StringEvent
DlambdaArgCrash.ts14 add(listener: () => any): void { method in Event
28 add(listener: (items: ItemSet) => void ) { method in ItemSetEvent
/third_party/node/test/fixtures/debugger/cjs/
Dother.js1 exports.add = function add(a, b) { function
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource4.ts25 add(key: string, data): boolean; method
48 public add(key: string, data): boolean { method in StringHashTable
127 public add(key: string, data): boolean { method in DualStringHashTable
204 public add(key, data): boolean { method in HashTable
282 public add(key, data): boolean { method in SimpleHashTable
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/
Dproperty_member_declarations_2.ts32 public add(): number { method in myClass
36 static add(): number { method in myClass
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/member_function_declarations/
Dmember_function_declarations_4.ts27 public add() { method in MyClass
35 public add() { method in MyClass2
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DExtensionRegistry.java218 public void add(final Extension<?, ?> extension) { in add() method in ExtensionRegistry
228 public void add(final GeneratedMessage.GeneratedExtension<?, ?> extension) { in add() method in ExtensionRegistry
247 public void add(final FieldDescriptor type) { in add() method in ExtensionRegistry
259 public void add(final FieldDescriptor type, final Message defaultInstance) { in add() method in ExtensionRegistry
301 private void add(final ExtensionInfo extension, final Extension.ExtensionType extensionType) { in add() method in ExtensionRegistry
DLazyStringArrayList.java145 public void add(int index, String element) { in add() method in LazyStringArrayList
151 private void add(int index, ByteString element) { in add() method in LazyStringArrayList
157 private void add(int index, byte[] element) { in add() method in LazyStringArrayList
216 public void add(ByteString element) { in add() method in LazyStringArrayList
223 public void add(byte[] element) { in add() method in LazyStringArrayList
349 public void add(int index, byte[] s) { in add() method in LazyStringArrayList.ByteArrayListView
392 public void add(int index, ByteString s) { in add() method in LazyStringArrayList.ByteStringListView
/third_party/icu/icu4c/source/layoutex/
DRunArrays.cpp62 le_int32 RunArray::add(le_int32 limit) in add() function in RunArray
106 le_int32 FontRuns::add(const LEFontInstance *font, le_int32 limit) in add() function in FontRuns
158 le_int32 LocaleRuns::add(const Locale *locale, le_int32 limit) in add() function in LocaleRuns
210 le_int32 ValueRuns::add(le_int32 value, le_int32 limit) in add() function in ValueRuns
/third_party/ffmpeg/libavcodec/arm/
Dh264dsp_neon.S445 .macro weight_16 add argument
474 .macro weight_8 add argument
495 .macro weight_4 add argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DAliasSetTracker.cpp404 void AliasSetTracker::add(Value *Ptr, LocationSize Size, in add() function in AliasSetTracker
409 void AliasSetTracker::add(LoadInst *LI) { in add() function in AliasSetTracker
415 void AliasSetTracker::add(StoreInst *SI) { in add() function in AliasSetTracker
421 void AliasSetTracker::add(VAArgInst *VAAI) { in add() function in AliasSetTracker
425 void AliasSetTracker::add(AnyMemSetInst *MSI) { in add() function in AliasSetTracker
429 void AliasSetTracker::add(AnyMemTransferInst *MTI) { in add() function in AliasSetTracker
461 void AliasSetTracker::add(Instruction *I) { in add() function in AliasSetTracker
516 void AliasSetTracker::add(BasicBlock &BB) { in add() function in AliasSetTracker
521 void AliasSetTracker::add(const AliasSetTracker &AST) { in add() function in AliasSetTracker

12345678910>>...37