Searched refs:SystemPropsItem (Results 1 – 5 of 5) sorted by relevance
32 SystemPropsItem item = new SystemPropsItem(); in testToJson()40 assertTrue(output.has(SystemPropsItem.LINES)); in testToJson()41 assertTrue(output.get(SystemPropsItem.LINES) instanceof JSONObject); in testToJson()42 assertTrue(output.has(SystemPropsItem.TEXT)); in testToJson()43 assertEquals("[foo]: [123]\n[bar]: [456]", output.get(SystemPropsItem.TEXT)); in testToJson()45 JSONObject lines = output.getJSONObject(SystemPropsItem.LINES); in testToJson()
18 import com.android.loganalysis.item.SystemPropsItem;38 public SystemPropsItem parse(List<String> lines) { in parse()44 SystemPropsItem item = new SystemPropsItem(); in parse()
30 import com.android.loganalysis.item.SystemPropsItem;208 mBugreport.setSystemProps((SystemPropsItem) getSection(mSystemPropsParser)); in commit()
181 public SystemPropsItem getSystemProps() { in getSystemProps()182 return (SystemPropsItem) getAttribute(SYSTEM_PROPS); in getSystemProps()188 public void setSystemProps(SystemPropsItem systemProps) { in setSystemProps()
25 public class SystemPropsItem extends GenericMapItem<String> { class