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

1 2 34 5 6 7 8

  /external/deqp/framework/randomshaders/
rsgExpression.cpp 51 if ((m_exprFlags & CONST_EXPR) && (entry->getVariable()->getStorage() != Variable::STORAGE_CONST))
147 DE_ASSERT(entry->getVariable()->getStorage() == Variable::STORAGE_UNIFORM);
889 return 0.0f; // Would require creating a new variable
912 // - variable valuerange is made unbound
958 Variable* allocateNewVariable (GeneratorState& state, ConstValueRangeAccess valueRange)
960 Variable* variable = state.getVariableManager().allocate(valueRange.getType()); local
963 state.getVariableManager().setValue(variable, valueRange);
966 static const Variable::Storage storages[] =
968 Variable::STORAGE_CONST
    [all...]
rsgVariableValue.hpp 23 * \brief Variable Value class.
348 VariableValue (const Variable* variable) : m_variable(variable), m_storage(m_variable->getType()) {}
351 const Variable* getVariable (void) const { return m_variable; }
361 const Variable* m_variable;
  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 216 if (left instanceof Variable)
217 atVariableAssign(expr, op, (Variable)left,
218 ((Variable)left).getDeclarator(),
237 private void atVariableAssign(Expr expr, int op, Variable var,
919 if (oprand instanceof Variable) {
920 Declarator d = ((Variable)oprand).getDeclarator();
955 public void atVariable(Variable v) throws CompileError {
    [all...]
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTest.cpp 35 bool VisitVarDecl(VarDecl *Variable) {
36 Match(Variable->getNameAsString(), Variable->getLocStart());
159 // Test RAV visits parameter variable declaration of the implicit
163 // Match parameter variable name of implicit copy assignment operator and
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 255 // Create a local variable around the alloca
258 DIVariable Variable = DBuilder.createLocalVariable(
260 DBuilder.insertDeclare(Alloca, Variable, Store);
261 DBuilder.insertDbgValueIntrinsic(AllocaContent, 0, Variable, Terminator);
386 // Old variable must belong to the old function
389 // New variable must belong to the New function
396 // Old variable must belong to the old function
399 // New variable must belong to the New function
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 218 Variable* var = scope()->parameter(i);
242 Variable* arguments = scope()->arguments();
297 ASSERT(function->proxy()->var()->location() != Variable::UNALLOCATED);
452 void FullCodeGenerator::EffectContext::Plug(Variable* var) const {
457 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const {
463 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const {
470 void FullCodeGenerator::TestContext::Plug(Variable* var) const {
695 MemOperand FullCodeGenerator::StackOperand(Variable* var) {
709 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) {
721 void FullCodeGenerator::GetVar(Register dest, Variable* var)
794 Variable* variable = proxy->var(); local
854 Variable* variable = proxy->var(); local
908 Variable* variable = declaration->proxy()->var(); local
940 Variable* variable = proxy->var(); local
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 212 Variable* var = scope()->parameter(i);
238 Variable* arguments = scope()->arguments();
291 ASSERT(function->proxy()->var()->location() != Variable::UNALLOCATED);
426 void FullCodeGenerator::EffectContext::Plug(Variable* var) const {
431 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const {
437 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const {
445 void FullCodeGenerator::TestContext::Plug(Variable* var) const {
663 MemOperand FullCodeGenerator::StackOperand(Variable* var) {
677 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) {
689 void FullCodeGenerator::GetVar(Register dest, Variable* var)
757 Variable* variable = proxy->var(); local
815 Variable* variable = proxy->var(); local
866 Variable* variable = declaration->proxy()->var(); local
897 Variable* variable = proxy->var(); local
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 227 Variable* var = scope()->parameter(i);
251 Variable* arguments = scope()->arguments();
306 ASSERT(function->proxy()->var()->location() != Variable::UNALLOCATED);
462 void FullCodeGenerator::EffectContext::Plug(Variable* var) const {
467 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const {
473 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const {
480 void FullCodeGenerator::TestContext::Plug(Variable* var) const {
709 MemOperand FullCodeGenerator::StackOperand(Variable* var) {
723 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) {
735 void FullCodeGenerator::GetVar(Register dest, Variable* var)
808 Variable* variable = proxy->var(); local
869 Variable* variable = proxy->var(); local
923 Variable* variable = declaration->proxy()->var(); local
955 Variable* variable = proxy->var(); local
    [all...]
  /external/chromium_org/v8/src/x87/
full-codegen-x87.cc 212 Variable* var = scope()->parameter(i);
237 Variable* arguments = scope()->arguments();
290 ASSERT(function->proxy()->var()->location() != Variable::UNALLOCATED);
425 void FullCodeGenerator::EffectContext::Plug(Variable* var) const {
430 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const {
436 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const {
444 void FullCodeGenerator::TestContext::Plug(Variable* var) const {
662 MemOperand FullCodeGenerator::StackOperand(Variable* var) {
676 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) {
688 void FullCodeGenerator::GetVar(Register dest, Variable* var)
756 Variable* variable = proxy->var(); local
814 Variable* variable = proxy->var(); local
864 Variable* variable = declaration->proxy()->var(); local
894 Variable* variable = proxy->var(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprWalker.java 79 if(m_expr instanceof org.apache.xpath.operations.Variable)
232 * corresponds to the variable reference qname. The position of the
  /external/lldb/include/lldb/Core/
Value.h 52 eContextTypeVariable // lldb_private::Variable *
241 Variable *
  /external/lldb/source/Symbol/
VariableList.cpp 129 // Only add this variable if it isn't already in the "var_list"
159 VariableList::FindIndexForVariable (Variable* variable)
167 if ((*pos).get() == variable)
  /external/chromium_org/v8/src/
parser.cc 343 Target(Target** variable, AstNode* node)
344 : variable_(variable), node_(node), previous_(*variable) {
345 *variable = this;
364 explicit TargetScope(Target** variable)
365 : variable_(variable), previous_(*variable) {
366 *variable = NULL;
720 PrintF("# Variable %s ", name->ToAsciiArray());
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 59 import org.apache.xpath.operations.Variable;
166 expr = variable(opPos); break;
529 * Compile a variable reference.
533 * @return reference to {@link org.apache.xpath.operations.Variable} instance.
537 protected Expression variable(int opPos) throws TransformerException method in class:Compiler
540 Variable var = new Variable();
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 146 * It's a mapping table between 'variable name' and its 'active Pick object'
197 refs[i] = var_ref; // link definition with variable
518 class Variable : public Pick {
520 Variable(SymbolTable * symbols, const char * varName, Pick * varRef = NULL){
    [all...]
  /external/lldb/include/lldb/
lldb-forward.h 249 class Variable;
369 typedef std::shared_ptr<lldb_private::Variable> VariableSP;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 42 (* Simple variable ref. *)
43 | [< >] -> Ast.Variable id
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
parser.ml 42 (* Simple variable ref. *)
43 | [< >] -> Ast.Variable id
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
parser.ml 42 (* Simple variable ref. *)
43 | [< >] -> Ast.Variable id
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
deltablue.js 152 * a strength instance variable; concrete subclasses provide a means
213 * variable.
253 * Returns the current output variable.
311 * A unary input constraint used to mark a variable that the client
321 * Edits indicate that a variable is to be changed by imperative code.
398 * Mark the input variable with the given mark.
405 * Returns the current input variable
412 * Returns the current output variable
535 * A constrained variable. In addition to its value, it maintain the
540 function Variable(name, initialValue)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 143 * a strength instance variable; concrete subclasses provide a means
204 * variable.
244 * Returns the current output variable.
302 * A unary input constraint used to mark a variable that the client
312 * Edits indicate that a variable is to be changed by imperative code.
389 * Mark the input variable with the given mark.
396 * Returns the current input variable
403 * Returns the current output variable
526 * A constrained variable. In addition to its value, it maintain the
531 function Variable(name, initialValue)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 143 * a strength instance variable; concrete subclasses provide a means
204 * variable.
244 * Returns the current output variable.
302 * A unary input constraint used to mark a variable that the client
312 * Edits indicate that a variable is to be changed by imperative code.
389 * Mark the input variable with the given mark.
396 * Returns the current input variable
403 * Returns the current output variable
526 * A constrained variable. In addition to its value, it maintain the
531 function Variable(name, initialValue)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 143 * a strength instance variable; concrete subclasses provide a means
204 * variable.
244 * Returns the current output variable.
302 * A unary input constraint used to mark a variable that the client
312 * Edits indicate that a variable is to be changed by imperative code.
389 * Mark the input variable with the given mark.
396 * Returns the current input variable
403 * Returns the current output variable
526 * A constrained variable. In addition to its value, it maintain the
531 function Variable(name, initialValue)
    [all...]

Completed in 699 milliseconds

1 2 34 5 6 7 8