Home
last modified time | relevance | path

Searched refs:rawArgs (Results 1 – 5 of 5) sorted by relevance

/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
DInvocationHandlerAdapter.java67 Object interceptEntryHook(final Object mock, final Method method, final Object[] rawArgs, in interceptEntryHook() argument
70 Object[] args = rawArgs; in interceptEntryHook()
71 if (rawArgs == null) { in interceptEntryHook()
98 public Object invoke(final Object proxy, final Method method, final Object[] rawArgs) throws
101 Object[] args = rawArgs;
102 if (rawArgs == null) {
117 return ProxyBuilder.callSuper(proxy, method, rawArgs);
/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
DInvocationHandlerAdapter.java42 public Object invoke(final Object proxy, final Method method, final Object[] rawArgs) in invoke() argument
45 Object[] args = rawArgs != null ? rawArgs : new Object[0]; in invoke()
57 return ProxyBuilder.callSuper(proxy, method, rawArgs); in invoke()
/external/llvm-project/lldb/source/Expression/
DIRInterpreter.cpp1404 static lldb_private::ABI::CallArgument rawArgs[16]; in Interpret() local
1443 rawArgs[i].size = dataSize; in Interpret()
1444 rawArgs[i].data_up.reset(new uint8_t[dataSize + 1]); in Interpret()
1447 execution_unit.ReadMemory(rawArgs[i].data_up.get(), addr, dataSize, in Interpret()
1453 rawArgs[i].data_up[dataSize] = '\0'; in Interpret()
1454 rawArgs[i].type = lldb_private::ABI::CallArgument::HostPointer; in Interpret()
1457 rawArgs[i].type = lldb_private::ABI::CallArgument::TargetValue; in Interpret()
1459 rawArgs[i].size = arg_ty->getIntegerBitWidth() / 8; in Interpret()
1461 rawArgs[i].value = tmp_op.ULongLong(); in Interpret()
1466 llvm::ArrayRef<lldb_private::ABI::CallArgument> args(rawArgs, numArgs); in Interpret()
/external/skia/src/sksl/dsl/priv/
DDSLWriter.cpp156 SkTArray<DSLExpression> rawArgs) { in Construct() argument
158 args.reserve_back(rawArgs.size()); in Construct()
160 for (DSLExpression& arg : rawArgs) { in Construct()
DDSLWriter.h172 SkTArray<DSLExpression> rawArgs);