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

  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 117 INITIALIZE_PASS(StripDebugDeclare, "strip-debug-declare",
118 "Strip all llvm.dbg.declare intrinsics", false, false)
243 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
244 while (!Declare->use_empty()) {
245 CallInst *CI = cast<CallInst>(Declare->use_back());
248 Declare->eraseFromParent();
299 Function *Declare = M.getFunction("llvm.dbg.declare");
302 if (Declare) {
    [all...]
  /external/v8/src/
scopes.cc 46 // When inserting a new variable via Declare(), we rely on the fact that
64 Variable* VariableMap::Declare(
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...]
scopes.h 47 Variable* Declare(Scope* scope,
126 // Declare the function variable for a function literal. This variable
140 // Declare a parameter in this scope. When there are duplicated
145 // Declare a local variable in this scope. If the variable has been
152 // Declare an implicit global variable in this scope which must be a
parser.h 771 void Declare(Declaration* declaration, bool resolve, bool* ok);
parser.cc     [all...]
  /external/bison/data/
glr.cc 91 # Declare yyerror.
  /external/bison/doc/
refcard.tex 339 \key{Declare a terminal symbol.}{\%token <{\it t\/}>
342 \key{Declare a terminal symbol, and define its association.}
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 51 /// This function strips all debug info intrinsics, except for llvm.dbg.declare.
52 /// If an llvm.dbg.declare intrinsic is invalid, then this function simply
79 if (Function *Declare = M->getFunction("llvm.dbg.declare")) {
80 if (!Declare->use_empty()) {
81 DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->use_back());
84 while (!Declare->use_empty()) {
85 CallInst *CI = cast<CallInst>(Declare->use_back());
88 Declare->eraseFromParent();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 292 /// This function strips all debug info intrinsics, except for llvm.dbg.declare.
293 /// If an llvm.dbg.declare intrinsic is invalid, then this function simply
320 if (Function *Declare = M->getFunction("llvm.dbg.declare")) {
321 if (!Declare->use_empty()) {
322 DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->use_back());
325 while (!Declare->use_empty()) {
326 CallInst *CI = cast<CallInst>(Declare->use_back());
329 Declare->eraseFromParent();
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 315 /// This is a bit of an ugly (and slow) solution, but it works. Declare an
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 1063 milliseconds