Home
last modified time | relevance | path

Searched refs:scopeObj (Results 1 – 2 of 2) sorted by relevance

/third_party/quickjs/
Ddebugger.c275 JSValue scopeObj = JS_NewObject(cx); in DBG_SetScopes() local
280 JS_SetPropertyStr(cx, scopeObj, "name", JS_NewString(cx, "Global")); in DBG_SetScopes()
283 JS_SetPropertyStr(cx, scopeObj, "name", JS_NewString(cx, "Locals")); in DBG_SetScopes()
286 JS_SetPropertyStr(cx, scopeObj, "name", JS_NewString(cx, "Closure")); in DBG_SetScopes()
291 JS_SetPropertyStr(cx, scopeObj, "reference", in DBG_SetScopes()
293 JS_SetPropertyStr(cx, scopeObj, "expensive", expensiveFlag); in DBG_SetScopes()
294 JS_SetPropertyUint32(cx, scopes, scopeCount, scopeObj); in DBG_SetScopes()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSpirvShader.cpp2482 auto &scopeObj = getObject(id); in GetConstScalarInt() local
2483 ASSERT(scopeObj.kind == Object::Kind::Constant); in GetConstScalarInt()
2484 ASSERT(getType(scopeObj).componentCount == 1); in GetConstScalarInt()
2485 return scopeObj.constantValue[0]; in GetConstScalarInt()