HomeSort by relevance Sort by last modified time
    Searched refs:InspectorValue (Results 1 - 22 of 22) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorValues.h 49 class InspectorValue : public RefCounted<InspectorValue> {
51 InspectorValue() : m_type(TypeNull) { }
52 virtual ~InspectorValue() { }
54 static PassRefPtr<InspectorValue> null()
56 return adoptRef(new InspectorValue());
79 virtual bool asValue(RefPtr<InspectorValue>* output);
85 static PassRefPtr<InspectorValue> parseJSON(const String& json);
91 explicit InspectorValue(Type type) : m_type(type) { }
97 class InspectorBasicValue : public InspectorValue {
    [all...]
InspectorValues.cpp 327 PassRefPtr<InspectorValue> buildValue(const UChar* start, const UChar* end, const UChar** valueTokenEnd, int depth)
332 RefPtr<InspectorValue> result;
339 result = InspectorValue::null();
368 RefPtr<InspectorValue> arrayNode = buildValue(start, end, &tokenEnd, depth + 1);
408 RefPtr<InspectorValue> value = buildValue(start, end, &tokenEnd, depth + 1);
479 bool InspectorValue::asBoolean(bool*) const
484 bool InspectorValue::asNumber(double*) const
489 bool InspectorValue::asNumber(long*) const
494 bool InspectorValue::asNumber(int*) const
499 bool InspectorValue::asNumber(unsigned long*) cons
    [all...]
InjectedScript.cpp 90 RefPtr<InspectorValue> result;
92 if (!result || result->type() != InspectorValue::TypeArray) {
120 RefPtr<InspectorValue> result;
129 RefPtr<InspectorValue> result;
139 RefPtr<InspectorValue> result = callFramesValue.toInspectorValue(m_injectedScriptObject.scriptState());
140 if (result->type() == InspectorValue::TypeArray)
173 RefPtr<InspectorValue> result;
190 void InjectedScript::makeCall(ScriptFunctionCall& function, RefPtr<InspectorValue>* result)
193 *result = InspectorValue::null();
209 RefPtr<InspectorValue> result
    [all...]
InjectedScriptManager.cpp 86 RefPtr<InspectorValue> parsedObjectId = InspectorValue::parseJSON(objectId);
87 if (parsedObjectId && parsedObjectId->type() == InspectorValue::TypeObject) {
InspectorState.cpp 48 RefPtr<InspectorValue> cookie = InspectorValue::parseJSON(inspectorStateCookie);
71 void InspectorState::setValue(const String& propertyName, PassRefPtr<InspectorValue> value)
InspectorApplicationCacheAgent.h 42 class InspectorValue;
InspectorRuntimeAgent.h 45 class InspectorValue;
InjectedScript.h 45 class InspectorValue;
82 void makeCall(ScriptFunctionCall&, RefPtr<InspectorValue>* result);
InjectedScriptHost.cpp 119 void InjectedScriptHost::inspectImpl(PassRefPtr<InspectorValue> object, PassRefPtr<InspectorValue> hints)
InjectedScriptHost.h 100 void inspectImpl(PassRefPtr<InspectorValue> objectToInspect, PassRefPtr<InspectorValue> hints);
InspectorDebuggerAgent.h 53 class InspectorValue;
90 void schedulePauseOnNextStatement(DebuggerEventType type, PassRefPtr<InspectorValue> data);
92 void breakProgram(DebuggerEventType type, PassRefPtr<InspectorValue> data);
InspectorState.h 68 void setValue(const String& propertyName, PassRefPtr<InspectorValue>);
InspectorStyleSheet.h 63 RefPtr<InspectorValue> ordinalValue = value->get("ordinal");
79 PassRefPtr<InspectorValue> asInspectorValue() const
82 return InspectorValue::null();
CodeGeneratorInspector.pm 122 "param" => "PassRefPtr<InspectorValue>",
123 "variable" => "RefPtr<InspectorValue>",
124 "defaultValue" => "InspectorValue::null()",
125 "forward" => "InspectorValue",
540 message->setValue("id", InspectorValue::null());
603 RefPtr<InspectorValue> parsedMessage = InspectorValue::parseJSON(message);
615 RefPtr<InspectorValue> callIdValue = messageObject->get("id");
626 RefPtr<InspectorValue> methodValue = messageObject->get("method");
655 RefPtr<InspectorValue> value = InspectorValue::parseJSON(message)
    [all...]
ConsoleMessage.cpp 148 RefPtr<InspectorValue> inspectorValue = injectedScript.wrapObject(m_arguments->argumentAt(i), "console");
149 if (!inspectorValue) {
153 jsonArgs->pushValue(inspectorValue);
InspectorAgent.h 72 class InspectorValue;
InspectorDebuggerAgent.cpp 291 void InspectorDebuggerAgent::schedulePauseOnNextStatement(DebuggerEventType type, PassRefPtr<InspectorValue> data)
432 void InspectorDebuggerAgent::breakProgram(DebuggerEventType type, PassRefPtr<InspectorValue> data)
InspectorDatabaseAgent.cpp 118 case SQLValue::NullValue: values->pushValue(InspectorValue::null()); break;
  /external/webkit/Source/WebCore/bindings/js/
ScriptValue.h 44 class InspectorValue;
71 PassRefPtr<InspectorValue> toInspectorValue(ScriptState*) const;
ScriptValue.cpp 114 static PassRefPtr<InspectorValue> jsToInspectorValue(ScriptState* scriptState, JSValue value)
121 return InspectorValue::null();
137 RefPtr<InspectorValue> elementValue = jsToInspectorValue(scriptState, element);
140 elementValue = InspectorValue::null();
153 RefPtr<InspectorValue> inspectorValue = jsToInspectorValue(scriptState, propertyValue);
154 if (!inspectorValue) {
156 inspectorValue = InspectorValue::null();
158 inspectorObject->setValue(String(name.characters(), name.length()), inspectorValue);
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.cpp 76 static PassRefPtr<InspectorValue> v8ToInspectorValue(v8::Handle<v8::Value> value)
83 return InspectorValue::null();
96 RefPtr<InspectorValue> element = v8ToInspectorValue(value);
99 element = InspectorValue::null();
115 RefPtr<InspectorValue> propertyValue = v8ToInspectorValue(object->Get(name));
128 PassRefPtr<InspectorValue> ScriptValue::toInspectorValue(ScriptState* scriptState) const
ScriptValue.h 46 class InspectorValue;
160 PassRefPtr<InspectorValue> toInspectorValue(ScriptState*) const;

Completed in 675 milliseconds