Home
last modified time | relevance | path

Searched refs:theValue (Results 1 – 2 of 2) sorted by relevance

/external/srec/srec/Semproc/src/
DSemanticResultImpl.c107 LCHAR* theValue; in SR_SemanticResult_GetValue() local
110 CHKLOG(rc, impl->results->get(impl->results, key, (void **)&theValue)); in SR_SemanticResult_GetValue()
111 if (LSTRLEN(theValue) + 1 > *len) in SR_SemanticResult_GetValue()
113 *len = LSTRLEN(theValue) + 1; in SR_SemanticResult_GetValue()
114 PLogError(L("ESR_BUFFER_OVERFLOW, requires len>=%d"), LSTRLEN(theValue) + 1); in SR_SemanticResult_GetValue()
117 LSTRCPY(value, theValue); in SR_SemanticResult_GetValue()
/external/webkit/Source/WebCore/html/
DHTMLMeterElement.cpp183 double theValue = value(); in gaugeRegion() local
188 if (theValue <= lowValue) in gaugeRegion()
190 if (theValue <= highValue) in gaugeRegion()
197 if (highValue <= theValue) in gaugeRegion()
199 if (lowValue <= theValue) in gaugeRegion()
207 if (lowValue <= theValue && theValue <= highValue) in gaugeRegion()