HomeSort by relevance Sort by last modified time
    Searched refs:PARAMETER (Results 1 - 25 of 26) 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,
  /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)
  /libcore/luni/src/main/java/java/lang/
SuppressWarnings.java 36 ElementType.PARAMETER, ElementType.CONSTRUCTOR,
  /libcore/luni/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/tests/api/java/lang/reflect/
ConstructorTest.java 52 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
57 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
62 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
67 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
400 assertEquals("Incorrect parameter returned", 0, types.length);
413 assertTrue("Incorrect parameter returned", types[0].equals(parms[0]));
435 assertEquals("Incorrect parameter returned", 0, types.length);
446 assertTrue("Incorrect parameter returned", types[0].equals(parms[0]));
457 assertEquals("Wrong number of parameter types returned", 2,
460 assertEquals("Wrong number of parameter types returned", "T"
    [all...]
MethodTest.java 155 @Target({ElementType.PARAMETER, ElementType.METHOD})
482 "Wrong number of annotations returned for first parameter", 2,
493 "Wrong number of annotations returned for second parameter",
500 "Wrong number of annotations returned for third parameter", 0,
659 assertTrue("Incorrect parameter returned", plist[i]
677 assertTrue("Incorrect parameter returned", plist[i]
    [all...]
  /external/v8/src/
scopes.cc 186 // such parameter is 'this' which is passed on the stack when
191 var->rewrite_ = new Slot(var, Slot::PARAMETER, -1);
786 // 'arguments' is used. Unless there is also a parameter called
788 // the arguments object: The i'th parameter is rewritten into
789 // '.arguments[i]' (*). If we have a parameter named 'arguments', a
791 // invocation. Then 'arguments' denotes that specific parameter value
795 // (*) Instead of having a parameter called 'arguments', we may have an
856 // The same parameter may occur multiple times in the parameters_ list.
858 // receive the highest parameter index for that parameter; thus iteratio
    [all...]
prettyprinter.cc 296 case Slot::PARAMETER:
297 Print("parameter[%d]", node->index());
550 PrintLiteral(scope->parameter(i)->name(), false);
740 PrintLiteralWithModeIndented("VAR", scope->parameter(i),
741 scope->parameter(i)->name(),
742 scope->parameter(i)->type(),
1002 case Slot::PARAMETER:
1003 Print("parameter[%d]", node->index());
    [all...]
scopeinfo.cc 62 parameters_.Add(scope->parameter(i)->name());
71 // non-parameter locals. When the non-parameter locals are
89 case Slot::PARAMETER:
162 // - list of parameter names (starting with parameter 0 first)
367 int n; // number of parameter slots;
470 // last declaration of that parameter is used
full-codegen.cc 471 // Adjust by a (parameter or local) base offset.
473 case Slot::PARAMETER:
ast.h 992 // A slot in the parameter section on the stack. index() is
993 // the parameter index, counting left-to-right, starting at 0.
994 PARAMETER,
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 43 // argument count matches the formal parameter count expected by the
93 Slot* slot = scope()->parameter(i)->slot();
97 // Load parameter from stack.
129 // function, receiver address, parameter count.
130 // The stub will rewrite receiever and parameter count if the previous
189 // Push the return value on the stack as the parameter.
190 // Runtime::TraceExit returns its parameter in r0.
512 case Slot::PARAMETER:
561 case Slot::PARAMETER:
721 Comment cmnt(masm_, "Rewritten parameter");
    [all...]
codegen-arm.cc 213 // 3) don't copy parameter operand code from SlotOperand!
217 // parameter twice (e.g., function (x, y, x)), and that parameter
219 // passed to the parameter that needs to be copied. This is a rare
221 // order: such a parameter is copied repeatedly into the same
225 Variable* par = scope()->parameter(i);
344 // Push the return value on the stack as the parameter.
345 // Runtime::TraceExit returns the parameter as it is.
411 case Slot::PARAMETER:
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 44 // formal parameter count expected by the function.
93 Slot* slot = scope()->parameter(i)->slot();
97 // Load parameter from stack.
127 // function, receiver address, parameter count.
128 // The stub will rewrite receiver and parameter count if the previous
627 case Slot::PARAMETER:
675 case Slot::PARAMETER:
836 Comment cmnt(masm_, "Rewritten parameter");
838 // Rewritten parameter accesses are of the form "slot[literal]".
1019 // Left-hand side can only be a property, a global or a (parameter or local
    [all...]
codegen-ia32.cc 201 // 3) don't copy parameter operand code from SlotOperand!
205 // parameter twice (e.g., function (x, y, x)), and that parameter
207 // passed to the parameter that needs to be copied. This is a rare
209 // order: such a parameter is copied repeatedly into the same
213 Variable* par = scope()->parameter(i);
370 case Slot::PARAMETER:
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 44 // formal parameter count expected by the function.
93 Slot* slot = scope()->parameter(i)->slot();
97 // Load parameter from stack.
129 // function, receiver address, parameter count.
130 // The stub will rewrite receiver and parameter count if the previous
629 case Slot::PARAMETER:
677 case Slot::PARAMETER:
838 Comment cmnt(masm_, "Rewritten parameter");
840 // Rewritten parameter accesses are of the form "slot[literal]".
1021 // Left-hand side can only be a property, a global or a (parameter or local
    [all...]
codegen-x64.cc 353 // 3) don't copy parameter operand code from SlotOperand!
357 // parameter twice (e.g., function (x, y, x)), and that parameter
359 // passed to the parameter that needs to be copied. This is a rare
361 // order: such a parameter is copied repeatedly into the same
365 Variable* par = scope()->parameter(i);
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 171 milliseconds

1 2