/art/runtime/arch/mips64/ |
quick_entrypoints_mips64.S | 892 * as usual - except instead of loading arg0/$a0 with the target Method*, arg0/$a0 will contain [all...] |
/art/runtime/arch/x86/ |
quick_entrypoints_x86.S | 464 * as usual - except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
PluralRules.java | 804 public boolean equals(Object arg0) { 805 if (arg0 == null) { 808 if (arg0 == this) { 811 if (!(arg0 instanceof FixedDecimal)) { 814 FixedDecimal other = (FixedDecimal)arg0; [all...] |
/external/clang/include/clang/Basic/ |
arm_neon.td | 125 // shuffle - Create a vector shuffle. The syntax is (shuffle ARG0, ARG1, MASK). 128 // the lane indices in sequence for ARG0, and "mask1" expands to 164 // mask0 - The initial sequence of lanes for shuffle ARG0 [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
PluralRulesTest.java | [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
PluralRulesTest.java | [all...] |
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
GeneratedMessageLite.java | 275 protected abstract Object dynamicMethod(MethodToInvoke method, Object arg0, Object arg1); 280 protected Object dynamicMethod(MethodToInvoke method, Object arg0) { 281 return dynamicMethod(method, arg0, null); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SubscriptionController.java | 570 public int compare(SubscriptionInfo arg0, SubscriptionInfo arg1) { 572 int flag = arg0.getSimSlotIndex() - arg1.getSimSlotIndex(); 575 return arg0.getSubscriptionId() - arg1.getSubscriptionId(); [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
ssa.go | 391 func (s *state) newValue2(op ssa.Op, t ssa.Type, arg0, arg1 *ssa.Value) *ssa.Value { 392 return s.curBlock.NewValue2(s.peekLine(), op, t, arg0, arg1) 396 func (s *state) newValue2I(op ssa.Op, t ssa.Type, aux int64, arg0, arg1 *ssa.Value) *ssa.Value { 397 return s.curBlock.NewValue2I(s.peekLine(), op, t, aux, arg0, arg1) 401 func (s *state) newValue3(op ssa.Op, t ssa.Type, arg0, arg1, arg2 *ssa.Value) *ssa.Value { 402 return s.curBlock.NewValue3(s.peekLine(), op, t, arg0, arg1, arg2) 406 func (s *state) newValue3I(op ssa.Op, t ssa.Type, aux int64, arg0, arg1, arg2 *ssa.Value) *ssa.Value { 407 return s.curBlock.NewValue3I(s.peekLine(), op, t, aux, arg0, arg1, arg2) 411 func (s *state) newValue4(op ssa.Op, t ssa.Type, arg0, arg1, arg2, arg3 *ssa.Value) *ssa.Value { 412 return s.curBlock.NewValue4(s.peekLine(), op, t, arg0, arg1, arg2, arg3 [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
ssa.go | 391 func (s *state) newValue2(op ssa.Op, t ssa.Type, arg0, arg1 *ssa.Value) *ssa.Value { 392 return s.curBlock.NewValue2(s.peekLine(), op, t, arg0, arg1) 396 func (s *state) newValue2I(op ssa.Op, t ssa.Type, aux int64, arg0, arg1 *ssa.Value) *ssa.Value { 397 return s.curBlock.NewValue2I(s.peekLine(), op, t, aux, arg0, arg1) 401 func (s *state) newValue3(op ssa.Op, t ssa.Type, arg0, arg1, arg2 *ssa.Value) *ssa.Value { 402 return s.curBlock.NewValue3(s.peekLine(), op, t, arg0, arg1, arg2) 406 func (s *state) newValue3I(op ssa.Op, t ssa.Type, aux int64, arg0, arg1, arg2 *ssa.Value) *ssa.Value { 407 return s.curBlock.NewValue3I(s.peekLine(), op, t, aux, arg0, arg1, arg2) 411 func (s *state) newValue4(op ssa.Op, t ssa.Type, arg0, arg1, arg2, arg3 *ssa.Value) *ssa.Value { 412 return s.curBlock.NewValue4(s.peekLine(), op, t, arg0, arg1, arg2, arg3 [all...] |
/external/fmtlib/fmt/ |
format.h | [all...] |
/external/v8/src/arm64/ |
simulator-arm64.cc | 538 typedef ObjectPair (*SimulatorRuntimeCall)(int64_t arg0, 547 typedef ObjectTriple (*SimulatorRuntimeTripleCall)(int64_t arg0, int64_t arg1, 559 typedef void (*SimulatorRuntimeDirectApiCall)(int64_t arg0); 560 typedef void (*SimulatorRuntimeProfilingApiCall)(int64_t arg0, void* arg1); 563 typedef void (*SimulatorRuntimeDirectGetterCall)(int64_t arg0, int64_t arg1); 564 typedef void (*SimulatorRuntimeProfilingGetterCall)(int64_t arg0, int64_t arg1, [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
EncodeVirtualDisplayWithCompositionTest.java | [all...] |
/development/samples/JetBoy/src/com/example/android/jetboy/ |
JetBoyView.java | [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
SerializerBase.java | [all...] |
/external/googletest/googlemock/docs/ |
CheatSheet.md | 427 | `ACTION(Sum) { return arg0 + arg1; }` | Defines an action `Sum()` to return the sum of the mock function's argument #0 and #1. | 429 | `ACTION_P(Plus, n) { return arg0 + n; }` | Defines an action `Plus(n)` to return the sum of the mock function's argument #0 and `n`. |
|
/external/googletest/googlemock/docs/v1_5/ |
CheatSheet.md | 390 | `ACTION(Sum) { return arg0 + arg1; }` | Defines an action `Sum()` to return the sum of the mock function's argument #0 and #1. | 392 | `ACTION_P(Plus, n) { return arg0 + n; }` | Defines an action `Plus(n)` to return the sum of the mock function's argument #0 and `n`. |
|
/external/googletest/googlemock/docs/v1_6/ |
CheatSheet.md | 399 | `ACTION(Sum) { return arg0 + arg1; }` | Defines an action `Sum()` to return the sum of the mock function's argument #0 and #1. | 401 | `ACTION_P(Plus, n) { return arg0 + n; }` | Defines an action `Plus(n)` to return the sum of the mock function's argument #0 and `n`. |
|
/external/googletest/googlemock/docs/v1_7/ |
CheatSheet.md | 421 | `ACTION(Sum) { return arg0 + arg1; }` | Defines an action `Sum()` to return the sum of the mock function's argument #0 and #1. | 423 | `ACTION_P(Plus, n) { return arg0 + n; }` | Defines an action `Plus(n)` to return the sum of the mock function's argument #0 and `n`. |
|
/external/llvm/lib/Target/X86/ |
X86CallingConv.td | 475 // Pass in VM's registers: HP, P, ARG0, ARG1, ARG2, ARG3 754 // Pass in VM's registers: HP, P, ARG0, ARG1, ARG2 [all...] |
/external/ltp/testcases/kernel/fs/fsx-linux/ |
fsx-linux.c | 174 void log4(int operation, int arg0, int arg1, int arg2, struct timeval *tv) 181 le->args[0] = arg0;
|
/external/testng/src/main/java/org/testng/ |
TestRunner.java | [all...] |
/external/v8/src/compiler/ |
code-assembler.cc | [all...] |
/prebuilts/devtools/tools/lib/ |
swtmenubar.jar | |
/prebuilts/go/darwin-x86/src/runtime/ |
traceback.go | 584 arg0 := frame.sp + sys.MinFrameSize 585 mv = *(**reflectMethodValue)(unsafe.Pointer(arg0)) [all...] |