Searched defs:Declare (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp247 Function *Declare = M.getFunction("llvm.dbg.declare"); local
250 if (Declare) {
251 while (!Declare->use_empty()) {
252 CallInst *CI = cast<CallInst>(Declare->user_back());
267 Declare->eraseFromParent();
/external/chromium_org/v8/src/
H A Dscopes.cc22 // When inserting a new variable via Declare(), we rely on the fact that
33 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name, function in class:v8::internal::VariableMap
139 Variable* variable = variables_.Declare(this,
308 // Declare convenience variables.
309 // Declare and allocate receiver (even for the global scope, and even
318 variables_.Declare(this,
332 // Declare 'arguments' variable which exists in all functions.
335 variables_.Declare(this,
409 Variable* var = variables_.Declare(this, name, mode, true, Variable::NORMAL,
454 Variable* var = variables_.Declare(thi
[all...]
H A Dparser.cc1211 Declare(declaration, true, CHECK_OK);
1453 Declare(declaration, true, CHECK_OK);
1717 void Parser::Declare(Declaration* declaration, bool resolve, bool* ok) { function in class:v8::internal::Parser
1738 // Declare the variable in the declaration scope.
1746 // Declare the name.
1756 // compatibility). There is similar code in runtime.cc in the Declare
1852 PrintF("# Declare %.*s ", var->raw_name()->length(),
1907 Declare(declaration, true, CHECK_OK);
1948 Declare(declaration, true, CHECK_OK);
1982 Declare(declaratio
[all...]

Completed in 195 milliseconds