HomeSort by relevance Sort by last modified time
    Searched defs:push (Results 76 - 100 of 1457) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
queue.c 79 int push(Queue *q, void * element) function
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
queue.c 77 int push(Queue *q, void * element) function
  /libcore/ojluni/src/main/java/java/util/
Stack.java 32 * <tt>push</tt> and <tt>pop</tt> operations are provided, as well as a
66 public E push(E item) { method in class:Stack
  /prebuilts/gdb/darwin-x86/lib/python2.7/
code.py 243 more = self.push(line)
249 def push(self, line): member in class:InteractiveConsole
250 """Push a line to the interpreter.
multifile.py 14 fp.push(separator)
22 It is also allowed to use multiple push()...pop() sequences.
133 def push(self, sep): member in class:MultiFile
135 raise Error, 'bad MultiFile.push() call'
  /prebuilts/gdb/linux-x86/lib/python2.7/
code.py 243 more = self.push(line)
249 def push(self, line): member in class:InteractiveConsole
250 """Push a line to the interpreter.
multifile.py 14 fp.push(separator)
22 It is also allowed to use multiple push()...pop() sequences.
133 def push(self, sep): member in class:MultiFile
135 raise Error, 'bad MultiFile.push() call'
  /prebuilts/go/darwin-x86/src/regexp/
backtrack.go 115 // push pushes (pc, pos, arg) onto the job stack if it should be
117 func (b *bitState) push(pc uint32, pos int, arg bool) { func
130 b.push(pc, pos, false)
139 // Optimization: rather than push and pop,
140 // code that is going to Push and continue
143 // do the ShouldVisit check that Push
162 // b.push(inst.Out, pos, false)
163 // b.push(inst.Arg, pos, false)
166 // Pushing it here will inhibit that. Instead, re-push
167 // inst with arg==true as a reminder to push inst.Arg ou
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
sigqueue_plan9.go 36 func (q *noteQueue) push(item *byte) bool { func
81 if !sig.q.push(s) {
  /prebuilts/go/linux-x86/src/regexp/
backtrack.go 115 // push pushes (pc, pos, arg) onto the job stack if it should be
117 func (b *bitState) push(pc uint32, pos int, arg bool) { func
130 b.push(pc, pos, false)
139 // Optimization: rather than push and pop,
140 // code that is going to Push and continue
143 // do the ShouldVisit check that Push
162 // b.push(inst.Out, pos, false)
163 // b.push(inst.Arg, pos, false)
166 // Pushing it here will inhibit that. Instead, re-push
167 // inst with arg==true as a reminder to push inst.Arg ou
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
sigqueue_plan9.go 36 func (q *noteQueue) push(item *byte) bool { func
81 if !sig.q.push(s) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
code.py 243 more = self.push(line)
249 def push(self, line): member in class:InteractiveConsole
250 """Push a line to the interpreter.
multifile.py 14 fp.push(separator)
22 It is also allowed to use multiple push()...pop() sequences.
133 def push(self, sep): member in class:MultiFile
135 raise Error, 'bad MultiFile.push() call'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 243 more = self.push(line)
249 def push(self, line): member in class:InteractiveConsole
250 """Push a line to the interpreter.
multifile.py 14 fp.push(separator)
22 It is also allowed to use multiple push()...pop() sequences.
133 def push(self, sep): member in class:MultiFile
135 raise Error, 'bad MultiFile.push() call'
  /system/chre/util/include/chre/util/
priority_queue_impl.h 52 bool PriorityQueue<ElementType, CompareFunction>::push( function in class:chre::PriorityQueue
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
stack.s 2 .global push
3 push: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/crx/
list_insn.s 7 .global push
8 push: label
9 push ra, {r3, r4} label
10 push r2 label
  /external/apache-harmony/support/src/test/java/tests/util/
CallVerificationStack.java 86 this.callStack.push(eles[i]);
117 public Object push(Object o) { method in class:CallVerificationStack
119 return super.push(o);
125 * @param val the value to push
127 public void push(boolean val) { method in class:CallVerificationStack
128 this.push(new BaseTypeWrapper(val));
134 * @param val the value to push
136 public void push(char val) { method in class:CallVerificationStack
137 this.push(new BaseTypeWrapper(val));
143 * @param val the value to push
145 public void push(double val) { method in class:CallVerificationStack
154 public void push(float val) { method in class:CallVerificationStack
163 public void push(int val) { method in class:CallVerificationStack
172 public void push(long val) { method in class:CallVerificationStack
181 public void push(short val) { method in class:CallVerificationStack
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 143 this.push(null);
239 this.push(new JSONObject());
266 * Push an array or object scope.
270 private void push(JSONObject jo) throws JSONException { method in class:JSONWriter
  /libcore/support/src/test/java/tests/util/
CallVerificationStack.java 87 this.callStack.push(eles[i]);
119 public Object push(Object o) { method in class:CallVerificationStack
121 return super.push(o);
128 * the value to push
130 public void push(boolean val) { method in class:CallVerificationStack
131 this.push(new BaseTypeWrapper(val));
138 * the value to push
140 public void push(char val) { method in class:CallVerificationStack
141 this.push(new BaseTypeWrapper(val));
148 * the value to push
150 public void push(double val) { method in class:CallVerificationStack
160 public void push(float val) { method in class:CallVerificationStack
170 public void push(int val) { method in class:CallVerificationStack
180 public void push(long val) { method in class:CallVerificationStack
190 public void push(short val) { method in class:CallVerificationStack
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
misc.py 37 def push(self, elt): member in class:Stack
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
Gpt.asm 67 push ax ; PUSH 0x0000
68 push di ; PUSH 0x0600 + Offset(RelocatedStart) define
95 push ax ; 0000:7bfe = MaxHead
98 push ax ; 0000:7bfc = MaxSector
109 push es
129 push edx
139 push es
167 push ax ; PUSH 0x0000
169 push di ; PUSH 0x7C00 define
184 push ds define
    [all...]
Mbr.asm 67 push ax ; PUSH 0x0000
68 push di ; PUSH 0x0600 + Offset(RelocatedStart) define
96 push ax ; 0000:7bfe = MaxHead
99 push ax ; 0000:7bfc = MaxSector
135 push dx ; 0000:7bfa = Si <---- define
160 push ax ; PUSH 0x0000 - Segment
162 push di ; PUSH 0x7C00 - Offset define
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 92 /** Stack of indexes used for push/pop calls */
137 nodes.push(t); // add this node
193 nodes.push(navNode);
310 public function push(index:int):void { function
314 calls.push(p); // save current index
318 /** Seek back to previous index saved during last push() call.

Completed in 681 milliseconds

1 2 34 5 6 7 8 91011>>