Searched refs:inValue (Results 1 - 8 of 8) sorted by relevance

/external/webkit/JavaScriptGlue/
H A DJSUtils.cpp46 static CFTypeRef KJSValueToCFTypeInternal(JSValue inValue, ExecState *exec, ObjectImpList* inImps);
103 JSUserObject* KJSValueToJSObject(JSValue inValue, ExecState *exec) argument
107 if (inValue.inherits(&UserObjectImp::info)) {
108 UserObjectImp* userObjectImp = static_cast<UserObjectImp *>(asObject(inValue));
113 JSValueWrapper* wrapperValue = new JSValueWrapper(inValue);
199 CFTypeRef KJSValueToCFTypeInternal(JSValue inValue, ExecState *exec, ObjectImpList* inImps) argument
201 if (!inValue)
208 if (inValue.isBoolean())
210 result = inValue.toBoolean(exec) ? kCFBooleanTrue : kCFBooleanFalse;
215 if (inValue
361 KJSValueToCFType(JSValue inValue, ExecState *exec) argument
[all...]
H A DJSUtils.h58 JSUserObject *KJSValueToJSObject(JSValue inValue, ExecState *exec);
59 CFTypeRef KJSValueToCFType(JSValue inValue, ExecState *exec);
H A DJSValueWrapper.cpp36 JSValueWrapper::JSValueWrapper(JSValue inValue) argument
37 : fValue(inValue)
/external/webkit/JavaScriptCore/runtime/
H A DJSONObject.cpp663 JSValue inValue = unfiltered; local
673 ASSERT(inValue.isObject());
674 ASSERT(isJSArray(&m_exec->globalData(), asObject(inValue)) || asObject(inValue)->inherits(&JSArray::info));
680 JSArray* array = asArray(inValue);
704 inValue = array->getIndex(index);
708 inValue = slot.getValue(m_exec, index);
710 inValue = jsUndefined();
713 if (inValue.isObject()) {
717 outValue = inValue;
[all...]
/external/webkit/WebCore/bindings/js/
H A DSerializedScriptValue.cpp267 InputType inValue = in; local
275 ASSERT(context.isArray(inValue));
281 InputArray inArray = context.asInputArray(inValue);
316 inValue = context.getIndex(array, index);
319 inValue = context.getSparseIndex(array, index, hasIndex);
326 if (OutputType transformed = context.convertIfTerminal(inValue))
342 ASSERT(context.isObject(inValue));
347 InputObject inObject = context.asInputObject(inValue);
381 inValue = context.getProperty(object, properties[index], index);
386 if (OutputType transformed = context.convertIfTerminal(inValue))
639 serialize(ExecState* exec, JSValue inValue) argument
[all...]
/external/expat/lib/
H A Dxmltok_impl.c1434 enum { other, inName, inValue } state = inName; enumerator in enum:__anon2129
1436 int open = 0; /* defined when state == inValue;
1460 if (state != inValue) {
1463 state = inValue;
1474 if (state != inValue) {
1477 state = inValue;
1494 else if (state == inValue
1508 else if (state == inValue && nAtts < attsMax)
1513 if (state != inValue)
/external/webkit/WebCore/css/
H A DCSSStyleSelector.h159 static bool createTransformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
H A DCSSStyleSelector.cpp6127 bool CSSStyleSelector::createTransformOperations(CSSValue* inValue, RenderStyle* style, RenderStyle* rootStyle, TransformOperations& outOperations) argument
6132 if (inValue && !inValue->isPrimitiveValue()) {
6133 CSSValueList* list = static_cast<CSSValueList*>(inValue);

Completed in 879 milliseconds