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

/external/vixl/tools/test_generator/
H A Ddata_types.py64 def Declare(): member in class:OperandBase
110 def Declare(self): member in class:Operand
153 def Declare(self): member in class:OperandWrapper
158 return "\n".join([operand.Declare() for operand in self.operand_list])
226 def Declare(): member in class:Input
310 def Declare(self): member in class:Scalar
509 def Declare(self): member in class:MemOperand
511 Declare the input as a two element array.
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DStripSymbols.cpp243 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"); local
302 if (Declare) {
303 while (!Declare->use_empty()) {
304 CallInst *CI = cast<CallInst>(Declare->use_back());
319 Declare->eraseFromParent();
/external/v8/src/ast/
H A Dscopes.cc22 // When inserting a new variable via Declare(), we rely on the fact that
30 Variable* VariableMap::Declare(Zone* zone, Scope* scope, function in class:v8::internal::VariableMap
80 void SloppyBlockFunctionMap::Declare(Zone* zone, const AstRawString* name, function in class:v8::internal::SloppyBlockFunctionMap
246 Variable* variable = Declare(zone, this, catch_variable_name, VAR,
494 // Declare a var-style binding for the function in the outer scope
581 Variable* var = Declare(
594 // Declare 'arguments' variable which exists in all non arrow functions.
597 arguments_ = Declare(zone(), this, ast_value_factory->arguments_string(),
612 new_target_ = Declare(zone(), this, ast_value_factory->new_target_string(),
618 Declare(zon
718 Variable* Scope::Declare(Zone* zone, Scope* scope, const AstRawString* name, function in class:v8::internal::Scope
[all...]
/external/v8/src/parsing/
H A Dparser.cc757 // Declare the special module parameter.
1244 // Declare that takes a location?
1474 Declare(declaration, DeclarationDescriptor::NORMAL, mode, init, ok, nullptr,
1480 Variable* Parser::Declare(Declaration* declaration, function in class:v8::internal::Parser
1549 Declare(declaration, DeclarationDescriptor::NORMAL, mode, kCreatedInitialized,
3286 // Declare arguments after parsing the function since lexical 'arguments'
3287 // masks the arguments object. Declare arguments before declaring the
3450 Declare(declaration, DeclarationDescriptor::NORMAL, CONST,
3509 Declare(name_declaration, DeclarationDescriptor::NORMAL, CONST,
3604 Declare(function_declaratio
[all...]

Completed in 145 milliseconds