Searched defs:Variable (Results 1 - 25 of 30) sorted by relevance

12

/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml11 | Variable of string Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml11 | Variable of string Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml11 | Variable of string Constructor in type:expr
/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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml11 | Variable of string Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml11 | Variable of string Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml11 | Variable of string Constructor in type:expr
/external/v8/src/
H A Dvariables.cc38 // Implementation Variable.
40 const char* Variable::Mode2String(VariableMode mode) {
57 Variable::Variable(Scope* scope, function in class:v8::internal::Variable
84 bool Variable::is_global() const {
91 int Variable::CompareIndex(Variable* const* v, Variable* const* w) {
H A Dvariables.h42 class Variable: public ZoneObject { class in namespace:v8::internal
77 Variable(Scope* scope,
144 Variable* local_if_not_shadowed() const {
149 void set_local_if_not_shadowed(Variable* local) {
165 static int CompareIndex(Variable* const* v, Variable* const* w);
180 Variable* local_if_not_shadowed_;
/external/webkit/Source/WebCore/inspector/front-end/
H A DDrawer.js131 this.state = (this.fullPanel ? WebInspector.Drawer.State.Full : WebInspector.Drawer.State.Variable);
207 if (this.state === WebInspector.Drawer.State.Variable) {
235 // If this animation gets cancelled, we want the state of the drawer to be Variable,
237 this.state = WebInspector.Drawer.State.Variable;
239 this._animateDrawerHeight(height, WebInspector.Drawer.State.Variable);
360 Variable: 1,
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DVariable.java19 * $Id: Variable.java 468655 2006-10-28 07:12:06Z minchau $
42 public class Variable extends Expression implements PathComponent class in inherits:Expression,PathComponent
251 // throw new javax.xml.transform.TransformerException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_VAR_NOT_RESOLVABLE, new Object[]{m_qname.toString()})); //"Variable not resolvable: "+m_qname);
358 if(!m_qname.equals(((Variable)expr).m_qname))
363 if(getElemVariable() != ((Variable)expr).getElemVariable())
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTest.cpp32 bool VisitVarDecl(VarDecl *Variable) { argument
33 Match(Variable->getNameAsString(), Variable->getLocStart());
/external/v8/benchmarks/
H A Ddeltablue.js537 function Variable(name, initialValue) {
551 Variable.prototype.addConstraint = function (c) {
558 Variable.prototype.removeConstraint = function (c) {
804 var v = new Variable(name);
833 var scale = new Variable("scale", 10);
834 var offset = new Variable("offset", 1000);
839 src = new Variable("src" + i, i);
840 dst = new Variable("dst" + i, i);
545 Variable.prototype.addConstraint = function (c) { class
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-deltablue.js531 function Variable(name, initialValue) {
545 Variable.prototype.addConstraint = function (c) {
552 Variable.prototype.removeConstraint = function (c) {
798 var v = new Variable(name);
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
539 Variable.prototype.addConstraint = function (c) { class
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-deltablue.js531 function Variable(name, initialValue) {
545 Variable.prototype.addConstraint = function (c) {
552 Variable.prototype.removeConstraint = function (c) {
798 var v = new Variable(name);
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
539 Variable.prototype.addConstraint = function (c) { class
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-deltablue.js531 function Variable(name, initialValue) {
545 Variable.prototype.addConstraint = function (c) {
552 Variable.prototype.removeConstraint = function (c) {
798 var v = new Variable(name);
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
539 Variable.prototype.addConstraint = function (c) { class
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp143 const VarDecl *Variable; member in struct:__anon59::CatchHandler
192 Handler.Variable = CatchDecl;
239 bool EndCatchMightThrow = (Handler.Variable == 0);
247 if (const VarDecl *CatchParam = Handler.Variable) {
H A DCGStmt.cpp1303 const VarDecl *Variable = dyn_cast<VarDecl>(&Value); local
1304 if (!Variable)
1306 if (Variable->getStorageClass() != SC_Register)
1308 AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>();
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp595 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str()); local
596 Variable->addIncoming(StartVal, PreheaderBB);
601 NamedValues[VarName] = Variable;
619 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
641 Variable->addIncoming(NextVar, LoopEndBB);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp699 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str()); local
700 Variable->addIncoming(StartVal, PreheaderBB);
705 NamedValues[VarName] = Variable;
723 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
745 Variable->addIncoming(NextVar, LoopEndBB);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h70 const MDNode *Variable; member in struct:llvm::DotDebugLocEntry
87 : Begin(0), End(0), Variable(0), Merged(false),
91 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
94 : Begin(B), End(E), Variable(0), Merged(false),
97 : Begin(B), End(E), Variable(0), Merged(false),
100 : Begin(B), End(E), Variable(0), Merged(false),
126 DIVariable Var; // Variable Descriptor.
127 DIE *TheDIE; // Variable DIE.
/external/icu4c/test/intltest/
H A Dwbnf.cpp518 class Variable : public Pick { class in inherits:Pick
520 Variable(SymbolTable * symbols, const char * varName, Pick * varRef = NULL){ function in class:Variable
1077 node = new Variable(&symbols, s.token);
1495 Variable var1(&tab, "x", value);
1497 Variable var2(&tab, "y");
1503 Variable var3(&tab, "z");
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp400 const MDNode *Variable = local
407 .addImm(Offset).addMetadata(Variable);
428 .addImm(Offset).addMetadata(Variable);
/external/v8/tools/
H A Dtest.py775 class Variable(Expression): class in inherits:Expression
993 return Variable(name.lower())
/external/valgrind/main/memcheck/
H A Dmc_errors.c120 } Variable; member in union:_AddrInfo::__anon14053
366 if (ai->Addr.Variable.descr1)
369 (HChar*)VG_(indexXA)(ai->Addr.Variable.descr1, 0) );
370 if (ai->Addr.Variable.descr2)
373 (HChar*)VG_(indexXA)(ai->Addr.Variable.descr2, 0) );
1156 ai->Addr.Variable.descr1
1159 ai->Addr.Variable.descr2
1163 (void) VG_(get_data_description)( ai->Addr.Variable.descr1,
1164 ai->Addr.Variable.descr2, a );
1171 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable
[all...]

Completed in 460 milliseconds

12