/cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long/ |
Test_shr_long.java | 11 * @title Arguments = 40000000000l, 3 19 * @title Arguments = 40000000000l, 1 27 * @title Arguments = -40000000000l, 1 35 * @title Arguments = 1 & -1 52 * @title Arguments = 0 & -1 60 * @title Arguments = 1 & 0 68 * @title Arguments = Long.MAX_VALUE & 1 76 * @title Arguments = Long.MIN_VALUE & 1 101 * @title types of arguments - long, double 114 * @title types of arguments - int, in [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long_2addr/ |
Test_shr_long_2addr.java | 11 * @title Arguments = 40000000000l, 3 19 * @title Arguments = 40000000000l, 1 27 * @title Arguments = -40000000000l, 1 35 * @title Arguments = 1 & -1 52 * @title Arguments = 0 & -1 60 * @title Arguments = 1 & 0 68 * @title Arguments = Long.MAX_VALUE & 1 76 * @title Arguments = Long.MIN_VALUE & 1 101 * @title types of arguments - long, double 114 * @title types of arguments - int, in [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_long/ |
Test_sub_long.java | 27 * @title Arguments = 1111127348242l, 11111111114l 35 * @title Arguments = 0, 1111127348242l 43 * @title Arguments = 0, -11111111114l 51 * @title Arguments = 0l, Long.MAX_VALUE 59 * @title Arguments = 9223372036854775807L, Long.MAX_VALUE 67 * @title Arguments = Long.MAX_VALUE, -1l 75 * @title Arguments = Long.MIN_VALUE, 1l 83 * @title Arguments = 0l, 0l 91 * @title Arguments = 0l, -Long.MIN_VALUE 115 * @title types of arguments - int, lon [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_long_2addr/ |
Test_sub_long_2addr.java | 27 * @title Arguments = 1111127348242l, 11111111114l 35 * @title Arguments = 0, 1111127348242l 43 * @title Arguments = 0, -11111111114l 51 * @title Arguments = 0l, Long.MAX_VALUE 59 * @title Arguments = 9223372036854775807L, Long.MAX_VALUE 67 * @title Arguments = Long.MAX_VALUE, -1l 75 * @title Arguments = Long.MIN_VALUE, 1l 83 * @title Arguments = 0l, 0l 91 * @title Arguments = 0l, -Long.MIN_VALUE 115 * @title Types of arguments - long, double. The verifier checks that long [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
CommonToken.js | 8 if (arguments.length == 1) { 9 if (org.antlr.lang.isNumber(arguments[0])) { 10 this.type = arguments[0]; 12 oldToken = arguments[0]; 24 } else if (arguments.length == 2) { 25 this.type = arguments[0]; 26 this.text = arguments[1]; 28 } else if (arguments.length == 5) { 29 this.input = arguments[0]; 30 this.type = arguments[1] [all...] |
TokenRewriteStream.js | 66 if (arguments.length===0) { 69 sup.constructor.apply(this, arguments); 154 if (arguments.length===1) { 156 instructionIndex = arguments[0]; 157 } else if (arguments.length===2) { 158 programName = arguments[0]; 159 instructionIndex = arguments[1]; 192 if (arguments.length===1) { 194 op = arguments[0]; 195 } else if (arguments.length===2) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
arguments-apply.js | 29 return arguments; 38 return ReturnArguments.apply(this, arguments); 51 return object.f.apply(this, arguments); 63 var arguments = [3, 4]; 64 return ReturnArguments.apply(this, arguments); 73 return ReturnReceiver.apply(receiver, arguments); 84 return ReturnReceiver.apply(Object, arguments); 93 return f.apply(this, arguments); 103 return object.apply(this, arguments); 113 var result = ReturnArguments.apply(this, arguments); [all...] |
/external/v8/src/ |
arguments.h | 36 // Arguments provides access to runtime call parameters. 38 // It uses the fact that the instance fields of Arguments 44 // Object* Runtime_function(Arguments args) { 48 class Arguments BASE_EMBEDDED { 50 Arguments(int length, Object** arguments) 51 : length_(length), arguments_(arguments) { } 74 // Get the total number of arguments including the receiver. 77 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED 85 // Custom arguments replicate a small segment of stack that can b [all...] |
/external/v8/test/mjsunit/ |
arguments-apply.js | 29 return arguments; 38 return ReturnArguments.apply(this, arguments); 51 return object.f.apply(this, arguments); 63 var arguments = [3, 4]; 64 return ReturnArguments.apply(this, arguments); 73 return ReturnReceiver.apply(receiver, arguments); 84 return ReturnReceiver.apply(Object, arguments); 93 return f.apply(this, arguments); 103 return object.apply(this, arguments); 113 var result = ReturnArguments.apply(this, arguments); [all...] |
/external/chromium_org/mojo/apps/js/bindings/gl/ |
context.h | 17 class Arguments; 35 static gin::Handle<Shader> CreateShader(const gin::Arguments& arguments, 39 static void CompileShader(const gin::Arguments& arguments,
|
/external/mockito/src/org/mockito/internal/matchers/ |
CapturingMatcher.java | 19 private LinkedList<Object> arguments = new LinkedList<Object>();
field in class:CapturingMatcher 36 if (arguments.isEmpty()) {
40 return (T) arguments.getLast();
45 return (List) arguments;
49 this.arguments.add(argument);
|
VarargCapturingMatcher.java | 18 private LinkedList<List<T>> arguments = new LinkedList<List<T>>(); field in class:VarargCapturingMatcher 29 if (arguments.isEmpty()) { 33 return arguments.getLast(); 38 return arguments; 43 this.arguments.add(vararg);
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpg_double/ |
Test_cmpg_double.java | 26 * @title Arguments = 3.14d, 2.7d 34 * @title Arguments = -3.14d, 2.7d 42 * @title Arguments = 3.14, 3.14 50 * @title Arguments = Double.NaN, Double.MAX_VALUE 58 * @title Arguments = +0, -0 66 * @title Arguments = Double.NEGATIVE_INFINITY, Double.MIN_VALUE 74 * @title Arguments = Double.POSITIVE_INFINITY, Double.MAX_VALUE 82 * @title Arguments = Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY 94 * @title types of arguments - double, float 120 * @title types of arguments - double, referenc [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpg_float/ |
Test_cmpg_float.java | 26 * @title Arguments = 3.14f, 2.7f 34 * @title Arguments = -3.14f, 2.7f 42 * @title Arguments = 3.14, 3.14 50 * @title Arguments = Float.NaN, Float.MAX_VALUE 58 * @title Arguments = +0, -0 66 * @title Arguments = Float.NEGATIVE_INFINITY, Float.MIN_VALUE 74 * @title Arguments = Float.POSITIVE_INFINITY, Float.MAX_VALUE 82 * @title Arguments = Float.POSITIVE_INFINITY, 95 * @title types of arguments - float, double 108 * @title types of arguments - long, floa [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpl_double/ |
Test_cmpl_double.java | 26 * @title Arguments = 3.14d, 2.7d 34 * @title Arguments = -3.14d, 2.7d 42 * @title Arguments = 3.14, 3.14 50 * @title Arguments = Double.NaN, Double.MAX_VALUE 58 * @title Arguments = +0, -0 66 * @title Arguments = Double.NEGATIVE_INFINITY, Double.MIN_VALUE 74 * @title Arguments = Double.POSITIVE_INFINITY, Double.MAX_VALUE 82 * @title Arguments = Double.POSITIVE_INFINITY, 96 * @title types of arguments - double, float 122 * @title types of arguments - double, referenc [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpl_float/ |
Test_cmpl_float.java | 26 * @title Arguments = 3.14f, 2.7f 34 * @title Arguments = -3.14f, 2.7f 42 * @title Arguments = 3.14, 3.14 50 * @title Arguments = Float.NaN, Float.MAX_VALUE 58 * @title Arguments = +0, -0 66 * @title Arguments = Float.NEGATIVE_INFINITY, Float.MIN_VALUE 74 * @title Arguments = Float.POSITIVE_INFINITY, Float.MAX_VALUE 82 * @title Arguments = Float.POSITIVE_INFINITY, 94 * @title types of arguments - float, double 107 * @title types of arguments - long, floa [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/sample-input/ |
template-group | 35 def <%= @name %><% if @arguments and not @arguments.empty? %>( <%= @arguments.join( ', ' ) %> )<% end %>
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
JellyBeanContentView.java | 24 public boolean performAccessibilityAction(int action, Bundle arguments) { 26 return getContentViewCore().performAccessibilityAction(action, arguments); 29 return super.performAccessibilityAction(action, arguments);
|
/external/chromium_org/tools/cr/cr/actions/ |
gdb.py | 20 def Invoke(self, context, targets, arguments): 27 *arguments 30 def Attach(self, context, targets, arguments):
|
installer.py | 23 def Uninstall(self, context, targets, arguments): 29 def Install(self, context, targets, arguments): 34 def Reinstall(self, context, targets, arguments): 41 self.Install(context, targets, arguments) 51 def Uninstall(self, context, targets, arguments): 54 def Install(self, context, targets, arguments):
|
/external/chromium_org/tools/grit/grit/tool/ |
test.py | 10 tool-specific arguments that it receives. It is intended only for testing, 19 print 'tool-specific arguments that it receives. You may have intended to' 22 print 'Arguments: %s' % repr(my_arguments)
|
/external/clang/test/SemaTemplate/ |
temp_arg.cpp | 11 A<float, 1, X, double> *a2; // expected-error{{too many template arguments for class template 'A'}} 12 A<float, 1> *a3; // expected-error{{too few template arguments for class template 'A'}} 13 A a3; // expected-error{{use of class template 'A' requires template arguments}}
|
/external/mockito/src/org/mockito/invocation/ |
InvocationOnMock.java | 14 * A placeholder for mock, the method that was called and the arguments that were passed. 33 * returns arguments passed to the method 35 * @return arguments
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
messaging_utils.js | 5 // Routines used to normalize arguments to messaging functions. 8 // Align missing (optional) function arguments with the arguments that 24 // argument it should match. If there are more than two arguments remaining, 29 // Exactly two arguments remaining. If the first argument is a string, 31 // request, which is required. In other words, when two arguments remain,
|
/external/chromium_org/gin/ |
arguments.h | 14 // Arguments is a wrapper around v8::FunctionCallbackInfo that integrates 15 // with Converter to make it easier to marshall arguments and return values 17 class GIN_EXPORT Arguments { 19 Arguments(); 20 explicit Arguments(const v8::FunctionCallbackInfo<v8::Value>& info); 21 ~Arguments();
|