HomeSort by relevance Sort by last modified time
    Searched defs:add (Results 1 - 25 of 3853) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/regress/
regress-crbug-318671.js 30 function add(x, y) { return x + y; } function
32 print(add({ a: 1 }, "a"));
33 print(add({ b: 1 }, "b"));
34 print(add({ c: 1 }, "c"));
36 %OptimizeFunctionOnNextCall(add);
38 print(add("a", 1));
regress-1278.js 33 function add(x, y) { function
50 assertEquals(0, add(0, 0));
51 assertEquals(0, add(0, -0));
52 assertEquals(0, add(-0, 0));
53 assertEquals(-0, add(-0, -0));
  /external/clang/test/PCH/
blocks.h 7 int add(int a, int b) { function
  /external/libedit/doc/
mdoc2man.awk 51 function add(str) { function
82 add(OFS)
98 add("(")
103 add(")")
117 add(words[++w])
120 add("``")
121 add(words[++w])
123 add(OFS words[++w])
124 add("''")
129 add("\\fI" words[++w]
    [all...]
  /external/openssh/
mdoc2man.awk 52 function add(str) { function
83 add(OFS)
108 add(words[++w])
111 add("``")
112 add(words[++w])
114 add(OFS words[++w])
115 add("''")
120 add("`" words[++w] "'")
128 add("[")
132 add("]")
    [all...]
  /external/v8/test/mjsunit/
number-tostring-add.js 28 function add(a, b) { function
35 assertEquals(a, add("", b));
36 assertEquals("yes" + a, add("yes", b));
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
add.cpp 31 Filename: /audio/gsm_amr/c/src/add.c
36 Description: Created separate file for add function. Sync'ed up with the
87 FUNCTION NAME: add
101 pOverflow -> 1 if the add operation resulted in overflow
127 [1] add.c, UMTS GSM AMR speech codec, R99 - Version 3.2.0, March 2, 2001
132 Word16 add (Word16 var1, Word16 var2)
145 multiCounter[currCounter].add++;
176 Word16 add(Word16 var1, Word16 var2, Flag *pOverflow) function
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleElementStream.as 35 * Once you start next()ing, do not try to add more elements. It will
41 * TODO: add mechanism to detect/puke on modification after reading from stream
49 /** Track single elements w/o creating a list. Upon 2nd add, alloc list */
82 add(element);
97 public function add(el:Object):void { function
98 //System.out.println("add '"+elementDescription+"' is "+el);
102 if ( elements!=null ) { // if in list, just add
  /external/clang/test/CodeGen/
ubsan-blacklist.c 23 // DEFAULT: @add
24 // FUNC: @add
25 // FILE: @add
26 unsigned add() { function
  /external/llvm/test/DebugInfo/Inputs/
dwarfdump-test-zlib.cc 5 int add(int b) { function in class:DummyClass
12 return c.add(b);
dwarfdump-test.cc 5 int add(int b) { function in class:DummyClass
12 return c.add(b);
  /external/llvm/test/MC/ELF/
subsection.s 6 add 1, %eax label
9 add 2, %eax label
  /external/v8/test/mjsunit/compiler/
minus-zero.js 30 function add(x, y) { function
34 assertEquals(0, add(0, 0));
35 assertEquals(0, add(0, 0));
36 %OptimizeFunctionOnNextCall(add);
37 assertEquals(-0, add(-0, -0));
86 function add(a, b) {
90 assertEquals(1, 1/add(double_one, 0));
91 assertEquals(1, 1/add(0, double_one));
92 %OptimizeFunctionOnNextCall(add);
93 assertEquals(1/(-0 + -0), 1/add(-0, -0))
    [all...]
  /ndk/tests/device/issue35933-lambda/jni/
issue35933-lambda.cpp 6 static void add(int n) function
30 add(delta);
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
multi-generic.scm 13 ;; An alternative to loading this scheme code directly is to add a
49 (add-method compute-apply-generic
60 (add-method compute-methods
79 (add-method compute-method-more-specific?
117 (define multi-add-method
143 (define (multi-add-global-method val sym specializers proc)
145 (multi-add-method generic (make-method specializers proc))
149 ;; (define old-add-method ##tinyclos#add-method)
151 (set! ##tinyclos#add-method multi-add-method
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
Native.java 24 public static native int add(int a, int b); method in class:Native
  /development/tools/axl/
chewie.py 20 def add(self, url, time): member in class:Queue
95 queued.add(url, time)
122 queued.add(record[7], record[1])
  /external/apache-harmony/support/src/test/java/tests/support/
Support_SetTest.java 37 // add
39 !set.add(new Integer(50)));
45 set.add(new Integer(50));
  /external/clang/test/SemaTemplate/
implicit-instantiation-1.cpp 17 T add(T t, U u) { function
22 char* cp2 = add(cp, i);
23 add(cp, cp); // expected-note{{instantiation of}}
24 (void)sizeof(add(ip, ip));
  /external/javassist/sample/vector/
Sample.java 4 public void add(X e) { method in class:Sample
Sample2.java 4 public Object add(Object[] args) { method in class:Sample2
  /external/llvm/test/MC/AArch64/
arm64-optional-hash.s 4 ; CHECK: add sp, sp, #32 ; encoding: [0xff,0x83,0x00,0x91]
5 add sp, sp, 32
12 ; CHECK: add sp, x2, x3 ; encoding: [0x5f,0x60,0x23,0x8b]
13 add sp, x2, x3, uxtx 0 label
  /external/llvm/test/MC/ARM/
directive-fpu-instrs.s 14 add r9, r7, #216 label
  /external/skia/forth/
ForthParser.h 25 this->add(name, strlen(name), word);
28 void add(const char name[], size_t len, ForthWord* word) { function in class:ForthParser
30 // SkDebugf("add %s %p\n", str.c_str(), word);
  /external/skia/src/animator/
SkDrawShader.cpp 31 bool SkDrawShader::add() { function in class:SkDrawShader
57 bool SkDrawBitmapShader::add() { function in class:SkDrawBitmapShader

Completed in 1119 milliseconds

1 2 3 4 5 6 7 8 91011>>