HomeSort by relevance Sort by last modified time
    Searched refs:getVariable (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/doclava/src/com/google/doclava/
Resolution.java 25 * Public accessors {@link Resolution#getVariable()} and {@link Resolution#getValue()} exist to
58 public String getVariable() {
AnnotationInstanceInfo.java 113 } else if ("annotationTypeName".equals(resolution.getVariable())) {
AnnotationValueInfo.java 119 } else if ("element".equals(resolution.getVariable())) {
  /external/javassist/src/main/javassist/compiler/ast/
MethodDecl.java 28 Symbol sym = getReturn().getVariable();
Declarator.java 80 public Symbol getVariable() { return (Symbol)getLeft(); }
  /external/webkit/Source/WebCore/wml/
WMLPageState.h 53 String getVariable(const String& name) const { return m_variables.get(name); }
WMLTimerElement.cpp 127 interval = pageState->getVariable(m_name).toInt();
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DepthFirstAdapter.java 227 if(node.getVariable() != null)
229 node.getVariable().apply(this);
256 if(node.getVariable() != null)
258 node.getVariable().apply(this);
339 if(node.getVariable() != null)
341 node.getVariable().apply(this);
372 if(node.getVariable() != null)
374 node.getVariable().apply(this);
405 if(node.getVariable() != null)
407 node.getVariable().apply(this)
    [all...]
ReversedDepthFirstAdapter.java 228 if(node.getVariable() != null)
230 node.getVariable().apply(this);
253 if(node.getVariable() != null)
255 node.getVariable().apply(this);
344 if(node.getVariable() != null)
346 node.getVariable().apply(this);
377 if(node.getVariable() != null)
379 node.getVariable().apply(this);
414 if(node.getVariable() != null)
416 node.getVariable().apply(this)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AVariableExpression.java 37 public PVariable getVariable()
ANameCommand.java 67 public PVariable getVariable()
AEachCommand.java 77 public PVariable getVariable()
ALoopToCommand.java 77 public PVariable getVariable()
ASetCommand.java 72 public PVariable getVariable()
AWithCommand.java 77 public PVariable getVariable()
ALoopCommand.java 82 public PVariable getVariable()
  /external/llvm/lib/VMCore/
DebugInfoProbe.cpp 81 Node = DDI->getVariable();
84 Node = DVI->getVariable();
132 Node = DDI->getVariable();
135 Node = DVI->getVariable();
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 92 DIVariable Var(DDI->getVariable());
101 DIVariable Var(DVI->getVariable());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/build/
NdkEnvSupplier.java 99 public IBuildEnvironmentVariable getVariable(String variableName,
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 206 String variableName = variableLocator.getVariableName(node.getVariable());
231 String variableName = variableLocator.getVariableName(node.getVariable());
294 String withVar = variableLocator.getVariableName(node.getVariable());
324 loop(node.getVariable(), 0, end, 1, node.getCommand());
341 loop(node.getVariable(), start, end, 1, node.getCommand());
365 loop(node.getVariable(), start, end, incr, node.getCommand());
381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand());
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 81 VarDecl *var = I->getVariable();
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate_test.js 340 assertEquals('foo', context.getVariable('foo'));
341 assertEquals(1, context.getVariable('$baz'));
342 assertTrue(context.getVariable('bar'));
343 assertUndefined(context.getVariable('foobar'));
  /external/llvm/include/llvm/
IntrinsicInst.h 86 MDNode *getVariable() const { return cast<MDNode>(getArgOperand(1)); }
108 MDNode *getVariable() const { return cast<MDNode>(getArgOperand(2)); }
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.h 173 - (NPError)getVariable:(NPNVariable)variable value:(void *)value;
178 - (NPError)getVariable:(NPNURLVariable)variable forURL:(const char*)url value:(char**)value length:(uint32_t*)length;
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 267 .translate(node.getVariable()), true)));
287 callFindVariable(variableTranslator.translate(node.getVariable()), false);
316 writeEach(node.getVariable(), parent, node.getCommand());
349 JavaExpression itemKey = variableTranslator.translate(node.getVariable());
379 writeLoop(node.getVariable(), start, end, incr, node.getCommand());
392 writeLoop(node.getVariable(), start, end, incr, node.getCommand());
406 writeLoop(node.getVariable(), start, end, incr, node.getCommand());
    [all...]

Completed in 456 milliseconds

1 2 3