HomeSort by relevance Sort by last modified time
    Searched defs:Variable (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/clang/test/Misc/
ast-dump-stmt.cpp 5 int Variable;
8 using n::Variable;
12 Variable = 4;
13 // CHECK: DeclRefExpr{{.*}} (UsingShadow{{.*}}Variable
  /external/deqp/framework/randomshaders/
rsgVariable.cpp 21 * \brief Variable class.
31 Variable::Variable (const VariableType& type, Storage storage, const char* name)
39 Variable::~Variable (void)
43 void Variable::tokenizeDeclaration (GeneratorState& state, TokenStream& str) const
rsgVariable.hpp 23 * \brief Variable class.
37 class Variable
54 Variable (const VariableType& type, Storage storage, const char* name);
55 ~Variable (void);
  /external/chromium_org/v8/src/
variables.cc 15 // Implementation Variable.
17 const char* Variable::Mode2String(VariableMode mode) {
35 Variable::Variable(Scope* scope,
62 bool Variable::IsGlobalObjectProperty() const {
71 int Variable::CompareIndex(Variable* const* v, Variable* const* w) {
variables.h 17 // after binding and variable allocation.
19 class Variable: public ZoneObject {
28 // Before and during variable allocation, a variable whose location is
29 // not yet determined. After allocation, a variable looked up as a
31 // variable name, index() is invalid.
39 // A slot in the local section on the stack. index() is the variable
43 // An indexed slot in a heap context. index() is the variable index in
48 // A named slot in a heap context. name() is the variable name in the
54 Variable(Scope* scope
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Variable.java 21 * Variable.
23 public class Variable extends Symbol {
26 public Variable(String sym, Declarator d) {
  /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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/lldb/include/lldb/Symbol/
Variable.h 1 //===-- Variable.h ----------------------------------------------*- C++ -*-===//
24 class Variable : public UserID
30 Variable (lldb::user_id_t uid,
32 const char *mangled, // The mangled variable name for variables in namespaces
42 ~Variable();
67 // Since a variable can have a basename "i" and also a mangled
167 ConstString m_name; // The basename of the variable (no namespaces)
168 Mangled m_mangled; // The mangled name of the variable
169 lldb::SymbolFileTypeSP m_symfile_type_sp; // The type pointer of the variable (int, struct, class, etc)
171 SymbolContextScope *m_owner_scope; // The symbol file scope that this variable was defined i
    [all...]
  /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...]
  /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/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; }
  /frameworks/base/tools/aidl/
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/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/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java 19 * $Id: Variable.java 468655 2006-10-28 07:12:06Z minchau $
40 * The variable reference expression executer.
42 public class Variable extends Expression implements PathComponent
49 /** The qualified name of the variable.
54 * The index of the variable, which is either an absolute index to a
61 * Set the index for the variable into the stack. For advanced use only. You
72 * Set the index for the variable into the stack. For advanced use only.
84 * @param isGlobal true if this should be a global variable reference.
92 * Set the index for the variable into the stack. For advanced use only.
94 * @return true if this should be a global variable reference
    [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...]
  /external/chromium_org/v8/benchmarks/
deltablue.js 149 * a strength instance variable; concrete subclasses provide a means
210 * variable.
250 * Returns the current output variable.
308 * A unary input constraint used to mark a variable that the client
318 * Edits indicate that a variable is to be changed by imperative code.
395 * Mark the input variable with the given mark.
402 * Returns the current input variable
409 * Returns the current output variable
532 * A constrained variable. In addition to its value, it maintain the
537 function Variable(name, initialValue)
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 149 const VarDecl *Variable;
198 Handler.Variable = CatchDecl;
245 bool EndCatchMightThrow = (Handler.Variable == nullptr);
253 if (const VarDecl *CatchParam = Handler.Variable) {
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceQueryTests.cpp 260 class Variable : public Node
263 Variable (const SharedPtr& enclosing, glu::DataType dataType)
454 DE_ASSERT(dynamic_cast<const ResourceDefinition::Variable*>(resource));
465 const glu::DataType basicType = static_cast<const ResourceDefinition::Variable*>(resource)->m_dataType;
467 glu::VariableDeclaration variable (glu::VarType(basicType, getDataTypeDefaultPrecision(basicType)), "target");
476 variable.memoryAccessQualifierBits |= glu::MEMORYACCESSQUALIFIER_READONLY_BIT;
477 variable.layout.binding = 1;
480 variable.layout.format = glu::FORMATLAYOUT_RGBA8;
482 variable.layout.format = glu::FORMATLAYOUT_RGBA8I;
484 variable.layout.format = glu::FORMATLAYOUT_RGBA8UI
    [all...]

Completed in 519 milliseconds

1 2 3