Searched refs:Variable (Results 1 - 25 of 161) sorted by relevance

1234567

/external/clang/test/Misc/
H A Dast-dump-stmt.cpp5 int Variable; member in namespace:n
8 using n::Variable;
12 Variable = 4;
13 // CHECK: DeclRefExpr{{.*}} (UsingShadow{{.*}}Variable
/external/deqp/framework/randomshaders/
H A DrsgVariableManager.hpp23 * \brief Variable manager.
26 * Variable manager owns variable objects until they are either explictly
46 ValueEntry (const Variable* variable);
49 const Variable* getVariable (void) const { return m_variable; }
55 const Variable* m_variable;
59 // Variable scope manages variable allocation.
66 Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name);
67 void declare (Variable* variable); //!< Move from live set to declared set
68 void removeLive (const Variable* variabl
[all...]
H A DrsgFunctionGenerator.hpp41 void requireAssignment (Variable* variable) { m_requiredAssignments.push_back(variable); }
48 std::vector<Variable*> m_requiredAssignments;
H A DrsgExecutionContext.hpp46 typedef std::map<const Variable*, ExecValueStorage*> VarValueMap;
66 ExecValueAccess getValue (const Variable* variable);
67 const Sampler2D& getSampler2D (const Variable* variable) const;
68 const SamplerCube& getSamplerCube (const Variable* variable) const;
H A DrsgVariableManager.cpp21 * \brief Variable manager.
95 ValueEntry::ValueEntry (const Variable* variable)
107 for (vector<Variable*>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end(); i++)
110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++)
114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char* name)
116 Variable* variable = new Variable(type, storage, name);
129 void VariableScope::declare (Variable* variable)
135 void VariableScope::removeLive (const Variable* variabl
[all...]
H A DrsgShaderGenerator.cpp65 void createAssignment (BlockStatement& block, const Variable* dstVar, const Variable* srcVar)
101 const Variable* outVar = entry->getVariable();
104 if (outVar->getStorage() != Variable::STORAGE_SHADER_OUT)
114 Variable* inVar = state.getVariableManager().allocate(outVar->getType(), Variable::STORAGE_SHADER_IN, inVarName.c_str());
130 Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->getType(), Variable::STORAGE_SHADER_IN, "v_color");
197 Variable* variable = m_state.getVariableManager().allocate(input->getVariable()->getType(), Variable
[all...]
H A DrsgVariable.hpp23 * \brief Variable class.
37 class Variable class in namespace:rsg
54 Variable (const VariableType& type, Storage storage, const char* name);
55 ~Variable (void);
H A DrsgShader.hpp49 void addParameter (Variable* variable);
58 std::vector<Variable*> m_parameters;
67 ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange);
70 const Variable* getVariable (void) const { return m_variable; }
75 const Variable* m_variable;
115 void getOutputs (std::vector<const Variable*>& outputs) const;
H A DrsgVariable.cpp21 * \brief Variable class.
31 Variable::Variable (const VariableType& type, Storage storage, const char* name) function in class:rsg::Variable
39 Variable::~Variable (void)
43 void Variable::tokenizeDeclaration (GeneratorState& state, TokenStream& str) const
H A DrsgStatement.hpp74 DeclarationStatement (GeneratorState& state, Variable* variable = DE_NULL);
84 const Variable* m_variable;
140 AssignStatement (const Variable* variable, Expression* value);
141 AssignStatement (GeneratorState& state, const Variable* variable, ConstValueRangeAccess valueRange);
149 const Variable* m_variable;
H A DrsgShader.cpp58 ShaderInput::ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange)
81 void Shader::getOutputs (vector<const Variable*>& outputs) const
84 const vector<Variable*>& globalVars = m_globalScope.getDeclaredVariables();
85 for (vector<Variable*>::const_iterator i = globalVars.begin(); i != globalVars.end(); i++)
87 const Variable* var = *i;
88 if (var->getStorage() == Variable::STORAGE_SHADER_OUT)
137 for (vector<Variable*>::const_iterator i = m_parameters.begin(); i != m_parameters.end(); i++)
/external/javassist/src/main/javassist/compiler/ast/
H A DVariable.java21 * Variable.
23 public class Variable extends Symbol { class in inherits:Symbol
26 public Variable(String sym, Declarator d) { method in class:Variable
/external/chromium_org/v8/src/
H A Dvariables.cc15 // Implementation Variable.
17 const char* Variable::Mode2String(VariableMode mode) {
35 Variable::Variable(Scope* scope, const AstRawString* name, VariableMode mode, function in class:v8::internal::Variable
58 bool Variable::IsGlobalObjectProperty() const {
67 int Variable::CompareIndex(Variable* const* v, Variable* const* w) {
H A Dscopes.h24 Variable* Declare(Scope* scope, const AstRawString* name, VariableMode mode,
25 bool is_valid_lhs, Variable::Kind kind,
30 Variable* Lookup(const AstRawString* name);
65 // corresponding variable (though some are bound during parse time). Variable
66 // allocation binds each unresolved VariableProxy to one Variable and assigns
104 Variable* LookupLocal(const AstRawString* name);
110 Variable* LookupFunctionVar(const AstRawString* name,
115 Variable* Lookup(const AstRawString* name);
128 Variable* DeclareParameter(const AstRawString* name, VariableMode mode);
132 Variable* DeclareLoca
[all...]
H A Dvariables.h20 class Variable: public ZoneObject { class in namespace:v8::internal
55 Variable(Scope* scope, const AstRawString* name, VariableMode mode,
115 Variable* local_if_not_shadowed() const {
120 void set_local_if_not_shadowed(Variable* local) {
136 static int CompareIndex(Variable* const* v, Variable* const* w);
151 Variable* local_if_not_shadowed_;
H A Dscopes.cc24 // use. Because a Variable holding a handle with the same location exists
33 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name,
35 Variable::Kind kind,
48 Variable(scope, name, mode, is_valid_lhs, kind, initialization_flag,
51 return reinterpret_cast<Variable*>(p->value);
55 Variable* VariableMap::Lookup(const AstRawString* name) {
61 return reinterpret_cast<Variable*>(p->value);
139 Variable* variable = variables_.Declare(this,
143 Variable::NORMAL,
317 Variable* va
[all...]
/external/lldb/include/lldb/Symbol/
H A DVariable.h1 //===-- Variable.h ----------------------------------------------*- C++ -*-===//
24 class Variable : public UserID class in namespace:lldb_private
30 Variable (lldb::user_id_t uid,
42 ~Variable();
178 Variable(const Variable& rhs);
179 Variable& operator=(const Variable& rhs);
/external/deqp/modules/glshared/
H A DglsRandomShaderProgram.hpp57 const rsg::Variable* m_positionVar;
58 std::vector<const rsg::Variable*> m_vertexOutputs; //!< Other vertex outputs in the order they are passed to fragment shader.
59 const rsg::Variable* m_fragColorVar;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DVarNameCollector.java28 import org.apache.xpath.operations.Variable;
73 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
H A DAbsPathChecker.java29 import org.apache.xpath.operations.Variable;
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
/external/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp55 for (Variable *V : Args) {
66 for (Variable *V : Args) {
75 for (Variable *V : Args) {
78 for (Variable *V : Instrs) {
95 while (auto *V = dyn_cast<Variable>(E)) {
98 if (V->kind() != Variable::VK_Let)
101 auto *V2 = dyn_cast<Variable>(D);
129 void simplifyIncompleteArg(Variable *V, til::Phi *Ph) {
/external/valgrind/main/coregrind/
H A Dm_addrinfo.c51 ai->Addr.Variable.descr1
54 ai->Addr.Variable.descr2
58 (void) VG_(get_data_description)( ai->Addr.Variable.descr1,
59 ai->Addr.Variable.descr2, a );
66 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr1, 0 ))) {
67 VG_(deleteXA)( ai->Addr.Variable.descr1 );
68 ai->Addr.Variable.descr1 = NULL;
70 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr2, 0 ))) {
71 VG_(deleteXA)( ai->Addr.Variable.descr2 );
72 ai->Addr.Variable
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp10.cpp23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h30 : Variable(Var), EntryKind(E_Integer) {
34 : Variable(Var), EntryKind(E_ConstantFP) {
38 : Variable(Var), EntryKind(E_ConstantInt) {
42 : Variable(Var), EntryKind(E_Location), Loc(Loc) {
46 const MDNode *Variable; member in struct:llvm::DebugLocEntry::Value
87 const MDNode *getVariable() const { return Variable; }
/external/lldb/source/Symbol/
H A DVariable.cpp1 //===-- Variable.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Variable.h"
33 // Variable constructor
35 Variable::Variable function in class:Variable
64 Variable::~Variable()
70 Variable::GetName() const
78 Variable::NameMatches (const RegularExpression& regex) const
86 Variable
[all...]

Completed in 8536 milliseconds

1234567