#!/usr/bin/perl -w use strict; use IO::Handle; die "Usage: $0 identifier\n" . "(identifier is for example org.libreoffice)" unless $#ARGV == 0; my $id = $ARGV[0]; open (LOGCAT, "adb logcat |") || die "Could not open pipe from adb logcat"; my $pid = ''; while () { if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) { $pid = $1; } elsif (m!^[EIWD]/[^(]+\( *$pid\)!) { print $_; STDOUT->flush(); } } logo'/> index : lo/core
LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/icon-themes/tango_svg
a: use 'Integer.valueOf' instead of 'new Integer'
AgeCommit message (Expand)Author
2020-04-29Remove tango icon theme, tdf#132022Rizal Muttaqin
2019-06-13tdf#125879 Change Wrap Through Icon in Breezeandreas kainz
2019-03-26Clean up tango_svg/cmd/lc_splitcell.svgIlmari Lauhakangas
2019-03-20i#119731 Add icons for InsertHyperlinkControlShubham Goyal
2019-03-19Cleaned up Tango SVG iconsIlmari Lauhakangas
2018-07-19Fix typosAndrea Gelmini
2018-03-16Tango icons: move svg and xcf source files to tango_svgandreas kainz
Noel Grandin
2014-08-19java: use Boolean.valueOf instead of instantiating Boolean objectsNoel Grandin
2014-08-19java: classes in java.lang package do not need to be fully qualifiedNoel Grandin
2014-08-14java: remove commented out codeNoel Grandin
2014-08-12java: add @Override annotation to overriding methodsNoel Grandin
2014-08-08java: remove redundant null checksNoel Grandin
2014-08-08java: remove unused importsNoel Grandin
2014-08-08java: remove dead methodsNoel Grandin
2014-08-05java: remove commented out codeNoel Grandin
2014-08-04java: remove some casting in lib.TestParameters#getMSFNoel Grandin