Home
last modified time | relevance | path

Searched refs:getVariable (Results 1 – 25 of 76) sorted by relevance

1234

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java227 if(node.getVariable() != null) in caseASetCommand()
229 node.getVariable().apply(this); in caseASetCommand()
256 if(node.getVariable() != null) in caseANameCommand()
258 node.getVariable().apply(this); in caseANameCommand()
339 if(node.getVariable() != null) in caseAWithCommand()
341 node.getVariable().apply(this); in caseAWithCommand()
372 if(node.getVariable() != null) in caseALoopToCommand()
374 node.getVariable().apply(this); in caseALoopToCommand()
405 if(node.getVariable() != null) in caseALoopCommand()
407 node.getVariable().apply(this); in caseALoopCommand()
[all …]
DReversedDepthFirstAdapter.java228 if(node.getVariable() != null) in caseASetCommand()
230 node.getVariable().apply(this); in caseASetCommand()
253 if(node.getVariable() != null) in caseANameCommand()
255 node.getVariable().apply(this); in caseANameCommand()
344 if(node.getVariable() != null) in caseAWithCommand()
346 node.getVariable().apply(this); in caseAWithCommand()
377 if(node.getVariable() != null) in caseALoopToCommand()
379 node.getVariable().apply(this); in caseALoopToCommand()
414 if(node.getVariable() != null) in caseALoopCommand()
416 node.getVariable().apply(this); in caseALoopCommand()
[all …]
/external/llvm/lib/VMCore/
DDebugInfoProbe.cpp81 Node = DDI->getVariable(); in initialize()
84 Node = DVI->getVariable(); in initialize()
132 Node = DDI->getVariable(); in finalize()
135 Node = DVI->getVariable(); in finalize()
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
Djstemplate_test.js340 assertEquals('foo', context.getVariable('foo'));
341 assertEquals(1, context.getVariable('$baz'));
342 assertTrue(context.getVariable('bar'));
343 assertUndefined(context.getVariable('foobar'));
Djsevalcontext.js285 JsEvalContext.prototype.getVariable = function(name) { method in JsEvalContext
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java206 String variableName = variableLocator.getVariableName(node.getVariable()); in caseASetCommand()
231 String variableName = variableLocator.getVariableName(node.getVariable()); in caseANameCommand()
294 String withVar = variableLocator.getVariableName(node.getVariable()); in caseAWithCommand()
324 loop(node.getVariable(), 0, end, 1, node.getCommand()); in caseALoopToCommand()
341 loop(node.getVariable(), start, end, 1, node.getCommand()); in caseALoopCommand()
365 loop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand()
381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand()); in caseAEachCommand()
/external/llvm/tools/llvm-dis/
Dllvm-dis.cpp92 DIVariable Var(DDI->getVariable()); in printInfoComment()
101 DIVariable Var(DVI->getVariable()); in printInfoComment()
/external/doclava/src/com/google/doclava/
DResolution.java58 public String getVariable() { in getVariable() method in Resolution
DAnnotationInstanceInfo.java113 } else if ("annotationTypeName".equals(resolution.getVariable())) { in resolveResolutions()
DAnnotationValueInfo.java119 } else if ("element".equals(resolution.getVariable())) { in resolveResolutions()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateTranslator.java267 .translate(node.getVariable()), true))); in caseASetCommand()
287 callFindVariable(variableTranslator.translate(node.getVariable()), false); in caseANameCommand()
316 writeEach(node.getVariable(), parent, node.getCommand()); in caseAEachCommand()
349 JavaExpression itemKey = variableTranslator.translate(node.getVariable()); in caseAWithCommand()
379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopToCommand()
392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopCommand()
406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand()
/external/javassist/src/main/javassist/compiler/ast/
DMethodDecl.java28 Symbol sym = getReturn().getVariable(); in isConstructor()
DDeclarator.java80 public Symbol getVariable() { return (Symbol)getLeft(); } in getVariable() method in Declarator
/external/webkit/Source/WebKit/mac/Plugins/
DWebNetscapePluginView.h173 - (NPError)getVariable:(NPNVariable)variable value:(void *)value;
178 - (NPError)getVariable:(NPNURLVariable)variable forURL:(const char*)url value:(char**)value length:…
/external/webkit/Source/WebCore/wml/
DWMLPageState.h53 String getVariable(const String& name) const { return m_variables.get(name); } in getVariable() function
DWMLTimerElement.cpp127 interval = pageState->getVariable(m_name).toInt(); in start()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DAVariableExpression.java37 public PVariable getVariable() in getVariable() method in AVariableExpression
DANameCommand.java67 public PVariable getVariable() in getVariable() method in ANameCommand
DASetCommand.java72 public PVariable getVariable() in getVariable() method in ASetCommand
DALoopToCommand.java77 public PVariable getVariable() in getVariable() method in ALoopToCommand
DAWithCommand.java77 public PVariable getVariable() in getVariable() method in AWithCommand
DAEachCommand.java77 public PVariable getVariable() in getVariable() method in AEachCommand
/external/llvm/include/llvm/
DIntrinsicInst.h86 MDNode *getVariable() const { return cast<MDNode>(getArgOperand(1)); } in getVariable() function
108 MDNode *getVariable() const { return cast<MDNode>(getArgOperand(2)); } in getVariable() function
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp518 if (!DIVariable(DI->getVariable()).Verify() || in SelectCall()
544 .addMetadata(DI->getVariable()); in SelectCall()
557 .addMetadata(DI->getVariable()); in SelectCall()
562 .addMetadata(DI->getVariable()); in SelectCall()
566 .addMetadata(DI->getVariable()); in SelectCall()
570 .addMetadata(DI->getVariable()); in SelectCall()
574 .addMetadata(DI->getVariable()); in SelectCall()
/external/clang/lib/ARCMigrate/
DTransBlockObjCVariable.cpp82 VarDecl *var = I->getVariable(); in VisitBlockDecl()

1234