Searched refs:curValue (Results 1 – 4 of 4) sorted by relevance
97 NodeData curValue = null; in buildNode() local103 if (curValue != null) in buildNode()105 curValue = new NodeData(child.getText()); in buildNode()108 if (curValue == null || curValue.getPath() != null) in buildNode()110 curValue.setPath(child.getText()); in buildNode()115 if (curValue == null || curValue.getValue() != null) in buildNode()117 curValue.setValue(child.getText()); in buildNode()118 values.add(curValue); in buildNode()119 curValue = null; in buildNode()139 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 …]
11027 int curValue = ws.mSystemUiVisibility; in updateStatusBarVisibilityLocked() local11028 int diff = (curValue ^ visibility) & globalDiff; in updateStatusBarVisibilityLocked()11029 int newValue = (curValue&~diff) | (visibility&diff); in updateStatusBarVisibilityLocked()11030 if (newValue != curValue) { in updateStatusBarVisibilityLocked()11034 if (newValue != curValue || ws.mAttrs.hasSystemUiListeners) { in updateStatusBarVisibilityLocked()