Home
last modified time | relevance | path

Searched refs:apiLevel (Results 1 – 25 of 222) sorted by relevance

123456789

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/internal/core/dom/util/
H A DDOMASTUtil.java36 return isNodeTypeSupportedinAST(ast.apiLevel(), ast.isPreviewEnabledSet(), nodeType); in isNodeTypeSupportedinAST()
55 …private static boolean isNodeTypeSupportedinAST(int apiLevel, boolean previewEnabled, int nodeType… in isNodeTypeSupportedinAST() argument
59 return apiLevel >= AST.JLS14; in isNodeTypeSupportedinAST()
63 return isPreviewEnabled(apiLevel, previewEnabled); in isNodeTypeSupportedinAST()
68 private static boolean isPreviewEnabled(int apiLevel, boolean previewEnabled) { in isPreviewEnabled() argument
69 return (apiLevel == AST.JLS14 && previewEnabled); in isPreviewEnabled()
88 public static boolean isRecordDeclarationSupported(int apiLevel, boolean previewEnabled) { in isRecordDeclarationSupported() argument
89 return isNodeTypeSupportedinAST(apiLevel, previewEnabled, ASTNode.RECORD_DECLARATION); in isRecordDeclarationSupported()
96 …public static boolean isInstanceofExpressionPatternSupported(int apiLevel, boolean previewEnabled)… in isInstanceofExpressionPatternSupported() argument
97 return isNodeTypeSupportedinAST(apiLevel, previewEnabled, ASTNode.INSTANCEOF_EXPRESSION); in isInstanceofExpressionPatternSupported()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/
H A DArrayType.java112 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
113 switch (apiLevel) { in propertyDescriptors()
150 if (ast.apiLevel >= AST.JLS8_INTERNAL) { in ArrayType()
178 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
179 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
220 if (this.ast.apiLevel < AST.JLS8_INTERNAL) { in clone0()
244 if (this.ast.apiLevel < AST.JLS8_INTERNAL) { in accept0()
324 if (this.ast.apiLevel() < AST.JLS8_INTERNAL) { in getElementType()
368 if (this.ast.apiLevel() >= AST.JLS8_INTERNAL) { in getDimensions()
407 …+ (this.type == null ? 0 : (this.ast.apiLevel() < AST.JLS8_INTERNAL ? getComponentType().treeSize(… in treeSize()
H A DYieldStatement.java69 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
94 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
95 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
99 final List internalStructuralPropertiesForType(int apiLevel, boolean previewEnabled) { in internalStructuralPropertiesForType() argument
100 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
127 if (this.ast.apiLevel >= AST.JLS12_INTERNAL) { in clone0()
143 if (this.ast.apiLevel >= AST.JLS13_INTERNAL) { in accept0()
H A DSingleVariableDeclaration.java174 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
175 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
177 } else if (apiLevel < AST.JLS8_INTERNAL) { in propertyDescriptors()
235 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in SingleVariableDeclaration()
237 if (ast.apiLevel >= AST.JLS8_INTERNAL) { in SingleVariableDeclaration()
265 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
358 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
365 if (this.ast.apiLevel >= AST.JLS8_INTERNAL) { in clone0()
370 if (this.ast.apiLevel >= AST.JLS8_INTERNAL) { in clone0()
392 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
[all …]
H A DConstructorInvocation.java88 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
89 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
119 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in ConstructorInvocation()
125 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
126 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
151 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
168 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DMethodDeclaration.java297 return propertyDescriptors(apiLevel, false); in propertyDescriptors()
313 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
315 } else if (apiLevel < AST.JLS8_INTERNAL) { in propertyDescriptors()
446 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in MethodDeclaration()
449 if (ast.apiLevel < AST.JLS8_INTERNAL) { in MethodDeclaration()
463 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
628 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
633 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
642 if (this.ast.apiLevel >= AST.JLS8_INTERNAL) { in clone0()
648 if (this.ast.apiLevel >= AST.JLS8_INTERNAL) { in clone0()
[all …]
H A DTextBlock.java70 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
71 return propertyDescriptors(apiLevel, false); in propertyDescriptors()
86 public static List propertyDescriptors(int apiLevel, boolean previewEnabled) { in propertyDescriptors() argument
87 if (apiLevel == AST.JLS14_INTERNAL && previewEnabled) { in propertyDescriptors()
116 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
117 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
121 final List internalStructuralPropertiesForType(int apiLevel, boolean previewEnabled) { in internalStructuralPropertiesForType() argument
122 return propertyDescriptors(apiLevel, previewEnabled); in internalStructuralPropertiesForType()
H A DSwitchCase.java100 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
101 if (apiLevel >= AST.JLS14_INTERNAL) { in propertyDescriptors()
139 if (ast.apiLevel >= AST.JLS14) { in SwitchCase()
145 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
146 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
197 if (this.ast.apiLevel >= AST.JLS14) { in clone0()
217 if (this.ast.apiLevel >= AST.JLS14) { in accept0()
326 if (this.ast.apiLevel >= AST.JLS14) { in isDefault()
H A DInstanceofExpression.java95 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
96 return propertyDescriptors(apiLevel, false); in propertyDescriptors()
111 public static List propertyDescriptors(int apiLevel, boolean previewEnabled) { in propertyDescriptors() argument
112 if (DOMASTUtil.isInstanceofExpressionPatternSupported(apiLevel, previewEnabled)) { in propertyDescriptors()
146 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
147 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
151 final List internalStructuralPropertiesForType(int apiLevel, boolean previewEnabled) { in internalStructuralPropertiesForType() argument
152 return propertyDescriptors(apiLevel, previewEnabled); in internalStructuralPropertiesForType()
H A DSuperConstructorInvocation.java98 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
99 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
135 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in SuperConstructorInvocation()
141 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
142 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
183 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
202 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DVariableDeclarationExpression.java115 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
116 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
163 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in VariableDeclarationExpression()
169 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
170 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
223 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
226 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
247 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DVariableDeclarationStatement.java118 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
119 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
166 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in VariableDeclarationStatement()
172 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
173 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
227 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
230 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
250 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DTypeParameter.java92 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
93 switch (apiLevel) { in propertyDescriptors()
136 if (ast.apiLevel >= AST.JLS8_INTERNAL) { in TypeParameter()
142 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
143 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
181 if (this.ast.apiLevel >= AST.JLS8_INTERNAL) { in clone0()
202 if (this.ast.apiLevel >= AST.JLS8_INTERNAL) { in accept0()
H A DInitializer.java105 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
106 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
137 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
138 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
210 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
213 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
233 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DPackageDeclaration.java99 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
100 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
142 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in PackageDeclaration()
148 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
149 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
192 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
210 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DTryStatement.java138 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
139 switch (apiLevel) { in propertyDescriptors()
192 if (ast.apiLevel >= AST.JLS9_INTERNAL) { in TryStatement()
194 } else if (ast.apiLevel >= AST.JLS4_INTERNAL) { in TryStatement()
200 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
201 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
248 if (this.ast.apiLevel >= AST.JLS4_INTERNAL) { in clone0()
271 if (this.ast.apiLevel >= AST.JLS4_INTERNAL) { in accept0()
H A DFieldDeclaration.java126 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
127 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
167 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
168 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
245 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
248 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
269 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DMethodInvocation.java106 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
107 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
149 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in MethodInvocation()
155 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
156 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
205 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
224 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DSuperMethodInvocation.java107 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
108 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
150 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in SuperMethodInvocation()
156 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
157 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
205 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
224 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
H A DClassInstanceCreation.java135 public static List propertyDescriptors(int apiLevel) { in propertyDescriptors() argument
136 if (apiLevel == AST.JLS2_INTERNAL) { in propertyDescriptors()
196 if (ast.apiLevel >= AST.JLS3_INTERNAL) { in ClassInstanceCreation()
206 final List internalStructuralPropertiesForType(int apiLevel) { in internalStructuralPropertiesForType() argument
207 return propertyDescriptors(apiLevel); in internalStructuralPropertiesForType()
271 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in clone0()
274 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in clone0()
297 if (this.ast.apiLevel == AST.JLS2_INTERNAL) { in accept0()
300 if (this.ast.apiLevel >= AST.JLS3_INTERNAL) { in accept0()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Testing/
H A DAndroidVersion.php21 public $apiLevel; variable in Google_Service_Testing_AndroidVersion
31 public function setApiLevel($apiLevel) argument
33 $this->apiLevel = $apiLevel;
37 return $this->apiLevel;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Testing/
H A DAndroidVersion.php21 public $apiLevel; variable in Google_Service_Testing_AndroidVersion
31 public function setApiLevel($apiLevel) argument
33 $this->apiLevel = $apiLevel;
37 return $this->apiLevel;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/
H A DASTMatcherTest.java121 this.API_LEVEL = apiLevel; in ASTMatcherTest()
153 if (this.ast.apiLevel() >= getJLS8()) { in setUp()
194 if (this.ast.apiLevel() == AST.JLS2) { in setUp()
255 if (this.ast.apiLevel() >= getJLS8()) { in setUp()
734 if (this.ast.apiLevel() < getJLS8()) { in testNameQualifiedType()
743 if (this.ast.apiLevel() == AST.JLS2) { in testParameterizedType()
754 if (this.ast.apiLevel() == AST.JLS2) { in testQualifiedType()
763 if (this.ast.apiLevel() == AST.JLS2) { in testWildcardType()
853 if (this.ast.apiLevel() == AST.JLS2) { in testClassInstanceCreation()
894 if (this.ast.apiLevel() < getJLS8()) { in testCreationReference()
[all …]
H A DProfilingASTConvertionTest.java169 switch(apiLevel) { in reportResults()
251 final int apiLevel = JLS3_INTERNAL; in test0000() local
252 ASTParser parser = ASTParser.newParser(apiLevel); in test0000()
287 final int apiLevel = JLS3_INTERNAL; in test0001() local
288 ASTParser parser = ASTParser.newParser(apiLevel); in test0001()
326 final int apiLevel = JLS3_INTERNAL; in test0002() local
327 ASTParser parser = ASTParser.newParser(apiLevel); in test0002()
366 final int apiLevel = AST.JLS2; in test0003() local
367 ASTParser parser = ASTParser.newParser(apiLevel); in test0003()
406 final int apiLevel = AST.JLS2; in test0004() local
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/internal/core/dom/
H A DNaiveASTFlattener.java257 if (node.getAST().apiLevel() >= JLS8) { in visitTypeAnnotations()
387 if (node.getAST().apiLevel() < JLS8) { in visit()
497 if (node.getAST().apiLevel() == JLS2) { in visit()
500 if (node.getAST().apiLevel() >= JLS3) { in visit()
531 if (node.getAST().apiLevel() >= JLS9) { in visit()
563 if (node.getAST().apiLevel() >= JLS3) { in visit()
751 if (node.getAST().apiLevel() == JLS2) { in visit()
754 if (node.getAST().apiLevel() >= JLS3) { in visit()
812 if (node.getAST().apiLevel() >= JLS3) { in visit()
849 if (node.getAST().apiLevel() == JLS2) { in visit()
[all …]

123456789