HomeSort by relevance Sort by last modified time
    Searched refs:RETURN (Results 126 - 150 of 317) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/eigen/lapack/
ilazlr.f 120 RETURN
clarft.f 198 * Quick return if possible
201 $ RETURN
324 RETURN
dlarft.f 197 * Quick return if possible
200 $ RETURN
322 RETURN
slarft.f 197 * Quick return if possible
200 $ RETURN
322 RETURN
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 66 protected static final String RETURN = Separators.RETURN;
109 return new String(chars);
113 * Return true if this supports reflection based cloning.
116 return obj instanceof Cloneable;
120 return GenericObjectList.class.isAssignableFrom(other);
134 return retval;
185 return (GenericObject) iterator.next();
187 return null;
198 return (GenericObject) myListIterator.next()
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 28 * a stub depending on the return type. Original annotations are passed along unchanged.
37 /** The method return type. Can be null. */
86 mParentVisitor.visitInsn(Opcodes.RETURN);
153 /* Pops the stack, depending on the return type.
183 * For non-constructor, generate the messaging code and the return statement
197 * For non-constructor, generate the messaging code and the return statement
213 return mParentVisitor.visitAnnotation(desc, visible);
219 return mParentVisitor.visitAnnotationDefault();
225 return mParentVisitor.visitParameterAnnotation(parameter, desc, visible);
247 * For non-constructor, rewrite existing "return" instructions to write the message
    [all...]
  /external/eigen/blas/
ctbmv.f 182 RETURN
185 * Quick return if possible.
187 IF (N.EQ.0) RETURN
362 RETURN
dtbmv.f 182 RETURN
185 * Quick return if possible.
187 IF (N.EQ.0) RETURN
331 RETURN
stbmv.f 182 RETURN
185 * Quick return if possible.
187 IF (N.EQ.0) RETURN
331 RETURN
ztbmv.f 182 RETURN
185 * Quick return if possible.
187 IF (N.EQ.0) RETURN
362 RETURN
drotm.f 146 RETURN
srotm.f 147 RETURN
  /bionic/libc/arch-x86/atom/string/
ssse3-memcmp-atom.S 98 #define RETURN RETURN_END; cfi_restore_state; cfi_remember_state
1624 RETURN
1631 RETURN
1638 RETURN
1645 RETURN
1652 RETURN
1659 RETURN
1666 RETURN
1673 RETURN
1718 RETURN
    [all...]
ssse3-strcmp-atom.S 92 # define RETURN ret
99 # define RETURN POP (%ebp); ret; CFI_PUSH (%ebp)
    [all...]
  /external/eigen/blas/testing/
dblat1.f 122 RETURN
240 40 RETURN
334 RETURN
678 RETURN
    [all...]
sblat1.f 122 RETURN
240 40 RETURN
334 RETURN
682 RETURN
    [all...]
cblat1.f 72 RETURN
275 RETURN
519 RETURN
568 RETURN
599 RETURN
609 RETURN
640 RETURN
674 RETURN
zblat1.f 72 RETURN
275 RETURN
519 RETURN
568 RETURN
599 RETURN
609 RETURN
640 RETURN
674 RETURN
  /bionic/libc/arch-x86/silvermont/string/
sse2-memmove-slm.S 100 #define RETURN RETURN_END; CFI_PUSH (%ebx)
122 /* Copy [0..32] and return. */
133 /* Copy [0..64] and return. */
148 /* Copy [0..128] and return. */
346 /* Copy [0..32] and return. */
357 /* Copy [0..64] and return. */
372 /* Copy [0..128] and return. */
453 /* Copy [0..16] and return. */
497 RETURN
503 RETURN
    [all...]
  /external/chromium_org/v8/test/webkit/
string-trim.js 42 {s : '\u000D', t : 'CARRIAGE RETURN'},
89 var testValues = ["0", "Infinity", "NaN", "true", "false", "({})", "({toString:function(){return 'wibble'}})", "['an','array']"];
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Analyzer.java 91 * @return the symbolic state of the execution stack frame at each bytecode
103 return frames;
247 && (insnOpcode < IRETURN || insnOpcode > RETURN))
297 return frames;
308 return;
347 // if insn does not falls through to the next instruction, return.
358 case RETURN:
360 return;
370 * @return the symbolic state of the execution stack frame at each bytecode
378 return frames;
    [all...]
  /art/compiler/dex/
global_value_numbering.cc 49 return nullptr;
52 return nullptr;
56 return nullptr;
60 return nullptr;
112 bb->last_mir_insn->dalvikInsn.opcode == Instruction::RETURN ||
136 return work_lvn_.get();
152 return change;
159 return lb->second;
165 return id;
173 return lb->second
    [all...]
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 59 public static final int RETURN = 0x0f;
300 * @return {@code true} iff the value has the right "shape" to be
316 return false;
318 return true;
323 return true;
326 return (opcode & 0xff00) == 0;
334 * @return the extracted opcode
344 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte;
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
MethodAnnotationChecker.java 20 Pattern.compile("^[^@\n]*(@)return(?:s.*|\\s+[^{]*)$", Pattern.MULTILINE);
31 case Token.RETURN:
46 return;
60 return new String[0];
83 return formalParamNames.toArray(new String[formalParamNames.size()]);
88 return;
93 return;
97 return;
105 return;
109 return;
    [all...]
  /external/chromium_org/v8/src/
token.h 127 K(RETURN, "return", 0) \
182 return name_[tok];
187 return token_type[tok] == 'K';
191 return INIT_VAR <= tok && tok <= ASSIGN_MOD;
195 return COMMA <= op && op <= MOD;
199 return BIT_OR <= op && op <= ROR;
203 return EQ <= op && op <= IN;
207 return op == LT || op == LTE || op == GT || op == GTE;
211 return op == EQ || op == EQ_STRICT
    [all...]

Completed in 1207 milliseconds

1 2 3 4 56 7 8 91011>>