Searched refs:nextValue (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DBasicIterator.java28 private V nextValue; field in class:BasicIterator
48 if (nextValue == null) {
50 nextValue = forwardCursor.next(lockMode);
54 return nextValue != null;
62 V v = nextValue;
63 nextValue = null;
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/
H A Dqebind.c71 struct BindValue *nextValue; /* list of BindValues matching event */ member in struct:BindValue
374 valuePtr = valuePtr->nextValue;
533 BindValue *nextValue = valuePtr->nextValue; local
537 valuePtr = nextValue;
660 valuePtr->nextValue = (BindValue *) Tcl_GetHashValue(hPtr);
719 valuePtr = valuePtr->nextValue;
776 if (valuePtr->nextValue == NULL)
787 Tcl_SetHashValue(hPtr, valuePtr->nextValue);
795 if (listPtr->nextValue
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DStyleProperties.cpp410 RefPtr<CSSValue> nextValue = values[j + 1]; local
411 if (nextValue->isValueList())
412 yValue = toCSSValueList(nextValue.get())->itemWithoutBoundsCheck(i);
414 yValue = nextValue;
H A DCSSParser.cpp4785 if (auto* nextValue = m_valueList->next()) {
4786 if (!isForwardSlashOperator(nextValue) && !parseIntegerOrCustomIdentFromGridPosition(numericValue, gridLineName))
6144 CSSParserValue* nextValue = m_valueList->next(); local
6145 bool nextValBreaksFont = !nextValue ||
6146 (nextValue->unit == CSSParserValue::Operator && nextValue->iValue == ',');
6147 bool nextValIsFontName = nextValue &&
6148 ((nextValue->id >= CSSValueSerif && nextValue->id <= CSSValueWebkitBody) ||
6149 (nextValue
[all...]

Completed in 137 milliseconds