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

1 2 3 4 5 6

  /external/sl4a/Docs/
generate_api_reference_md.py 67 if m.group('key') == 'returns':
101 def returns(self): member in class:Function
211 if func.returns:
212 if func.returns.lower().startswith('return'):
213 f.write('\n%s\n' % func.returns)
215 f.write('\nReturns %s\n' % func.returns)
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
_typecheck.py 227 Returns:
267 def returns(*types): function
282 Returns:
  /external/v8/src/inspector/build/
generate_protocol_externs.py 136 has_return_value = "returns" in command
147 returns = [] variable
148 returns.append("?Protocol.Error")
150 returns.append("%s=" % param_type(domain_name, command["error"]))
152 for out_param in command["returns"]:
154 returns.append("%s=" % param_type(domain_name, out_param))
156 returns.append("%s" % param_type(domain_name, out_param))
162 output_file.write(" * @param {function(%s):%s} opt_callback\n" % (", ".join(returns), callback_return_type))
170 output_file.write("/** @param {function(%s):void=} opt_callback */\n" % ", ".join(returns))
  /external/guice/core/test/com/google/inject/matcher/
MatcherTest.java 28 import static com.google.inject.matcher.Matchers.returns;
141 Matcher<Method> predicate = returns(only(String.class));
146 assertEquals("returns(only(class java.lang.String))", returns(only(String.class)).toString());
147 assertEqualsBothWays(predicate, returns(only(String.class)));
148 assertFalse(predicate.equals(returns(only(Integer.class))));
160 assertEqualWhenReserialized(returns(any())); method
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.java 206 int returns = 0; local
230 returns++;
259 if (returns > 2) {
265 returns = 0;
  /external/v8/src/ffi/
ffi-compiler.cc 80 int returns = static_cast<int>(func->sig->return_count()); local
98 if (returns == 1) {
  /art/test/115-native-bridge/src/
NativeBridgeMain.java 101 byte returns[] = { 0, 1, 2, 127, -1, -2, -128 };
102 for (int i = 0; i < returns.length; i++) {
105 if (returns[i] != result) {
106 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
116 short returns[] = { 0, 1, 2, 127, 32767, -1, -2, -128, -32768 }; local
117 for (int i = 0; i < returns.length; i++) {
120 if (returns[i] != result) {
121 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
146 char returns[] = { (char)0, (char)1, (char)2, (char)127, (char)255, (char)256, (char)15000, local
148 for (int i = 0; i < returns.length; i++)
    [all...]
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 38 * Returns a matcher which matches any input.
104 * Returns a matcher which matches elements (methods, classes, etc.)
142 * Returns a matcher which matches elements (methods, classes, etc.)
181 * Returns a matcher which matches subclasses of the given type (as well as
217 * Returns a matcher which matches objects equal to the given object.
252 * Returns a matcher which matches only the given object.
287 * Returns a matcher which matches classes in the given package. Packages are specific to their
328 * Returns a matcher which matches classes in the given package and its subpackages. Unlike
367 * Returns a matcher which matches methods with matching return types.
369 public static Matcher<Method> returns( method in class:Matchers
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 59 returns(result);
73 returns(result);
89 returns(result);
104 returns(result);
120 returns(result);
136 returns(result);
148 returns(result);
160 returns(result);
175 returns(result);
191 returns(result)
454 private void returns(String result) { method in class:EGLLogWrapper
459 private void returns(int result) { method in class:EGLLogWrapper
463 private void returns(boolean result) { method in class:EGLLogWrapper
467 private void returns(Object result) { method in class:EGLLogWrapper
    [all...]
GLLogWrapper.java 109 private void returns(String result) { method in class:GLLogWrapper
110 log(") returns " + result + ";\n");
114 private void returns(int result) { method in class:GLLogWrapper
115 returns(Integer.toString(result));
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java 300 * Returns a human-readable help text for this RPC, based on annotations in the source code.
324 if (!rpcAnnotation.returns().equals("")) {
327 helpBuilder.append(rpcAnnotation.returns());
346 * Returns the help string for one particular parameter. This respects optional parameters.
405 * Returns parameter descriptors suitable for the RPC call text representation.
436 * Returns parameter hints.
492 * Returns the default value for a specific parameter.
547 * Returns whether the default value is specified for a specific parameter.
562 /** Returns the converters for {@code String}, {@code Integer} and {@code Boolean}. */
  /art/test/004-JniTest/src/
Main.java 151 byte returns[] = { 0, 1, 2, 127, -1, -2, -128 };
152 for (int i = 0; i < returns.length; i++) {
155 if (returns[i] != result) {
156 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
172 short returns[] = { 0, 1, 2, 127, 32767, -1, -2, -128, -32768 }; local
173 for (int i = 0; i < returns.length; i++) {
176 if (returns[i] != result) {
177 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
202 char returns[] = { (char)0, (char)1, (char)2, (char)127, (char)255, (char)256, (char)15000, local
204 for (int i = 0; i < returns.length; i++)
310 int returns[] = { 0, 3, 6, 9, 12 }; local
328 int returns[] = { 3, 6, 9, 12, 15 }; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 94 private boolean returns; field in class:RopperMachine
160 this.returns = false;
207 returns = false;
229 * @return whether the block returns
231 public boolean returns() { method in class:RopperMachine
232 return returns;
597 * Returns get turned into the combination of a move (if
613 returns = true;
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 143 long[] returns = new long[stss.size()]; local
145 returns[i] = stss.get(i);
147 return returns;
  /external/python/cpython3/Include/
Python-ast.h 82 expr_ty returns; member in struct:_stmt::__anon33052::__anon33053
90 expr_ty returns; member in struct:_stmt::__anon33052::__anon33054
452 asdl_seq * decorator_list, expr_ty returns, int lineno,
456 body, asdl_seq * decorator_list, expr_ty returns,
  /external/python/cpython3/Python/
ast.c 383 (!stmt->v.FunctionDef.returns ||
384 validate_expr(stmt->v.FunctionDef.returns, Load));
504 (!stmt->v.AsyncFunctionDef.returns ||
505 validate_expr(stmt->v.AsyncFunctionDef.returns, Load));
696 /* num_stmts() returns number of contained statements.
979 an appropriate syntax error and returns false.
1600 expr_ty returns = NULL; local
    [all...]
Python-ast.c 40 _Py_IDENTIFIER(returns); variable
46 "returns",
54 "returns",
4166 expr_ty returns; local
4270 expr_ty returns; local
    [all...]
compile.c 4 * The primary entry point is PyAST_Compile(), which returns a
190 /* Returns true if there is a loop on the fblock stack. */
750 Returns NULL on error.
792 /* Returns the offset of the next instruction in the current block's
794 Returns -1 on failure.
1088 Returns 0 on failure, 1 on success.
1813 expr_ty returns; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_shader.c 110 * Returns a unique index for a semantic name and index. The index must be
442 /* The hardware returns an unsigned value; convert it to a
489 /* RGBX UINT returns 1 in alpha, which would be rounded to 0 by normalizing. */
511 /* RGBX SINT returns 1 in alpha, which would be rounded to 0 by normalizing. */
5624 LLVMTypeRef returns[16+32*4]; local
7239 LLVMTypeRef returns[32]; local
7828 LLVMTypeRef *params, *returns; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.2.0/
javapoet-1.2.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.7.0/
javapoet-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.8.0/
javapoet-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/
gmaven-runtime-support-1.5.jar 
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 

Completed in 874 milliseconds

1 2 3 4 5 6