HomeSort by relevance Sort by last modified time
    Searched refs:Variable (Results 26 - 50 of 183) sorted by null

12 3 4 5 6 7 8

  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 30 : 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) {
45 // The variable to which this location entry corresponds.
46 const MDNode *Variable;
87 const MDNode *getVariable() const { return Variable; }
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 29 import org.apache.xpath.operations.Variable;
69 * Visit a variable reference.
72 * @param var The variable reference object.
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /frameworks/base/tools/aidl/
AST.h 67 struct Variable : public Expression
73 Variable();
74 Variable(Type* type, const string& name);
75 Variable(Type* type, const string& name, int dimension);
76 virtual ~Variable();
100 Variable *variable; member in struct:Field
104 Field(int modifiers, Variable* variable);
140 Variable* lvalue
    [all...]
generate_java.cpp 15 Variable*
21 Variable* v = new Variable(type, name);
26 Variable*
AST.cpp 59 variable(NULL)
63 Field::Field(int m, Variable* v)
66 variable(v)
77 types->insert(this->variable->type);
87 fprintf(to, "%s %s", this->variable->type->QualifiedName().c_str(),
88 this->variable->name.c_str());
129 Variable::Variable()
136 Variable::Variable(Type* t, const string& n
    [all...]
  /external/deqp/framework/randomshaders/
rsgStatement.hpp 74 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;
rsgShader.cpp 58 ShaderInput::ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange)
59 : m_variable (variable)
60 , m_min (variable->getType().getScalarSize())
61 , m_max (variable->getType().getScalarSize())
63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value();
64 ValueAccess(variable->getType(), &m_max[0]) = valueRange.getMax().value();
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++
    [all...]
rsgFunctionGenerator.cpp 66 for (vector<Variable*>::iterator i = m_requiredAssignments.begin(); i != m_requiredAssignments.end(); i++)
68 Variable* variable = *i; local
69 const ValueEntry* entry = m_state.getVariableManager().getValue(variable);
70 ValueRange valueRange(variable->getType());
76 m_state.getVariableManager().removeValueFromCurrentScope(variable);
79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange));
rsgStatement.cpp 229 inline bool canDeclareVariable (const Variable* variable)
231 return variable->getStorage() == Variable::STORAGE_LOCAL;
236 const vector<Variable*>& liveVars = varMgr.getLiveVariables();
237 for (vector<Variable*>::const_iterator i = liveVars.begin(); i != liveVars.end(); i++)
247 DeclarationStatement::DeclarationStatement (GeneratorState& state, Variable* variable)
251 if (variable == DE_NULL)
256 const vector<Variable*>& liveVars = state.getVariableManager().getLiveVariables()
    [all...]
rsgExecutionContext.cpp 61 ExecValueAccess ExecutionContext::getValue (const Variable* variable)
63 ExecValueStorage* storage = m_varValues[variable];
67 storage = new ExecValueStorage(variable->getType());
68 m_varValues[variable] = storage;
71 return storage->getValue(variable->getType());
74 const Sampler2D& ExecutionContext::getSampler2D (const Variable* sampler) const
83 const SamplerCube& ExecutionContext::getSamplerCube (const Variable* sampler) const
  /external/lldb/source/Symbol/
Variable.cpp 1 //===-- Variable.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Variable.h"
33 // Variable constructor
35 Variable::Variable
39 const char *mangled, // The mangled variable name for variables in namespaces
64 Variable::~Variable()
70 Variable::GetName() const
78 Variable::NameMatches (const RegularExpression& regex) cons
690 Variable *variable = variable_list->GetVariableAtIndex(i).get(); local
835 Variable *variable = variable_list->GetVariableAtIndex(i).get(); local
    [all...]
Android.mk 39 Variable.cpp \
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 30 import org.apache.xpath.operations.Variable;
129 * Visit a variable reference.
132 * @param var The variable reference object.
135 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h 129 // SExprs of variable arity, such as Phi, Goto, and SCFG.
182 R_SExpr reduceFunction(Function &Orig, Variable *Nvd, R_SExpr E0) {
185 R_SExpr reduceSFunction(SFunction &Orig, Variable *Nvd, R_SExpr E0) {
236 R_BasicBlock reduceBasicBlock(BasicBlock &Orig, Container<Variable *> &As,
237 Container<Variable *> &Is, R_SExpr T) {
256 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) {
260 // Create a new variable from orig, and push it onto the lexical scope.
261 Variable *enterScope(Variable &Orig, R_SExpr E0) {
262 return new (Arena) Variable(Orig, E0)
    [all...]
ThreadSafetyTIL.h 296 // Includes attach/detach logic for counting variable references and lazy
304 // Defined after Variable and Future, below.
349 // A named variable, e.g. "x".
351 // There are two distinct places in which a Variable can appear in the AST.
352 // A variable declaration introduces a new variable, and can occur in 3 places:
357 // If a variable occurs in any other location, it is a reference to an existing
358 // variable declaration -- e.g. 'x' in (x * y + z). To save space, we don't
359 // allocate a separate AST node for variable references; a reference is just a
361 class Variable : public SExpr
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 31 * This is a "smart" variable reference that is used in situations where
32 * an absolute path is optimized into a variable reference, but may
38 * to make sure the document context of the referenced variable is the same as
39 * the current document context, and, if it is not, execute the referenced variable's
42 public class VariableSafeAbsRef extends Variable
47 * Dereference the variable, and return the reference value. Note that lazy
48 * evaluation will occur. If a variable within scope is not found, a warning
54 * @return The evaluated variable, or an empty nodeset if not found.
  /external/lldb/include/lldb/Symbol/
VariableList.h 15 #include "lldb/Symbol/Variable.h"
72 FindIndexForVariable (Variable* variable);
  /external/deqp/modules/glshared/
glsRandomShaderProgram.cpp 103 static const rsg::Variable* findShaderOutputByName (const rsg::Shader& shader, const char* name)
105 vector<const rsg::Variable*> outputs;
108 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); ++iter)
117 static const rsg::Variable* findShaderOutputByLocation (const rsg::Shader& shader, int location)
119 vector<const rsg::Variable*> outputs;
122 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); iter++)
148 const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()->getName());
161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable();
183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable();
224 const rsg::Variable* var = m_vertexOutputs[varNdx]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 36 import org.apache.xpath.operations.Variable;
73 // * Visit a variable reference.
76 // * @param var The variable reference object.
79 // public boolean visitVariableRef(ExpressionOwner owner, Variable var)
101 if((pred instanceof Variable) ||
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Frame.java 163 string += ((Variable) it.next()).toString();
201 * This describing frame variable.
204 public final class Variable {
223 public Variable() {
234 * Gets code index of variable.
243 * Sets new code index for variable.
252 * Gets variable name.
261 * Sets new variable name.
264 * new variable name
271 * Gets signature of the variable reference type
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-3138.js 10 var f; // Variable shadows function name.
17 with ({}); // Force context allocation of both variable and function name.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/javassist/src/main/javassist/compiler/ast/
Visitor.java 45 public void atVariable(Variable n) throws CompileError {}

Completed in 352 milliseconds

12 3 4 5 6 7 8