Searched defs:currentValue (Results 1 - 25 of 61) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DLegacyStyleInterpolation.h22 AnimatedStyleBuilder::applyProperty(m_id, state, currentValue().get());
26 PassRefPtrWillBeRawPtr<AnimatableValue> currentValue() const function in class:blink::LegacyStyleInterpolation
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatedEnumeration.h56 SVGEnumeration<Enum>* currentValue() function in class:blink::SVGAnimatedEnumeration
58 return static_cast<SVGEnumeration<Enum>*>(SVGAnimatedEnumerationBase::currentValue());
61 const SVGEnumeration<Enum>* currentValue() const function in class:blink::SVGAnimatedEnumeration
63 return static_cast<const SVGEnumeration<Enum>*>(SVGAnimatedEnumerationBase::currentValue());
H A DSVGPathBlender.cpp66 float currentValue = blend(fromValue, toValue, m_progress); local
67 return m_toMode == AbsoluteCoordinates ? animValue + currentValue : animValue - currentValue;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDateTimeChooserParams.h46 WebString currentValue; member in struct:blink::WebDateTimeChooserParams
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateTimeChooser.h56 String currentValue; member in struct:blink::DateTimeChooserParameters
H A DStepRange.cpp74 Decimal StepRange::alignValueForStep(const Decimal& currentValue, const Decimal& newValue) const argument
80 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
H A DInputType.cpp152 String currentValue = element().value(); local
153 if (currentValue == element().defaultValue())
155 return FormControlState(currentValue);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGAnimatedProperty.h113 Property* currentValue() function in class:blink::SVGAnimatedPropertyCommon
118 const Property* currentValue() const function in class:blink::SVGAnimatedPropertyCommon
120 return const_cast<SVGAnimatedPropertyCommon*>(this)->currentValue();
125 return currentValue();
196 // Use currentValue() from C++ code.
219 return this->currentValue()->value();
266 // Use currentValue() from C++ code.
281 m_animValTearOff = TearOffType::create(this->currentValue(), this->contextElement(), PropertyIsAnimVal, this->attributeName());
296 m_animValTearOff->setTarget(this->currentValue());
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DVertexBuffer11.cpp68 gl::Error VertexBuffer11::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
104 input = reinterpret_cast<const uint8_t*>(currentValue.FloatValues);
112 gl::VertexFormat vertexFormat(attrib, currentValue.Type);
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_win.cc31 "currentValue",
107 VARIANT currentValue; local
108 if (acc_obj->get_currentValue(&currentValue) == S_OK)
109 dict->SetDouble("currentValue", V_R8(&currentValue));
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElementTypes.h135 double currentValue() const { return m_currentValue; } function in class:blink::MediaControlTimeDisplayElement
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DVertexBuffer.cpp92 gl::Error VertexBufferInterface::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
116 error = mVertexBuffer->storeVertexAttributes(attrib, currentValue, start, count, instances, mWritePosition);
167 const gl::VertexAttribCurrentValueData &currentValue) const
185 gl::VertexFormat vertexFormat(attrib, currentValue.Type);
285 gl::Error StaticVertexBufferInterface::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
289 gl::Error error = VertexBufferInterface::storeVertexAttributes(attrib, currentValue, start, count, instances, &streamOffset);
H A DVertexDataManager.cpp167 const gl::VertexAttribCurrentValueData &currentValue) const
179 !staticBuffer->directStoragePossible(attrib, currentValue))
187 const gl::VertexAttribCurrentValueData &currentValue,
196 if (!vertexBuffer->directStoragePossible(attrib, currentValue))
227 const gl::VertexAttribCurrentValueData &currentValue,
239 bool directStorage = vertexBuffer->directStoragePossible(attrib, currentValue);
263 gl::Error error = staticBuffer->storeVertexAttributes(attrib, currentValue, -startIndex, totalCount,
289 error = mStreamingBuffer->storeVertexAttributes(attrib, currentValue, start, totalCount, instances, &streamOffset);
302 translated->currentValueType = currentValue.Type;
310 const gl::VertexAttribCurrentValueData &currentValue,
186 reserveSpaceForAttrib(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, GLsizei count, GLsizei instances) const argument
226 storeAttribute(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, TranslatedAttribute *translated, GLint start, GLsizei count, GLsizei instances) argument
309 storeCurrentValue(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, TranslatedAttribute *translated, gl::VertexAttribCurrentValueData *cachedValue, size_t *cachedOffset, StreamingVertexBufferInterface *buffer) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DVertexBuffer9.cpp65 gl::Error VertexBuffer9::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
110 input = reinterpret_cast<const uint8_t*>(currentValue.FloatValues);
118 gl::VertexFormat vertexFormat(attrib, currentValue.Type);
/external/chromium_org/third_party/webrtc/modules/video_capture/
H A Ddevice_info_impl.cc300 const DelayValue& currentValue = delayValues[device].delayValues[delayIndex]; local
302 const int32_t diffWidth = currentValue.width - width;
303 const int32_t diffHeight = currentValue.height - height;
323 bestWidth = currentValue.width;
324 bestHeight = currentValue.height;
325 bestDelay = currentValue.delay;
331 bestWidth = currentValue.width;
332 bestHeight = currentValue.height;
333 bestDelay = currentValue.delay;
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DExpressionEvaluator.java62 private Value currentValue; field in class:ExpressionEvaluator
82 assert currentValue == null;
85 Value result = currentValue;
86 currentValue = null;
245 currentValue = value;
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp304 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue(); local
310 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderConverter.cpp299 CSSPrimitiveValue* currentValue = toCSSPrimitiveValue(it.value()); local
300 if (currentValue->getValueID() == CSSValueSpan) {
303 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
306 if (currentValue && currentValue->isNumber()) {
307 gridLineNumber = currentValue->getIntValue();
309 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
312 if (currentValue && currentValue->isString()) {
313 gridLineName = currentValue
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextAreaElement.cpp293 const String& currentValue = innerEditorValue(); local
294 unsigned currentLength = computeLengthForSubmission(currentValue);
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DHTTPParsers.cpp471 XFrameOptionsDisposition currentValue = XFrameOptionsNone; local
473 currentValue = XFrameOptionsDeny;
475 currentValue = XFrameOptionsSameOrigin;
477 currentValue = XFrameOptionsAllowAll;
479 currentValue = XFrameOptionsInvalid;
482 result = currentValue;
483 else if (result != currentValue)
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebThemeEngine.h78 int currentValue; member in struct:blink::WebThemeEngine::ScrollbarInfo
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_reader.cpp195 currentValue().setComment( commentsBefore_, commentBefore );
215 currentValue() = true;
218 currentValue() = false;
221 currentValue() = Value();
230 lastValue_ = &currentValue();
476 currentValue() = Value( objectValue );
500 Value &value = currentValue()[ name ];
533 currentValue() = Value( arrayValue );
544 Value &value = currentValue()[ index++ ];
618 currentValue()
822 Reader::currentValue() function in class:Json::Reader
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_reader.cpp193 currentValue().setComment( commentsBefore_, commentBefore );
213 currentValue() = true;
216 currentValue() = false;
219 currentValue() = Value();
228 lastValue_ = &currentValue();
474 currentValue() = Value( objectValue );
498 Value &value = currentValue()[ name ];
531 currentValue() = Value( arrayValue );
542 Value &value = currentValue()[ index++ ];
616 currentValue()
820 Reader::currentValue() function in class:Json::Reader
[all...]
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractReferenceMap.java747 V currentValue; field in class:AbstractReferenceMap.ReferenceIteratorBase
773 currentValue = null;
803 currentValue = nextValue;
826 currentValue = null;
/external/libnfc-nxp/src/
H A DphFriNfc_LlcpTransport.c532 bool_t currentValue; local
534 currentValue = transport->bSendPending;
537 return currentValue;

Completed in 3124 milliseconds

123