HomeSort by relevance Sort by last modified time
    Searched refs:PARAMETER (Results 1 - 25 of 38) sorted by null

1 2

  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 5 @Target(ElementType.PARAMETER)
AnnoSimpleParameter.java 5 @Target(ElementType.PARAMETER)
  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 41 * Parameter declaration.
43 PARAMETER,
  /sdk/common/src/com/android/annotations/
NonNull.java 22 import static java.lang.annotation.ElementType.PARAMETER;
30 * Denotes that a parameter, field or method return value can never be null.
36 @Target({METHOD,PARAMETER,LOCAL_VARIABLE,FIELD})
Nullable.java 22 import static java.lang.annotation.ElementType.PARAMETER;
30 * Denotes that a parameter, field or method return value can be null.
36 * When decorating a method call parameter, this denotes the parameter can
47 @Target({METHOD, PARAMETER, LOCAL_VARIABLE, FIELD})
  /external/jsr305/ri/src/main/java/javax/annotation/
ParametersAreNonnullByDefault.java 16 * annotation of the corresponding parameter in the superclass applies)
17 * <li> there is a default parameter annotation applied to a more tightly nested
24 @TypeQualifierDefault(ElementType.PARAMETER)
ParametersAreNullableByDefault.java 16 * annotation of the corresponding parameter in the superclass applies)
17 * <li> there is a default parameter annotation applied to a more tightly nested
27 @TypeQualifierDefault(ElementType.PARAMETER)
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
ParametersAreSlashedByDefault.java 10 @TypeQualifierDefault(ElementType.PARAMETER)
  /frameworks/base/core/java/android/annotation/
SuppressLint.java 22 import static java.lang.annotation.ElementType.PARAMETER;
30 @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
  /libcore/luni/src/main/java/java/lang/
FindBugsSuppressWarnings.java 23 import static java.lang.annotation.ElementType.PARAMETER;
36 @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
SuppressWarnings.java 36 ElementType.PARAMETER, ElementType.CONSTRUCTOR,
  /sdk/annotations/src/android/annotation/
SuppressLint.java 22 import static java.lang.annotation.ElementType.PARAMETER;
30 @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
  /external/jmonkeyengine/engine/src/core/checkers/quals/
DefaultQualifier.java 27 @Target({CONSTRUCTOR, METHOD, FIELD, LOCAL_VARIABLE, PARAMETER, TYPE})
DefaultQualifiers.java 31 @Target({CONSTRUCTOR, METHOD, FIELD, LOCAL_VARIABLE, PARAMETER, TYPE})
  /external/v8/src/
variables.h 57 // A slot in the parameter section on the stack. index() is the
58 // parameter index, counting left-to-right. The reciever is index -1;
59 // the first parameter is index 0.
60 PARAMETER,
116 bool IsParameter() const { return location_ == PARAMETER; }
scopes.cc 320 // such parameter is 'this' which is passed on the stack when
330 var->AllocateTo(Variable::PARAMETER, -1);
748 case Variable::PARAMETER:
749 PrintF("parameter[%d]", var->index());
    [all...]
prettyprinter.cc 573 PrintLiteral(scope->parameter(i)->name(), false);
727 PrintLiteralWithModeIndented("VAR", scope->parameter(i),
728 scope->parameter(i)->name());
1022 case Variable::PARAMETER:
1023 OS::SNPrintF(buf + pos, " parameter[%d]", var->index());
hydrogen.cc 2649 HInstruction* parameter = AddInstruction(new(zone()) HParameter(i)); local
    [all...]
  /external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
ElementTypeTest.java 44 assertSame(ElementType.PARAMETER, ElementType.valueOf("PARAMETER"));
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
ElementTypeTest.java 34 assertSame(ElementType.PARAMETER, ElementType.valueOf("PARAMETER"));
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 37 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
42 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
47 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
52 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
286 assertEquals("Incorrect parameter returned", 0, types.length);
299 assertTrue("Incorrect parameter returned", types[0].equals(parms[0]));
312 assertEquals("Incorrect parameter returned", 0, types.length);
323 assertTrue("Incorrect parameter returned", types[0].equals(parms[0]));
334 assertEquals("Wrong number of parameter types returned", 2,
337 assertEquals("Wrong number of parameter types returned", "T"
    [all...]
MethodTest.java 150 @Target({ElementType.PARAMETER, ElementType.METHOD})
409 "Wrong number of annotations returned for first parameter", 2,
420 "Wrong number of annotations returned for second parameter",
427 "Wrong number of annotations returned for third parameter", 0,
544 assertTrue("Incorrect parameter returned", plist[i]
562 assertTrue("Incorrect parameter returned", plist[i]
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 124 // argument count matches the formal parameter count expected by the
209 Variable* var = scope()->parameter(i);
213 // Load parameter from stack.
245 // function, receiver address, parameter count.
246 // The stub will rewrite receiever and parameter count if the previous
401 // Push the return value on the stack as the parameter.
402 // Runtime::TraceExit returns its parameter in r0.
719 // Adjust by a (parameter or local) base offset.
806 case Variable::PARAMETER:
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 114 // formal parameter count expected by the function.
203 Variable* var = scope()->parameter(i);
207 // Load parameter from stack.
239 // function, receiver address, parameter count.
240 // The stub will rewrite receiver and parameter count if the previous
697 // Adjust by a (parameter or local) base offset.
780 case Variable::PARAMETER:
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 36 // parameter to a function is defined to be 'a0'. So there are many
132 // argument count matches the formal parameter count expected by the
216 Variable* var = scope()->parameter(i);
220 // Load parameter from stack.
252 // function, receiver address, parameter count.
253 // The stub will rewrite receiever and parameter count if the previous
410 // Push the return value on the stack as the parameter.
411 // Runtime::TraceExit returns its parameter in v0.
728 // Adjust by a (parameter or local) base offset.
813 case Variable::PARAMETER
    [all...]

Completed in 1318 milliseconds

1 2