Searched refs:Arg (Results 1 - 23 of 23) sorted by relevance

/frameworks/native/cmds/lshal/
H A Dmain.cpp21 return Lshal{}.main(Arg{argc, argv});
H A DDebugCommand.h36 Status main(const Arg &arg) override;
41 Status parseArgs(const Arg &arg);
H A DCommand.h34 virtual Status main(const Arg &arg) = 0;
H A DHelpCommand.h36 Status main(const Arg &arg) override;
H A DDebugCommand.cpp34 Status DebugCommand::parseArgs(const Arg &arg) {
54 Status DebugCommand::main(const Arg &arg) {
H A DHelpCommand.cpp32 Status HelpCommand::main(const Arg &arg) {
H A DLshal.h42 Status main(const Arg &arg);
63 Status parseArgs(const Arg &arg);
H A Dutils.h52 struct Arg { struct in namespace:android::lshal
H A DListCommand.h52 Status main(const Arg &arg) override;
82 Status parseArgs(const Arg &arg);
H A DLshal.cpp165 Status Lshal::parseArgs(const Arg &arg) {
206 Status Lshal::main(const Arg &arg) {
H A Dtest.cpp144 static Arg createArg(const std::vector<const char*>& args) {
145 return Arg{static_cast<int>(args.size()), const_cast<char**>(args.data())};
189 Status parseArgs(const Arg& arg) { return ListCommand::parseArgs(arg); }
190 Status main(const Arg& arg) { return ListCommand::main(arg); }
H A DListCommand.cpp831 Status ListCommand::parseArgs(const Arg &arg) {
911 Status ListCommand::main(const Arg &arg) {
/frameworks/minikin/tests/perftests/
H A DGraphemeBreak.cpp46 ->Arg(0) // Begining of the text.
47 ->Arg(1) // Middle of the text.
48 ->Arg(12); // End of the text.
61 ->Arg(1) // Middle of emoji modifier sequence.
62 ->Arg(2) // Middle of the surrogate pairs.
63 ->Arg(3); // After emoji modifier sequence. Here is boundary of grapheme cluster.
76 ->Arg(2) // Middle of flag sequence.
77 ->Arg(4) // After flag sequence. Here is boundary of grapheme cluster.
78 ->Arg(10); // Middle of 3rd flag sequence.
H A DFontCollection.cpp103 BENCHMARK(BM_FontCollection_itemize)->Arg(0)->Arg(1)->Arg(2)->Arg(3)->Arg(4)->Arg(5)->Arg(6);
/frameworks/compile/libbcc/lib/
H A DRSX86CallConvPass.cpp60 bool IsDerefNeeded(llvm::Function *F, llvm::Argument &Arg) { argument
61 unsigned ArgNo = Arg.getArgNo();
62 llvm::Type *ArgTy = Arg.getType();
66 if (Arg.hasStructRetAttr())
97 for (auto &Arg: F->getArgumentList()) {
98 if (IsDerefNeeded(F, Arg)) {
99 ArgNums.push_back(Arg.getArgNo());
102 ALOGV("Lowering argument %u for function %s\n", Arg.getArgNo(),
H A DRSInvariant.cpp78 for (llvm::Value &Arg : F.args()) {
79 const llvm::Type *ArgType = Arg.getType();
86 Changed |= markInvariantUserLoads(&Arg);
H A DRSKernelExpand.cpp504 for (const auto &Arg : CalleeFunction.getArgumentList()) {
506 ContextArgType = Arg.getType();
536 [I32Ty](int32_t Arg) { return llvm::ConstantInt::get(I32Ty, Arg); });
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp31 #include <llvm/Option/Arg.h>
264 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Color)) {
281 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Verbose)) {
293 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_ErrorLimit)) {
305 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_WarningLimit)) {
323 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Triple)) {
339 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Emulation)) {
342 } else if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Arch)) {
347 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_CPU)) {
354 if (llvm::opt::Arg* ar
[all...]
/frameworks/base/libs/hwui/tests/microbench/
H A DDisplayListCanvasBench.cpp193 BENCHMARK(BM_DisplayListCanvas_basicViewGroupDraw)->Arg(1)->Arg(5)->Arg(10);
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dfunction_traits.h35 using Arg = typename std::tuple_element<Index, Args>::type;
H A Dremote_method.h30 std::is_same<typename RemoteMethodType::Traits::template Arg<0>,
/frameworks/compile/slang/
H A Drs_cc_options.cpp22 #include "llvm/Option/Arg.h"
138 const llvm::opt::Arg *A = *it;
147 if (const llvm::opt::Arg *A = Args.getLastArg(OPT_M_Group)) {
169 if (const llvm::opt::Arg *A = Args.getLastArg(OPT_Output_Type_Group)) {
216 llvm::opt::Arg *lastBitwidthArg = Args.getLastArg(OPT_m32, OPT_m64);
H A Dslang_rs_reflection.cpp1482 for (const auto &Arg : Args) {
1488 mOut << Arg.second;

Completed in 490 milliseconds