Home
last modified time | relevance | path

Searched refs:PushBackTail (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/libpandabase/tests/
Dpandargs_test.cpp149 EXPECT_TRUE(pa_parser.PushBackTail(&t_pai));
151 EXPECT_FALSE(pa_parser.PushBackTail(&t_pai));
158 ASSERT_FALSE(pa_parser.PushBackTail(nullptr));
574 pa_parser.PushBackTail(&t_pas);
592 pa_parser.PushBackTail(&t_pas);
593 pa_parser.PushBackTail(&t_pab);
594 pa_parser.PushBackTail(&t_pai);
595 pa_parser.PushBackTail(&t_pad);
596 pa_parser.PushBackTail(&t_pau32);
597 pa_parser.PushBackTail(&t_pau64);
[all …]
/arkcompiler/runtime_core/disassembler/
Ddisasm.cpp115 pa_parser.PushBackTail(&input_file); in main()
116 pa_parser.PushBackTail(&output_file); in main()
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc_options.h46 parser->PushBackTail(&Tail_Arg1_arg_); in AddOptions()
47 parser->PushBackTail(&Tail_Arg2_arg_); in AddOptions()
/arkcompiler/runtime_core/panda/
Dpanda.cpp161 pa_parser.PushBackTail(&file); in Main()
162 pa_parser.PushBackTail(&entrypoint); in Main()
/arkcompiler/runtime_core/assembler/
Dpandasm.cpp229 pa_parser.PushBackTail(&input_file); in main()
230 pa_parser.PushBackTail(&output_file); in main()
/arkcompiler/runtime_core/libpandabase/
DREADME.md104 - `bool PushBackTail(PandArgBase* arg)` - add tail argument to the end of tail arguments list. `fal…
114 Tail argument is a sequence of positinal arguments values. Function ```PushBackTail()``` adds an ar…
169 if (!pa_parser.PushBackTail(&pab)) {
/arkcompiler/ets_frontend/es2panda/aot/
Doptions.cpp287 argparser_->PushBackTail(&inputFile); in Parse()
/arkcompiler/runtime_core/libpandabase/utils/
Dpandargs.h234 bool PushBackTail(PandArgBase *arg) in PushBackTail() function