Searched refs:getVariable (Results 1 - 25 of 86) sorted by relevance

1234

/external/doclava/src/com/google/doclava/
H A DResolution.java25 * Public accessors {@link Resolution#getVariable()} and {@link Resolution#getValue()} exist to
58 public String getVariable() { method in class:Resolution
H A DAnnotationInstanceInfo.java113 } else if ("annotationTypeName".equals(resolution.getVariable())) {
H A DAnnotationValueInfo.java119 } else if ("element".equals(resolution.getVariable())) {
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
89 fieldList.add(new Field(field.getVariable(), values));
214 public String getVariable() { method in class:ReportedData.Column
237 if (variable.equalsIgnoreCase(field.getVariable())) {
268 public String getVariable() { method in class:ReportedData.Field
H A DForm.java383 if (variable.equals(field.getVariable())) {
532 if (field.getVariable() != null) {
533 FormField newField = new FormField(field.getVariable());
544 form.setAnswer(field.getVariable(), values);
H A DFormField.java163 public String getVariable() { method in class:FormField
276 if (getVariable() != null) {
277 buf.append(" var=\"").append(getVariable()).append("\"");
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java28 Symbol sym = getReturn().getVariable();
H A DDeclarator.java80 public Symbol getVariable() { return (Symbol)getLeft(); } method in class:Declarator
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
H A DDepthFirstAdapter.java227 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()
[all...]
H A DReversedDepthFirstAdapter.java228 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()
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAVariableExpression.java37 public PVariable getVariable() method in class:AVariableExpression
H A DANameCommand.java67 public PVariable getVariable() method in class:ANameCommand
H A DAEachCommand.java77 public PVariable getVariable() method in class:AEachCommand
H A DALoopToCommand.java77 public PVariable getVariable() method in class:ALoopToCommand
H A DASetCommand.java72 public PVariable getVariable() method in class:ASetCommand
H A DAWithCommand.java77 public PVariable getVariable() method in class:AWithCommand
/external/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp93 DIVariable Var(DDI->getVariable());
101 DIVariable Var(DVI->getVariable());
/external/smack/src/org/jivesoftware/smackx/search/
H A DSimpleUserSearch.java72 String name = field.getVariable();
128 if (column.getVariable().equals(name)) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Djstemplate_test.js340 assertEquals('foo', context.getVariable('foo'));
341 assertEquals(1, context.getVariable('$baz'));
342 assertTrue(context.getVariable('bar'));
343 assertUndefined(context.getVariable('foobar'));
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Djstemplate_test.js340 assertEquals('foo', context.getVariable('foo'));
341 assertEquals(1, context.getVariable('$baz'));
342 assertTrue(context.getVariable('bar'));
343 assertUndefined(context.getVariable('foobar'));
/external/chromium_org/third_party/jstemplate/
H A Djstemplate_test.js340 assertEquals('foo', context.getVariable('foo'));
341 assertEquals(1, context.getVariable('$baz'));
342 assertTrue(context.getVariable('bar'));
343 assertUndefined(context.getVariable('foobar'));
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DTemplateInterpreter.java206 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/
H A DTransBlockObjCVariable.cpp83 VarDecl *var = I->getVariable();
/external/llvm/include/llvm/IR/
H A DIntrinsicInst.h84 MDNode *getVariable() const { return cast<MDNode>(getArgOperand(1)); } function in class:llvm::DbgDeclareInst
105 MDNode *getVariable() const { return cast<MDNode>(getArgOperand(2)); } function in class:llvm::DbgValueInst
/external/smack/src/org/jivesoftware/smackx/entitycaps/
H A DEntityCapsManager.java543 if (f.getVariable().equals("FORM_TYPE")) {
626 return f1.getVariable().compareTo(f2.getVariable());
634 if (!f.getVariable().equals("FORM_TYPE")) {
654 sb.append(f.getVariable());

Completed in 984 milliseconds

1234