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
42 Variable* VariableMap::Declare( function in class:v8::internal::VariableMap
145 Variable* variable = variables_.Declare(this,
302 // Declare convenience variables.
303 // Declare and allocate receiver (even for the global scope, and even
312 variables_.Declare(this,
326 // Declare 'arguments' variable which exists in all functions.
329 variables_.Declare(this,
393 Variable* var = variables_.Declare(this, name, mode, true, Variable::NORMAL,
438 Variable* var = variables_.Declare(thi
[all...]
H A Dparser.cc1188 Declare(declaration, true, CHECK_OK);
1429 Declare(declaration, true, CHECK_OK);
1659 void Parser::Declare(Declaration* declaration, bool resolve, bool* ok) { function in class:v8::internal::Parser
1679 // Declare the variable in the declaration scope.
1687 // Declare the name.
1697 // compatibility). There is similar code in runtime.cc in the Declare
1790 PrintF("# Declare %s\n", var->name()->ToAsciiArray());
1843 Declare(declaration, true, CHECK_OK);
1884 Declare(declaration, true, CHECK_OK);
2091 // Declare variabl
[all...]

Completed in 105 milliseconds