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

  /external/webkit/Source/WebCore/inspector/
JavaScriptCallFrame.idl 48 [Custom] unsigned short scopeType(in int scopeIndex);
InjectedScriptSource.js 504 var scopeType = callFrame.scopeType(i);
505 scope.type = scopeTypeNames[scopeType];
507 if (scopeType === LOCAL_SCOPE)
  /external/webkit/Source/WebCore/bindings/v8/
JavaScriptCallFrame.h 58 int scopeType(int scopeIndex) const;
DebuggerScript.js 217 var scopeType = [];
223 switch (scopeMirror.scopeType()) {
224 case ScopeType.Local:
225 case ScopeType.Closure:
240 case ScopeType.Global:
241 case ScopeType.With:
242 case ScopeType.Catch:
247 scopeType.push(scopeMirror.scopeType());
262 "scopeType": scopeType
    [all...]
JavaScriptCallFrame.cpp 110 int JavaScriptCallFrame::scopeType(int scopeIndex) const
112 v8::Handle<v8::Array> scopeType = v8::Handle<v8::Array>::Cast(m_callFrame.get()->Get(v8String("scopeType")));
113 return scopeType->Get(scopeIndex)->Int32Value();
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8JavaScriptCallFrameCustom.cpp 61 return v8::Int32::New(impl->scopeType(scopeIndex));
  /external/webkit/Source/WebCore/bindings/js/
JSJavaScriptCallFrameCustom.cpp 89 JSValue JSJavaScriptCallFrame::scopeType(ExecState* exec)
  /external/v8/test/mjsunit/
debug-scopes.js 86 assertEquals(scopes[i], scope.scopeType());
89 if (scopes[i] == debug.ScopeType.Global) {
106 if (scopes[i] == debug.ScopeType.Local ||
107 scopes[i] == debug.ScopeType.Closure) {
171 assertEquals(scope.scopeType(), response.body.type);
173 if (scope.scopeType() == debug.ScopeType.Local ||
174 scope.scopeType() == debug.ScopeType.Closure) {
195 CheckScopeChain([debug.ScopeType.Local
    [all...]
  /external/srec/tools/grxmlcompile/
sub_grph.h 156 void BeginScope (int scopeType, int arg1, int arg2);
sub_grph.cpp 78 void SubGraph::BeginScope (int scopeType, int newArg1, int newArg2)
86 lastScope= scopeType;
91 switch (scopeType) {
  /external/v8/src/
mirror-debugger.js 193 ScopeType = { Global: 0,
    [all...]

Completed in 229 milliseconds