Home
last modified time | relevance | path

Searched refs:Parser (Results 1 – 7 of 7) sorted by relevance

/art/compiler/driver/
Dsimple_compiler_options_map.h49 using Parser = CmdlineParser<SimpleParseArgumentMap, SimpleParseArgumentMapKey>; variable
51 static inline Parser CreateSimpleParser(bool ignore_unrecognized) { in CreateSimpleParser()
52 std::unique_ptr<Parser::Builder> parser_builder = in CreateSimpleParser()
53 std::make_unique<Parser::Builder>(); in CreateSimpleParser()
/art/dex2oat/
Ddex2oat_options.cc53 using Parser = CmdlineParser<Dex2oatArgumentMap, Dex2oatArgumentMap::Key>; typedef
54 using Builder = Parser::Builder;
189 static Parser CreateArgumentParser() { in CreateArgumentParser()
269 Parser parser = CreateArgumentParser(); in Parse()
/art/tools/ahat/src/test/com/android/ahat/
DTestDump.java25 import com.android.ahat.heapdump.Parser;
128 mSnapshot = new Parser(hprof).map(map).retained(mRetained).parse(); in load()
138 mBaseline = new Parser(hprofBase).map(map).retained(mRetained).parse(); in load()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DParser.java55 public class Parser { class
66 public Parser(ByteBuffer hprof) { in Parser() method in Parser
76 public Parser(File hprof) throws IOException { in Parser() method in Parser
86 public Parser map(ProguardMap map) { in map()
100 public Parser progress(Progress progress) { in progress()
114 public Parser retained(Reachability retained) { in retained()
145 return new Parser(hprof).map(map).parse(); in parseHeapDump()
159 return new Parser(hprof).map(map).parse(); in parseHeapDump()
/art/tools/ahat/src/main/com/android/ahat/
DMain.java22 import com.android.ahat.heapdump.Parser;
70 return new Parser(hprof).map(map).progress(progress).retained(retained).parse(); in loadHeapDump()
/art/tools/ahat/etc/
Dahat_api.txt173 public class Parser {
174 ctor public Parser(java.nio.ByteBuffer);
175 ctor public Parser(java.io.File) throws java.io.IOException;
176 method public com.android.ahat.heapdump.Parser map(com.android.ahat.proguard.ProguardMap);
180 method public com.android.ahat.heapdump.Parser progress(com.android.ahat.progress.Progress);
181 method public com.android.ahat.heapdump.Parser retained(com.android.ahat.heapdump.Reachability);
/art/cmdline/
DREADME.md12 ## Cmdline Parser