Searched defs:value (Results 251 - 275 of 7203) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/socket/
H A Dtcp_client_socket.cc51 void SetTCPFastOpenEnabled(bool value) { argument
52 g_tcp_fastopen_enabled = value && SystemSupportsTCPFastOpen();
/external/chromium_org/net/tools/fetch/
H A Dfetch_server.cc50 int value = table.GetRowValue(index); local
51 printf("%s:\t%d\n", name.c_str(), value);
/external/chromium_org/ppapi/thunk/
H A Dppb_console_thunk.cc20 void Log(PP_Instance instance, PP_LogLevel level, struct PP_Var value) { argument
25 enter.functions()->Log(instance, level, value);
31 struct PP_Var value) {
36 enter.functions()->LogWithSource(instance, level, source, value);
28 LogWithSource(PP_Instance instance, PP_LogLevel level, struct PP_Var source, struct PP_Var value) argument
/external/chromium_org/remoting/base/
H A Drunning_average.cc20 void RunningAverage::Record(int64 value) { argument
23 data_points_.push_back(value);
24 sum_ += value;
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestCallback.h36 static PassRefPtr<V8TestCallback> create(v8::Handle<v8::Value> value, ScriptExecutionContext* context) argument
38 ASSERT(value->IsObject());
40 return adoptRef(new V8TestCallback(v8::Handle<v8::Object>::Cast(value), context));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptString.cpp52 v8::Handle<v8::String> value = v8::Handle<v8::String>::Cast(v8Value()); local
53 return v8StringToWebCoreString<String>(value, Externalize);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8ArrayBufferViewCustom.h47 static bool HasInstance(v8::Handle<v8::Value> value, v8::Isolate*, WrapperWorldType) argument
49 return value->IsArrayBufferView();
51 static bool HasInstanceInAnyWorld(v8::Handle<v8::Value> value, v8::Isolate*) argument
53 return value->IsArrayBufferView();
H A DV8AudioBufferSourceNodeCustom.cpp38 void V8AudioBufferSourceNode::bufferAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
44 if (V8AudioBuffer::HasInstance(value, info.GetIsolate(), worldType(info.GetIsolate()))) {
45 buffer = V8AudioBuffer::toNative(value->ToObject());
H A DV8BiquadFilterNodeCustom.cpp36 void V8BiquadFilterNode::typeAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
40 if (value->IsNumber()) {
42 uint32_t type = toUInt32(value, ok);
49 if (value->IsString()) {
50 String type = toWebCoreString(value);
H A DV8DocumentLocationCustom.cpp47 void V8Document::locationAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
63 location->setHref(active, first, toWebCoreString(value));
H A DV8IDBAnyCustom.cpp45 static v8::Handle<v8::Value> toV8(const IDBKeyPath& value, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
47 switch (value.type()) {
51 return v8String(value.string(), isolate);
54 for (Vector<String>::const_iterator it = value.array().begin(); it != value.array().end(); ++it)
H A DV8OscillatorNodeCustom.cpp36 void V8OscillatorNode::typeAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
41 if (value->IsNumber()) {
43 uint32_t type = toUInt32(value, ok);
49 if (value->IsString()) {
50 String type = toWebCoreString(value);
H A DV8PannerNodeCustom.cpp36 void V8PannerNode::panningModelAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
40 if (value->IsNumber()) {
42 uint32_t model = toUInt32(value, ok);
49 if (value->IsString()) {
50 String model = toWebCoreString(value);
60 void V8PannerNode::distanceModelAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
64 if (value->IsNumber()) {
66 uint32_t model = toUInt32(value, ok);
73 if (value->IsString()) {
74 String model = toWebCoreString(value);
[all...]
H A DV8SQLResultSetRowListCustom.cpp66 v8::Handle<v8::Value> value; local
69 value = v8String(sqlValue.string(), args.GetIsolate());
72 value = v8::Null(args.GetIsolate());
75 value = v8::Number::New(sqlValue.number());
81 item->Set(v8String(rowList->columnNames()[i], args.GetIsolate()), value, static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly));
H A DV8SVGLengthCustom.cpp48 float value = imp.value(lengthContext, es); local
51 v8SetReturnValue(info, value);
54 void V8SVGLength::valueAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
62 if (!isUndefinedOrNull(value) && !value->IsNumber() && !value->IsBoolean()) {
70 imp.setValue(static_cast<float>(value->NumberValue()), lengthContext, es);
H A DV8XSLTProcessorCustom.cpp58 String value = toWebCoreString(args[2]); local
59 imp->setParameter(namespaceURI, localName, value);
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp126 return AnimatableNumber::create(length.value(), AnimatableNumber::UnitTypeNumber);
128 return AnimatableNumber::create(adjustFloatForAbsoluteZoom(length.value(), style), AnimatableNumber::UnitTypeLength);
130 return AnimatableNumber::create(length.value(), AnimatableNumber::UnitTypePercentage);
132 return AnimatableNumber::create(length.value(), AnimatableNumber::UnitTypeViewportWidth);
134 return AnimatableNumber::create(length.value(), AnimatableNumber::UnitTypeViewportHeight);
136 return AnimatableNumber::create(length.value(), AnimatableNumber::UnitTypeViewportMin);
138 return AnimatableNumber::create(length.value(), AnimatableNumber::UnitTypeViewportMax);
161 inline static PassRefPtr<AnimatableValue> createFromDouble(double value) argument
163 return AnimatableNumber::create(value, AnimatableNumber::UnitTypeNumber);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSVariablesMap.cpp58 void CSSVariablesMap::set(const AtomicString& name, const String& value, ExceptionState& es) const argument
61 m_styleDeclaration->setVariableValue(name, value, es);
H A DDOMWindowCSS.cpp45 static String valueWithoutImportant(const String& value) argument
47 if (!value.endsWith("important", false))
48 return value;
50 String newValue = value;
59 bool DOMWindowCSS::supports(const String& property, const String& value) const
70 // there or not, provided how it's specified in the value is correct.
71 String normalizedValue = value.stripWhiteSpace().simplifyWhiteSpace();
H A DFontFeatureValue.cpp33 FontFeatureValue::FontFeatureValue(const String& tag, int value) argument
36 , m_value(value)
H A DFontFeatureValue.h36 static PassRefPtr<FontFeatureValue> create(const String& tag, int value) argument
38 return adoptRef(new FontFeatureValue(tag, value));
42 int value() const { return m_value; } function in class:WebCore::FontFeatureValue
H A DMediaQueryListListener.h35 static PassRefPtr<MediaQueryListListener> create(const ScriptValue& value) argument
37 if (!value.isFunction())
39 return adoptRef(new MediaQueryListListener(value));
46 MediaQueryListListener(const ScriptValue& value) : m_value(value) { } argument
H A DRGBColor.cpp40 unsigned value = (m_rgbColor >> 16) & 0xFF; local
41 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
48 unsigned value = (m_rgbColor >> 8) & 0xFF; local
49 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
56 unsigned value = m_rgbColor & 0xFF; local
57 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
64 float value = static_cast<float>((m_rgbColor >> 24) & 0xFF) / 0xFF; local
65 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSetNodeAttributeCommand.cpp35 const QualifiedName& attribute, const AtomicString& value)
39 , m_value(value)
34 SetNodeAttributeCommand(PassRefPtr<Element> element, const QualifiedName& attribute, const AtomicString& value) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DDOMFormData.cpp61 void DOMFormData::append(const String& name, const String& value) argument
64 appendData(name, value);

Completed in 1468 milliseconds

<<11121314151617181920>>