HomeSort by relevance Sort by last modified time
    Searched defs:Declare (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 118 INITIALIZE_PASS(StripDebugDeclare, "strip-debug-declare",
119 "Strip all llvm.dbg.declare intrinsics", false, false)
246 Function *Declare = M.getFunction("llvm.dbg.declare");
249 if (Declare) {
250 while (!Declare->use_empty()) {
251 CallInst *CI = cast<CallInst>(Declare->user_back());
266 Declare->eraseFromParent();
  /external/v8/src/ast/
scopes.cc 20 // When inserting a new variable via Declare(), we rely on the fact that
30 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name,
67 void SloppyBlockFunctionMap::Declare(const AstRawString* name,
146 Variable* variable = variables_.Declare(this,
313 // Declare convenience variables and the receiver.
316 Variable* var = variables_.Declare(
324 // Declare 'arguments' variable which exists in all non arrow functions.
327 variables_.Declare(this, ast_value_factory_->arguments_string(), VAR,
330 variables_.Declare(this, ast_value_factory_->new_target_string(), CONST,
335 variables_.Declare(this, ast_value_factory_->this_function_string()
    [all...]
  /external/v8/src/parsing/
parser.cc     [all...]

Completed in 75 milliseconds