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

/external/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp244 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
245 while (!Declare->use_empty()) {
246 CallInst *CI = cast<CallInst>(Declare->use_back());
249 Declare->eraseFromParent();
300 Function *Declare = M.getFunction("llvm.dbg.declare"); local
303 if (Declare) {
304 while (!Declare->use_empty()) {
305 CallInst *CI = cast<CallInst>(Declare->use_back());
320 Declare->eraseFromParent();
/external/v8/src/
H A Dscopes.cc46 // When inserting a new variable via Declare(), we rely on the fact that
64 Variable* VariableMap::Declare( function in class:v8::internal::VariableMap
160 Variable* variable = variables_.Declare(this,
314 // Declare convenience variables.
315 // Declare and allocate receiver (even for the global scope, and even
324 variables_.Declare(this,
338 // Declare 'arguments' variable which exists in all functions.
341 variables_.Declare(this,
402 variables_.Declare(this,
445 Variable* var = variables_.Declare(
[all...]
H A Dparser.cc1257 Declare(declaration, true, CHECK_OK);
1468 Declare(declaration, true, CHECK_OK);
1712 void Parser::Declare(Declaration* declaration, bool resolve, bool* ok) { function in class:v8::internal::Parser
1734 // Declare the variable in the function scope.
1737 // Declare the name.
1743 // not a var. There is similar code in runtime.cc in the Declare
1856 PrintF("# Declare %s\n", var->name()->ToAsciiArray());
1927 Declare(declaration, true, CHECK_OK);
1956 Declare(declaration, true, CHECK_OK);
2170 // Declare variabl
[all...]

Completed in 95 milliseconds