Searched refs:curValue (Results 1 – 5 of 5) sorted by relevance
130 NodeData curValue = null; in buildNode() local137 if (curValue != null) in buildNode()139 curValue = new NodeData(child.getText()); in buildNode()143 if (curValue == null || curValue.getPath() != null) in buildNode()145 curValue.setPath(child.getText()); in buildNode()151 if (curValue == null || curValue.getValue() != null) in buildNode()153 curValue.setValue(child.getText()); in buildNode()154 values.add(curValue); in buildNode()155 curValue = null; in buildNode()178 if (curValue == null) in buildNode()[all …]
126 NodeData curValue = null; in buildNode() local133 if (curValue != null) in buildNode()135 curValue = new NodeData(child.getText()); in buildNode()139 if (curValue == null || curValue.getPath() != null) in buildNode()141 curValue.setPath(child.getText()); in buildNode()147 if (curValue == null || curValue.getValue() != null) in buildNode()149 curValue.setValue(child.getText()); in buildNode()150 values.add(curValue); in buildNode()151 curValue = null; in buildNode()174 if (curValue == null) in buildNode()[all …]
120 Object curValue = super.getValue(); in setValueAtIndex() local121 if (curValue == null || !curValue.getClass().isArray()) { in setValueAtIndex()125 curValue = value; in setValueAtIndex()128 Array.set(curValue, index, value); in setValueAtIndex()
370 String curValue = null; in readKeyValueAssignments() local385 if ((curValue = scanner.tryEat(stringPattern)) != null) { in readKeyValueAssignments()386 newVals.put(curKey, curValue.substring(1, curValue.length() - 1)); in readKeyValueAssignments()387 } else if ((curValue = scanner.tryEat(referencePattern)) != null) { in readKeyValueAssignments()388 String refName = curValue.substring(1, curValue.length()); in readKeyValueAssignments()397 } else if ((curValue = scanner.tryEat(booleanPattern)) != null) { in readKeyValueAssignments()398 newVals.put(curKey, Boolean.parseBoolean(curValue)); in readKeyValueAssignments()399 } else if ((curValue = scanner.tryEat(floatPattern)) != null) { in readKeyValueAssignments()400 newVals.put(curKey, Float.parseFloat(curValue)); in readKeyValueAssignments()401 } else if ((curValue = scanner.tryEat(intPattern)) != null) { in readKeyValueAssignments()[all …]
9971 int curValue = ws.mSystemUiVisibility; in updateStatusBarVisibilityLocked() local9972 int diff = (curValue ^ visibility) & globalDiff; in updateStatusBarVisibilityLocked()9973 int newValue = (curValue&~diff) | (visibility&diff); in updateStatusBarVisibilityLocked()9974 if (newValue != curValue) { in updateStatusBarVisibilityLocked()9978 if (newValue != curValue || ws.mAttrs.hasSystemUiListeners) { in updateStatusBarVisibilityLocked()