Searched refs:curValue (Results 1 – 4 of 4) sorted by relevance
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 …]
3643 final int curValue = w.mSystemUiVisibility; in updateSystemUiVisibility()3644 final int diff = (curValue ^ visibility) & globalDiff; in updateSystemUiVisibility()3645 final int newValue = (curValue & ~diff) | (visibility & diff); in updateSystemUiVisibility()3646 if (newValue != curValue) { in updateSystemUiVisibility()3650 if (newValue != curValue || w.mAttrs.hasSystemUiListeners) { in updateSystemUiVisibility()
365 boolean curValue = which.get(op, false); in evalForegroundWatchers()368 for (int cbi = callbacks.size() - 1; !curValue && cbi >= 0; cbi--) { in evalForegroundWatchers()372 curValue = true; in evalForegroundWatchers()376 which.put(op, curValue); in evalForegroundWatchers()