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

  /external/vixl/tools/test_generator/
data_types.py 39 name Name for the operand. It is used to declare variable names.
64 def Declare():
66 Generate code to declare the operand `struct Operands`.
110 def Declare(self):
112 Generate code to declare the operand as a single member in
153 def Declare(self):
156 `struct Operands`. Although we do need to declare all underlying operands.
158 return "\n".join([operand.Declare() for operand in self.operand_list])
197 name Name of the input. It is used to declare variable names.
226 def Declare()
    [all...]
  /external/swiftshader/third_party/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/ast/
scopes.cc 39 // When inserting a new variable via Declare(), we rely on the fact that
47 Variable* VariableMap::Declare(Zone* zone, Scope* scope,
117 void SloppyBlockFunctionMap::Declare(
283 Variable* variable = Declare(zone, catch_variable_name, VAR);
474 sloppy_block_function_map_.Declare(zone(), name, delegate);
546 // Declare a var-style binding for the function in the outer scope
652 Declare(zone(), ast_value_factory->this_string(),
664 // Declare 'arguments' variable which exists in all non arrow functions.
667 arguments_ = Declare(zone(), ast_value_factory->arguments_string(), VAR);
681 new_target_ = Declare(zone(), ast_value_factory->new_target_string(), CONST)
    [all...]
  /external/v8/src/parsing/
parser.cc 690 // Declare the special module parameter.
    [all...]

Completed in 89 milliseconds