HomeSort by relevance Sort by last modified time
    Searched refs:Declare (Results 1 - 19 of 19) 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/llvm/lib/IR/
DebugInfo.cpp 328 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
329 while (!Declare->use_empty()) {
330 CallInst *CI = cast<CallInst>(Declare->user_back());
333 Declare->eraseFromParent();
  /external/v8/src/
scopes.cc 22 // When inserting a new variable via Declare(), we rely on the fact that
33 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name,
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(this, name, mode, true, Variable::NORMAL
    [all...]
scopes.h 24 Variable* Declare(Scope* scope, const AstRawString* name, VariableMode mode,
117 // Declare the function variable for a function literal. This variable
125 // Declare a parameter in this scope. When there are duplicated
130 // Declare a local variable in this scope. If the variable has been
137 // Declare an implicit global variable in this scope which must be a
parser.cc     [all...]
parser.h 801 void Declare(Declaration* declaration, bool resolve, bool* ok);
    [all...]
  /external/bison/doc/
refcard.tex 337 \key{Declare a terminal symbol.}{\%token <{\it t\/}>
340 \key{Declare a terminal symbol, and define its association.}
  /external/bison/data/
yacc.c 179 # Declare the variables that are global, or local to YYPARSE if
222 # Declare all the variables that are needed to maintain the parser state
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
optparse.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
optparse.py     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 64 /// This function strips all debug info intrinsics, except for llvm.dbg.declare.
65 /// If an llvm.dbg.declare intrinsic is invalid, then this function simply
73 if (Function *Declare = M->getFunction("llvm.dbg.declare")) {
74 if (!Declare->use_empty()) {
75 DbgDeclareInst *DDI = cast<DbgDeclareInst>(*Declare->use_begin());
78 while (!Declare->use_empty()) {
79 CallInst *CI = cast<CallInst>(*Declare->use_begin());
82 Declare->eraseFromParent();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 306 /// This function strips all debug info intrinsics, except for llvm.dbg.declare.
307 /// If an llvm.dbg.declare intrinsic is invalid, then this function simply
315 if (Function *Declare = M->getFunction("llvm.dbg.declare")) {
316 if (!Declare->use_empty()) {
317 DbgDeclareInst *DDI = cast<DbgDeclareInst>(*Declare->use_begin());
320 while (!Declare->use_empty()) {
321 CallInst *CI = cast<CallInst>(*Declare->use_begin());
324 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...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js 269 var sixbits = [0, 0, 0, 0]; //Declare this out of the loop, to speed up the ops.
    [all...]
  /build/tools/droiddoc/templates-ndk/assets/js/
android_3p-bundle.js     [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js     [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
android_3p-bundle.js     [all...]
  /build/tools/droiddoc/templates-sdk-dev/assets/js/
android_3p-bundle.js     [all...]

Completed in 980 milliseconds