HomeSort by relevance Sort by last modified time
    Searched refs:SystemPropsItem (Results 1 - 6 of 6) sorted by null

  /tools/loganalysis/tests/src/com/android/loganalysis/item/
SystemPropsItemTest.java 24 * Unit test for {@link SystemPropsItem}.
29 * Test that {@link SystemPropsItem#toJson()} returns correctly.
32 SystemPropsItem item = new SystemPropsItem();
40 assertTrue(output.has(SystemPropsItem.LINES));
41 assertTrue(output.get(SystemPropsItem.LINES) instanceof JSONObject);
42 assertTrue(output.has(SystemPropsItem.TEXT));
43 assertEquals("[foo]: [123]\n[bar]: [456]", output.get(SystemPropsItem.TEXT));
45 JSONObject lines = output.getJSONObject(SystemPropsItem.LINES);
  /tools/loganalysis/src/com/android/loganalysis/parser/
SystemPropsParser.java 18 import com.android.loganalysis.item.SystemPropsItem;
35 * @return The {@link SystemPropsItem}.
38 public SystemPropsItem parse(List<String> lines) {
44 SystemPropsItem item = new SystemPropsItem();
BugreportParser.java 30 import com.android.loganalysis.item.SystemPropsItem;
208 mBugreport.setSystemProps((SystemPropsItem) getSection(mSystemPropsParser));
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
SystemPropsParserTest.java 18 import com.android.loganalysis.item.SystemPropsItem;
40 SystemPropsItem map = new SystemPropsParser().parse(inputBlock);
60 SystemPropsItem map = new SystemPropsParser().parse(inputBlock);
71 SystemPropsItem item = new SystemPropsParser().parse(Arrays.asList(""));
  /tools/loganalysis/src/com/android/loganalysis/item/
SystemPropsItem.java 25 public class SystemPropsItem extends GenericMapItem<String> {
BugreportItem.java 179 * Get the {@link SystemPropsItem} of the bugreport.
181 public SystemPropsItem getSystemProps() {
182 return (SystemPropsItem) getAttribute(SYSTEM_PROPS);
186 * Set the {@link SystemPropsItem} of the bugreport.
188 public void setSystemProps(SystemPropsItem systemProps) {

Completed in 543 milliseconds