HomeSort by relevance Sort by last modified time
    Searched refs:Scope (Results 176 - 200 of 233) sorted by null

1 2 3 4 5 6 78 910

  /external/v8/src/
ast.h 1128 friend class Scope;
1707 Scope* scope() const { return scope_; } function in class:v8::internal::FunctionLiteral
    [all...]
compiler.cc 238 Scope* scope = info->scope(); local
239 if ((scope->num_parameters() + 1) > parameter_limit ||
241 scope->num_parameters() + 1 + scope->num_stack_slots() > locals_limit)) {
269 unoptimized.SetScope(info->scope());
329 if (Rewriter::Rewrite(info) && Scope::Analyze(info)) {
347 SerializedScopeInfo::Create(info->scope());
416 SerializedScopeInfo::Create(info->scope()));
    [all...]
hydrogen.h 316 Scope* scope,
677 // Forward declarations for inner scope classes.
784 void SetupScope(Scope* scope);
    [all...]
liveedit.cc 207 // place one in class scope).
599 HandleScope scope; local
673 HandleScope scope; local
707 HandleScope scope; local
718 HandleScope scope; local
734 // Saves full information about a function: its code, its scope info
736 void FunctionInfo(Handle<SharedFunctionInfo> shared, Scope* scope) {
747 Handle<Object> scope_info_list(SerializeFunctionScope(scope));
754 Object* SerializeFunctionScope(Scope* scope)
838 HandleScope scope; local
1004 HandleScope scope; local
1049 HandleScope scope; local
    [all...]
data-flow.cc 68 Scope* scope = info->scope(); local
69 int size = scope->num_parameters() + scope->num_stack_slots();
158 return info_->scope()->num_parameters() + slot->index();
full-codegen.h 509 Scope* scope() { return info_->scope(); } function in class:v8::internal::FullCodeGenerator
  /external/v8/src/mips/
codegen-mips.h 69 // reference on the execution stack while in scope. For variables
328 inline Scope* scope();
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.cpp 328 v8::Context::Scope context_scope(context_);
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 143 case Matcher::Scope: {
145 assert(SM->getNext() == 0 && "Shouldn't have next after scope");
157 OS.PadToColumn(Indent*2) << "/*Scope*/ ";
188 << " children in Scope";
195 // Emit a zero as a sentinel indicating end of 'Scope'.
200 OS << "/*End of Scope*/";
744 case Matcher::Scope: OS << "OPC_Scope"; break;
  /external/v8/test/cctest/
test-parsing.cc 188 v8::Context::Scope context_scope(context);
519 v8::Context::Scope context_scope(context);
test-disasm-arm.cc 77 v8::HandleScope scope; \
419 CpuFeatures::Scope scope(VFP3);
  /external/clang/lib/Sema/
SemaExprObjC.cpp 16 #include "clang/Sema/Scope.h"
518 // If we have implementations in scope, check "private" methods.
    [all...]
SemaExpr.cpp 36 #include "clang/Sema/Scope.h"
    [all...]
SemaExprMember.cpp 15 #include "clang/Sema/Scope.h"
93 Scope *CurScope,
107 if (CurScope->getFlags() & Scope::ThisScope)
826 // may have come from an enclosing scope). Note that it's okay for
    [all...]
SemaDeclAttr.cpp 672 static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
690 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc     [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 595 struct Scope {
596 Scope(JSGlobalData* globalData)
633 Scope m_scope;
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
process.js 251 /* -----[ Scope and mangling ]----- */
253 function Scope(parent) {
254 this.names = {}; // names defined in this scope
258 this.refs = {}; // names referenced from this scope
261 this.parent = parent; // parent scope
283 Scope.prototype = {
306 // scope, unless we don't reference the original
307 // name from this scope OR from any sub-scopes!
311 // scope, in the event that the name is not mangled
312 // in the parent scope and we reference that nam
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
DebugInfo.h 763 /// getDISubprogram - Find subprogram that is enclosing this scope.
764 DISubprogram getDISubprogram(const MDNode *Scope);
788 /// cleanseInlinedVariable - Remove inlined scope from the variable.
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 135 default: llvm_unreachable("Unknown synchronization scope");
    [all...]
  /external/v8/test/mjsunit/
debug-scopes.js 80 // Check that the scope chain contains the expected types of scopes.
84 var scope = exec_state.frame().scope(i);
85 assertTrue(scope.isScope());
86 assertEquals(scopes[i], scope.scopeType());
88 // Check the global object when hitting the global scope.
90 assertEquals(this, scope.scopeObject().value());
116 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
121 // Check that the content of the scope is as expected. For functions just check
124 var scope = exec_state.frame().scope(number
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWrapper.cpp 153 // Enter the scope for this context to get the correct constructor.
154 v8::Context::Scope scope(context);
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]

Completed in 680 milliseconds

1 2 3 4 5 6 78 910