Home
last modified time | relevance | path

Searched refs:DeclareVariable (Results 1 – 11 of 11) sorted by relevance

/external/deqp/framework/opengl/
DgluVarType.hpp310 struct DeclareVariable struct
312DeclareVariable (const VarType& varType_, const std::string& name_, int indentLevel_) : varType(va… in DeclareVariable() argument
322 std::ostream& operator<< (std::ostream& str, const DeclareVariable& decl);
329 …nline decl::DeclareVariable declare (const VarType& varType, const std::string& name, int inden… in declare()
DgluVarType.cpp358 std::ostream& operator<< (std::ostream& str, const DeclareVariable& decl) in operator <<()
/external/v8/src/torque/
Ddeclaration-visitor.cc180 DeclareVariable(kReturnValueVariable, signature.return_type, in Visit()
273 Variable* DeclarationVisitor::DeclareVariable(const std::string& name, in DeclareVariable() function in v8::internal::torque::DeclarationVisitor
275 Variable* result = declarations()->DeclareVariable(name, type, is_const); in DeclareVariable()
280 DeclareVariable(field_var_name, field.type, is_const); in DeclareVariable()
313 DeclareVariable(variable_name, type, stmt->const_qualified); in Visit()
485 shared_label->AddVariable(DeclareVariable(p, type, false)); in Visit()
638 new_label->AddVariable(DeclareVariable(var_name, var_type, false)); in DeclareSignature()
Ddeclaration-visitor.h157 Variable* DeclareVariable(const std::string& name, const Type* type,
Ddeclarations.h93 Variable* DeclareVariable(const std::string& var, const Type* type,
Ddeclarations.cc301 Variable* Declarations::DeclareVariable(const std::string& var, in DeclareVariable() function in v8::internal::torque::Declarations
Dimplementation-visitor.cc1563 variable = declarations()->DeclareVariable( in GenerateVariableDeclaration()
/external/v8/src/parsing/
Dparser.cc1035 DeclareVariable(local_name, VariableMode::kConst, kNeedsInitialization, in ParseNamedImports()
1087 DeclareVariable(import_default_binding, VariableMode::kConst, in ParseImportDeclaration()
1103 DeclareVariable(module_namespace_binding, VariableMode::kConst, in ParseImportDeclaration()
1203 DeclareVariable(local_name, VariableMode::kConst, pos, CHECK_OK); in ParseExportDefault()
1345 Declaration* Parser::DeclareVariable(const AstRawString* name, in DeclareVariable() function in v8::internal::Parser
1347 return DeclareVariable(name, mode, Variable::DefaultInitializationFlag(mode), in DeclareVariable()
1351 Declaration* Parser::DeclareVariable(const AstRawString* name, in DeclareVariable() function in v8::internal::Parser
1378 Variable* variable = scope->DeclareVariable( in Declare()
1440 Declaration* decl = DeclareVariable(variable_name, VariableMode::kLet, in DeclareClass()
1461 Declaration* decl = DeclareVariable(name, VariableMode::kVar, pos, CHECK_OK); in DeclareNative()
[all …]
Dparser.h426 Declaration* DeclareVariable(const AstRawString* name, VariableMode mode,
428 Declaration* DeclareVariable(const AstRawString* name, VariableMode mode,
/external/v8/src/ast/
Dscopes.cc618 DeclareVariable(declaration, VariableMode::kVar, in HoistSloppyBlockFunctions()
1094 Variable* Scope::DeclareVariable( in DeclareVariable() function in v8::internal::Scope
1103 return GetDeclarationScope()->DeclareVariable( in DeclareVariable()
Dscopes.h196 Variable* DeclareVariable(Declaration* declaration, VariableMode mode, in NON_EXPORTED_BASE()