Home
last modified time | relevance | path

Searched refs:ImportDeclaration (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/
H A DImportDeclaration.java31 public class ImportDeclaration extends ASTNode { class
38 …new ChildPropertyDescriptor(ImportDeclaration.class, "name", Name.class, MANDATORY, NO_CYCLE_RISK)…
45 …new SimplePropertyDescriptor(ImportDeclaration.class, "onDemand", boolean.class, MANDATORY); //$NO…
52 …new SimplePropertyDescriptor(ImportDeclaration.class, "static", boolean.class, MANDATORY); //$NON-…
72 createPropertyList(ImportDeclaration.class, properyList); in createPropertyList()
78 createPropertyList(ImportDeclaration.class, properyList); in createPropertyList()
134 ImportDeclaration(AST ast) { in ImportDeclaration() method in ImportDeclaration
186 ImportDeclaration result = new ImportDeclaration(target); in clone0()
/dports/devel/elixir-estree/elixir-estree-2.6.1/lib/es_tree/
H A Dimport_declaration.ex1 defmodule ESTree.ImportDeclaration do module
2 @type t :: %ESTree.ImportDeclaration{
8 defstruct type: "ImportDeclaration",
H A Ddeclaration.ex5 ESTree.ImportDeclaration.t |
H A Dnode.ex14 ESTree.ImportDeclaration.t |
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/
H A DImportDeclaration.java25 /* package */class ImportDeclaration extends SourceRefElement implements class
32 protected ImportDeclaration(ImportContainer parent, String name) { in ImportDeclaration() method in ImportDeclaration
37 if (!(o instanceof ImportDeclaration)) in equals()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DImportDeclaration.java24 public class ImportDeclaration extends SourceRefElement implements IImportDeclaration { class
33 protected ImportDeclaration(ImportContainer parent, String name, boolean isOnDemand) { in ImportDeclaration() method in ImportDeclaration
40 if (!(o instanceof ImportDeclaration)) return false; in equals()
H A DCreateImportOperation.java34 import org.eclipse.jdt.core.dom.ImportDeclaration;
93 ImportDeclaration importDeclaration = (ImportDeclaration) imports.next(); in generateElementAST()
103 ImportDeclaration importDeclaration = ast.newImportDeclaration(); in generateElementAST()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Converter/src/test0579/
H A DParserTask.java12 import org.eclipse.jdt.core.dom.ImportDeclaration;
54 ImportDeclaration importDecl = (ImportDeclaration) itr.next(); in execute()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/
H A DAssistImportDeclaration.java21 import org.eclipse.jdt.internal.core.ImportDeclaration;
24 public class AssistImportDeclaration extends ImportDeclaration {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/
H A DOrganizeImportsOperation.java54 import org.eclipse.jdt.core.dom.ImportDeclaration;
106 Collection<ImportDeclaration> unresolvableImports= determineUnresolvableImports(cu); in forCompilationUnit()
110 for (ImportDeclaration importDeclaration : unresolvableImports) { in forCompilationUnit()
131 private static Collection<ImportDeclaration> determineUnresolvableImports(CompilationUnit cu) { in determineUnresolvableImports()
132 Collection<ImportDeclaration> unresolvableImports= new ArrayList<>(cu.imports().size()); in determineUnresolvableImports()
135 ImportDeclaration problematicImport= getProblematicImport(problem, cu); in determineUnresolvableImports()
145 private static ImportDeclaration getProblematicImport(IProblem problem, CompilationUnit cu) { in getProblematicImport()
150 if (importNode instanceof ImportDeclaration) { in getProblematicImport()
151 return (ImportDeclaration) importNode; in getProblematicImport()
688 List<ImportDeclaration> imports= astRoot.imports(); in collectReferences()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/modifying/
H A DASTRewritingModifyingOtherTest.java25 import org.eclipse.jdt.core.dom.ImportDeclaration;
105 ImportDeclaration importDeclaration = a.newImportDeclaration(); in test0002()
137 ImportDeclaration importDeclaration = (ImportDeclaration)astRoot.imports().get(0); in test0003()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/internal/core/dom/rewrite/imports/
H A DImportName.java17 import org.eclipse.jdt.core.dom.ImportDeclaration;
29 static ImportName createFor(ImportDeclaration importDeclaration) { in createFor()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/refactoring/structure/
H A DImportRemover.java33 import org.eclipse.jdt.core.dom.ImportDeclaration;
87 private List<ImportDeclaration> fInlinedStaticImports= new ArrayList<>();
158 for (ImportDeclaration importDecl : fInlinedStaticImports) { in divideTypeRefs()
319 public void registerInlinedStaticImport(ImportDeclaration importDecl) { in registerInlinedStaticImport()
H A DReferenceAnalyzer.java25 import org.eclipse.jdt.core.dom.ImportDeclaration;
99 if (node.getParent() instanceof ImportDeclaration) { in visit()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/fix/
H A DUnusedCodeFixCore.java49 import org.eclipse.jdt.core.dom.ImportDeclaration;
142 private final ImportDeclaration fImportDeclaration;
144 public RemoveImportOperation(ImportDeclaration importDeclaration) { in RemoveImportOperation()
150 ImportDeclaration node= fImportDeclaration; in rewriteAST()
610 ImportDeclaration node= getImportDeclaration(problem, compilationUnit); in createRemoveUnusedImportFix()
723 ImportDeclaration node= UnusedCodeFixCore.getImportDeclaration(problem, compilationUnit); in createCleanUp()
889 …public static ImportDeclaration getImportDeclaration(IProblemLocationCore problem, CompilationUnit… in getImportDeclaration()
893 if (node instanceof ImportDeclaration) { in getImportDeclaration()
894 return (ImportDeclaration)node; in getImportDeclaration()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/docs/rules/
H A Dindent.md91 - `"ImportDeclaration"` (default: 1) enforces indentation level for import statements. It can be se…
563 ### `ImportDeclaration`
565 Examples of **correct** code for this rule with the `4, { "ImportDeclaration": 1 }` option (the def…
569 /*eslint @typescript-eslint/indent: ["error", 4, { ImportDeclaration: 1 }]*/
583 Examples of **incorrect** code for this rule with the `4, { ImportDeclaration: "first" }` option:
587 /*eslint @typescript-eslint/indent: ["error", 4, { ImportDeclaration: "first" }]*/
595 Examples of **correct** code for this rule with the `4, { ImportDeclaration: "first" }` option:
599 /*eslint @typescript-eslint/indent: ["error", 4, { ImportDeclaration: "first" }]*/
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/correction/java/
H A DQuickFixProcessor.java203 } else if (node instanceof ImportDeclaration) { in handleImportNotFound()
205 String packageName = ((ImportDeclaration) node).getName().getFullyQualifiedName(); in handleImportNotFound()
206 if (!((ImportDeclaration) node).isOnDemand()) { in handleImportNotFound()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/core/manipulation/search/
H A DOccurrencesFinder.java33 import org.eclipse.jdt.core.dom.ImportDeclaration;
168 return parent instanceof ImportDeclaration && ((ImportDeclaration) parent).isStatic(); in isStaticImport()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/
H A DASTClass.java82 List<ImportDeclaration> imports = unit.imports(); in ASTClass()
85 for (ImportDeclaration imp : imports) { in ASTClass()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esprima/src/
H A Dsyntax.ts34 ImportDeclaration: 'ImportDeclaration',
/dports/www/firefox/firefox-99.0/third_party/python/esprima/esprima/
H A Dsyntax.py61 ImportDeclaration = "ImportDeclaration" variable in Syntax
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/esprima/esprima/
H A Dsyntax.py61 ImportDeclaration = "ImportDeclaration" variable in Syntax
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/esprima/esprima/
H A Dsyntax.py61 ImportDeclaration = "ImportDeclaration" variable in Syntax
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/esprima/esprima/
H A Dsyntax.py61 ImportDeclaration = "ImportDeclaration" variable in Syntax
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/
H A DASTRewritingTypeDeclTest.java42 import org.eclipse.jdt.core.dom.ImportDeclaration;
843 ImportDeclaration imp= (ImportDeclaration) imports.get(0); in testImportDeclaration_since_3()
849 ImportDeclaration imp= (ImportDeclaration) imports.get(1); in testImportDeclaration_since_3()
854 rewrite.set(imp, ImportDeclaration.ON_DEMAND_PROPERTY, Boolean.TRUE, null); in testImportDeclaration_since_3()
857 ImportDeclaration imp= (ImportDeclaration) imports.get(2); in testImportDeclaration_since_3()
859 rewrite.set(imp, ImportDeclaration.ON_DEMAND_PROPERTY, Boolean.FALSE, null); in testImportDeclaration_since_3()
862 ImportDeclaration imp= (ImportDeclaration) imports.get(3); in testImportDeclaration_since_3()
868 ImportDeclaration imp= (ImportDeclaration) imports.get(4); in testImportDeclaration_since_3()
870 rewrite.set(imp, ImportDeclaration.STATIC_PROPERTY, Boolean.FALSE, null); in testImportDeclaration_since_3()
873 ImportDeclaration imp= (ImportDeclaration) imports.get(5); in testImportDeclaration_since_3()
[all …]

12345678910>>...16