Home
last modified time | relevance | path

Searched refs:parse (Results 1 – 25 of 126) sorted by relevance

123456

/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/provider/
DTouristAttractions.java60 …Uri.parse("https://lh5.googleusercontent.com/-7fb5ybQhUbo/VGLWjIL4RmI/AAAAAAAAACM/2jLe_msj_tk/w600…
61 …Uri.parse("https://lh3.googleusercontent.com/-EFEw6s7mT6I/VGLkCH4Xt4I/AAAAAAAAADY/ZlznhaQvb8E/w600…
70 …Uri.parse("https://lh6.googleusercontent.com/-ORRJtfLQlaw/VGLmQPv3n8I/AAAAAAAAAD8/2TzSCCPzl9k/w600…
71 …Uri.parse("https://lh4.googleusercontent.com/-ch9Kk-7pD68/VGLkCNh5niI/AAAAAAAAADc/ztxkRHWX-po/w600…
80 …Uri.parse("https://lh5.googleusercontent.com/-qX43g6s92LY/VGLaTT3N35I/AAAAAAAAAC8/BbueQmch0Rw/w600…
81 …Uri.parse("https://lh6.googleusercontent.com/-SQ6T1Ure6l8/VGLaTg2iGuI/AAAAAAAAACo/m6_RkTW2G1o/w600…
90 …Uri.parse("https://lh4.googleusercontent.com/-wbNgVdUkBiE/VHe99hGVtNI/AAAAAAAAAFY/fAHfhchNLJw/w600…
91 …Uri.parse("https://lh6.googleusercontent.com/-sjY_xlEOic4/VHe9-I4DD9I/AAAAAAAAAFI/Mt0VnjU7SxQ/w600…
100 …Uri.parse("https://lh6.googleusercontent.com/-kypwDfnk674/VGLWpQPm4VI/AAAAAAAAAB0/SrfL0fE9DnE/w500…
101 …Uri.parse("https://lh3.googleusercontent.com/-6_Ioko2ysgU/VHva2PjmRCI/AAAAAAAAAGM/cHjJC7ney4Q/w500…
/development/vndk/tools/sourcedr/blueprint/tests/
Dtest_parser.py75 parser.parse()
84 parser.parse()
93 parser.parse()
102 parser.parse()
111 parser.parse()
120 parser.parse()
129 parser.parse()
138 parser.parse()
147 parser.parse()
156 parser.parse()
[all …]
Dtest_module_path.py44 parser.parse()
/development/tools/external_crates/crate_health/src/
Dname_and_version.rs59 Ok(NameAndVersion::new(name.to_string(), Version::parse(version)?)) in try_from_str()
129 && VersionReq::parse(&self.version().to_string()) in is_upgradable_to()
144 let version = Version::parse("2.3.4")?; in test_name_version_ref()
145 let compat1 = Version::parse("2.3.5")?; in test_name_version_ref()
146 let compat2 = Version::parse("2.4.0")?; in test_name_version_ref()
147 let incompat = Version::parse("3.0.0")?; in test_name_version_ref()
148 let older = Version::parse("2.3.3")?; in test_name_version_ref()
168 let version = Version::parse("2.3.4")?; in test_name_and_version()
169 let compat1 = Version::parse("2.3.5")?; in test_name_and_version()
170 let compat2 = Version::parse("2.4.0")?; in test_name_and_version()
[all …]
/development/samples/NotePad/src/com/example/android/notepad/
DNotePad.java84 public static final Uri CONTENT_URI = Uri.parse(SCHEME + AUTHORITY + PATH_NOTES);
91 = Uri.parse(SCHEME + AUTHORITY + PATH_NOTE_ID);
98 = Uri.parse(SCHEME + AUTHORITY + PATH_NOTE_ID + "/#");
104 = Uri.parse(SCHEME + AUTHORITY + PATH_LIVE_FOLDER);
/development/tools/bugreport/src/com/android/bugreport/bugreport/
DBugreportParser.java75 public void parse(String section, String command, Lines<? extends Line> lines); in parse() method
93 public Bugreport parse(Lines<? extends Line> lines) { in parse() method in BugreportParser
165 parser.parse(section, command, lines); in parseSection()
190 public void parse(String section, String command, Lines<? extends Line> lines) {
192 mBugreport.systemLog = mParser.parse(lines);
194 mBugreport.eventLog = mParser.parse(lines);
211 public void parse(String section, String command, Lines<? extends Line> lines) {
213 mBugreport.vmTracesJustNow = mParser.parse(lines);
215 mBugreport.vmTracesLastAnr = mParser.parse(lines);
/development/tools/bugreport/src/com/android/bugreport/
DMain.java78 bugreport = parser.parse(Lines.readLines(options.bugreport)); in run()
90 parser.parse(bugreport, Lines.readLines(options.monkey)); in run()
103 bugreport.logcat = parser.parse(Lines.readLines(options.logcat)); in run()
/development/tools/winscope/src/parsers/screen_recording/
Dparser_screenshot_test.ts38 await parser.parse();
62 await parserWithTimezoneInfo.parse();
/development/tools/winscope/src/parsers/view_capture/perfetto/
Dparser_view_capture.ts47 async parse() { method in ParserViewCapture
69 const parsePromises = this.windowParsers.map((parser) => parser.parse());
/development/tools/bugreport/src/com/android/bugreport/stacks/
DVmTracesParser.java52 public VmTraces parse(Lines<? extends Line> lines) { in parse() method in VmTracesParser
72 final ProcessSnapshot snapshot = parser.parse(lines); in parse()
DProcessSnapshotParser.java53 public ProcessSnapshot parse(Lines<? extends Line> lines) { in parse() method in ProcessSnapshotParser
110 final ThreadSnapshot snapshot = parser.parse(lines); in parse()
/development/tools/bugreport/src/com/android/bugreport/anr/
DAnrParser.java58 public ArrayList<Anr> parse(Lines<? extends Line> lines, boolean tryTraces) { in parse() method in AnrParser
90 final CpuUsageSnapshot snapshot = parser.parse(lines); in parse()
101 final ProcessSnapshot snapshot = parser.parse(lines); in parse()
/development/tools/winscope/src/parsers/perfetto/
Dparser_factory.ts78 await traceProcessor.parse(new Uint8Array(data));
102 await parser.parse();
/development/tools/bugreport/src/com/android/bugreport/monkey/
DMonkeyLogParser.java48 public void parse(Bugreport bugreport, Lines<? extends Line> in) throws IOException { in parse() method in MonkeyLogParser
62 final ArrayList<Anr> anrs = anrParser.parse(lines, true); in parse()
/development/samples/StackWidget/src/com/example/android/stackwidget/
DStackWidgetProvider.java70 intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME))); in onUpdate()
85 intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME))); in onUpdate()
/development/tools/winscope/src/parsers/legacy/
Dtraces_parser_factory.ts35 await parser.parse();
Dabstract_traces_parser.ts67 abstract parse(): Promise<void>; method in AbstractTracesParser
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
DFeedContract.java39 public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DUrlIntentListener.java34 final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); in onItemClick()
/development/vndk/tools/sourcedr/ninja/tests/
Dtest_ninja.py479 parser.parse(input_path, ENCODING)
492 manifest = parser.parse(input_path, ENCODING)
524 manifest = parser.parse(input_path, ENCODING)
548 manifest = parser.parse(input_path, ENCODING)
560 manifest = parser.parse(input_path, ENCODING)
572 manifest = parser.parse(input_path, ENCODING)
585 manifest = parser.parse(input_path, ENCODING)
596 MockedParser().parse(input_path, ENCODING)
605 MockedParser().parse(input_path, ENCODING)
614 MockedParser().parse(input_path, ENCODING)
[all …]
/development/samples/training/threadsample/src/com/example/android/threadsample/
DDataProviderContract.java25 public static final Uri CONTENT_URI = Uri.parse(SCHEME + "://" + AUTHORITY);
/development/tools/external_crates/crate_health/src/bin/
Dmigration_report.rs38 let args = Args::parse(); in main()
Dhealth_report.rs38 let args = Args::parse(); in main()
/development/tools/core_connectivity/
Dcheck_style.sh14 GITROOTDIR=`git rev-parse --show-toplevel`
/development/apps/ShareTest/src/com/android/sharetest/
DImageContentProvider.kt114 Uri.parse("${URI_PREFIX}img${(idx % IMAGE_COUNT) + 1}.jpg") in openFile()
131 val ICON_URI: Uri = Uri.parse("${URI_PREFIX}letter_a.png") in openFile()

123456