Searched refs:staticValue (Results 1 – 4 of 4) sorted by relevance
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | DexMaker.java | 301 public void declare(FieldId<?, ?> fieldId, int flags, Object staticValue) { in declare() argument 315 if ((flags & Modifier.STATIC) == 0 && staticValue != null) { in declare() 319 FieldDeclaration fieldDeclaration = new FieldDeclaration(fieldId, flags, staticValue); in declare() 594 … classDefItem.addStaticField(encoded, Constants.getConstant(field.staticValue)); in toClassDefItem() 608 private final Object staticValue; field in DexMaker.FieldDeclaration 610 FieldDeclaration(FieldId<?, ?> fieldId, int accessFlags, Object staticValue) { in FieldDeclaration() argument 611 if ((accessFlags & STATIC) == 0 && staticValue != null) { in FieldDeclaration() 616 this.staticValue = staticValue; in FieldDeclaration()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | TypeExtractor.java | 186 Expression staticValue = node.getScope(); in visit() local 187 …dStatically = JavaParserFactory.getContext(node, typeSolver).solveType(staticValue.toString(), typ… in visit()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_javaparsermodel_TypeExtractor.txt | 66 …Line 183) JavaParserFactory.getContext(node, typeSolver).solveType(staticValue.toString(), typeSol… 68 Line 183) staticValue.toString() ==> com.github.javaparser.ast.Node.toString()
|
D | com_github_javaparser_symbolsolver_javaparsermodel_TypeExtractor_J9.txt | 66 …Line 183) JavaParserFactory.getContext(node, typeSolver).solveType(staticValue.toString(), typeSol… 68 Line 183) staticValue.toString() ==> com.github.javaparser.ast.Node.toString()
|