Home
last modified time | relevance | path

Searched refs:openable (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/matching/
H A DPossibleMatch.java33 public Openable openable; field in PossibleMatch
45 this.openable = openable; in PossibleMatch()
73 if (this.openable instanceof AbstractClassFile) { in getContents()
79 if (this.openable instanceof ClassFile) { in getContents()
128 if (this.openable instanceof CompilationUnit) { in getQualifiedName()
135 } else if (this.openable instanceof ClassFile) { in getQualifiedName()
164 if (this.openable.getSourceMapper() != null) { in getSourceFileName()
165 if (this.openable instanceof ClassFile) { in getSourceFileName()
206 return this.openable == null ? "Fake PossibleMatch" : this.openable.toString(); //$NON-NLS-1$ in toString()
210 if (this.openable instanceof CompilationUnit) { in getModuleName()
[all …]
H A DSuperTypeNamesCollector.java206 Openable openable = this.locator.handleFactory.createOpenable(paths[i], this.locator.scope); in collect() local
207 if (openable == null) continue; // outside classpath in collect()
209 IJavaProject project = openable.getJavaProject(); in collect()
214 if (openable instanceof ICompilationUnit) { in collect()
215 ICompilationUnit unit = (ICompilationUnit) openable; in collect()
219 } else if (openable instanceof IOrdinaryClassFile) { in collect()
220 IOrdinaryClassFile classFile = (IOrdinaryClassFile) openable; in collect()
H A DMatchLocator.java755 Openable openable = this.currentPossibleMatch.openable; in createImportHandle() local
760 return openable; in createImportHandle()
774 Openable openable = this.currentPossibleMatch.openable; in createPackageDeclarationHandle() local
785 Openable openable = this.currentPossibleMatch.openable; in createTypeHandle() local
1464 Openable openable;
1468 openable = (Openable) workingCopy;
1472 if (openable == null) {
1483 openable = getCloserOpenable(openable, pathString);
1568 return openable;
2995 Openable openable = this.currentPossibleMatch.openable;
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/
H A DOpenActionProvider.java103 IAdaptable openable = Adapters.adapt(o, IResource.class); in addOpenWithMenu() local
105 if (openable == null) { in addOpenWithMenu()
106 openable = Adapters.adapt(o, ResourceMapping.class); in addOpenWithMenu()
107 } else if (((IResource) openable).getType() != IResource.FILE) { in addOpenWithMenu()
108 openable = null; in addOpenWithMenu()
111 if (openable != null) { in addOpenWithMenu()
117 submenu.add(new OpenWithMenu(viewSite.getPage(), openable)); in addOpenWithMenu()
/dports/astro/gpstk/GPSTk-8.0.0/core/tests/FileDirProc/
H A DFileSpecFind_T.cpp81 bool openable(const list<string>& files);
89 openable(const list<string>& files) in openable() function in FileSpecFind_T
203 TUASSERT(openable(files)); in findTests()
229 TUASSERT(openable(files)); in findTests()
255 TUASSERT(openable(files)); in findTests()
287 TUASSERT(openable(files)); in findTests()
317 TUASSERT(openable(files)); in findTests()
347 TUASSERT(openable(files)); in findTests()
377 TUASSERT(openable(files)); in findTests()
406 TUASSERT(openable(files)); in findTests()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/
H A DJavaLaunchableTester.java304 IOpenable openable= type.getOpenable(); in hasTypeWithAnnotation() local
305 if (openable instanceof ICompilationUnit) { in hasTypeWithAnnotation()
306 buffer= ((ICompilationUnit) openable).getBuffer(); in hasTypeWithAnnotation()
307 } else if (openable instanceof IClassFile) { in hasTypeWithAnnotation()
308 buffer= ((IClassFile) openable).getBuffer(); in hasTypeWithAnnotation()
371 IOpenable openable= type.getOpenable(); in hasMethodWithAnnotation() local
372 if (openable instanceof ICompilationUnit) { in hasMethodWithAnnotation()
373 buffer= ((ICompilationUnit) openable).getBuffer(); in hasMethodWithAnnotation()
374 } else if (openable instanceof IClassFile) { in hasMethodWithAnnotation()
375 buffer= ((IClassFile) openable).getBuffer(); in hasMethodWithAnnotation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/
H A DNameMatchRequestorWrapper.java70 Openable openable = this.handleFactory.createOpenable(path, this.scope); in getType() local
71 if (openable == null) return type; in getType()
72 if (openable instanceof ICompilationUnit) { in getType()
73 ICompilationUnit cu = (ICompilationUnit) openable; in getType()
83 } else if (openable instanceof IOrdinaryClassFile) { in getType()
84 type = ((IOrdinaryClassFile)openable).getType(); in getType()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DSelectionRequestor.java70 protected Openable openable; field in SelectionRequestor
89 this.openable = openable; in SelectionRequestor()
890 if(this.openable instanceof ICompilationUnit) { in findLocalElement()
897 } else if (this.openable instanceof ClassFile) { in findLocalElement()
898 ClassFile cf = (ClassFile) this.openable; in findLocalElement()
971 if (this.openable instanceof CompilationUnit && ((CompilationUnit)this.openable).isWorkingCopy()) { in resolveType()
972 CompilationUnit wc = (CompilationUnit) this.openable; in resolveType()
1008 if (this.openable != null && this.openable.getParent().getElementName().equals(pName)) { in resolveType()
1035 if (this.openable instanceof CompilationUnit && ((CompilationUnit)this.openable).isOpen()) { in resolveTypeByLocation()
1036 CompilationUnit wc = (CompilationUnit) this.openable; in resolveTypeByLocation()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/callhierarchy/
H A DCallLocation.java116 IOpenable openable = fMember.getOpenable(); in getBufferForMember() local
117 if (openable != null && fMember.exists()) { in getBufferForMember()
118 buffer = openable.getBuffer(); in getBufferForMember()
/dports/net-im/py-telepot/telepot-12.7/telepot/aio/
H A Dhelper.py10 Sender, Administrator, Editor, openable,
272 @openable
288 @openable
307 @openable
341 @openable
359 @openable
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/
H A DJarPackageWizard.java119 IOpenable openable= je.getOpenable(); in addJavaElement() local
120 if (openable instanceof ICompilationUnit) in addJavaElement()
121 selectedElements.add(((ICompilationUnit) openable).getPrimary()); in addJavaElement()
122 else if (openable instanceof IClassFile && !isInArchiveOrExternal(je)) in addJavaElement()
123 selectedElements.add(openable); in addJavaElement()
/dports/textproc/textnote/textnote-1.3.0/pkg/editor/
H A Deditor.go21 type openable interface { interface
37 func (e *Editor) Open(o openable) error {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/
H A DJavaElementFinder.java137 IOpenable openable = this.element.getOpenable(); in consumeSecondaryType()
138 if (!(openable instanceof ICompilationUnit)) return; in consumeSecondaryType()
139 this.element = ((ICompilationUnit) openable).getType(new String(simpleTypeName)); in consumeSecondaryType()
/dports/emulators/qemu42/qemu-4.2.1/roms/openbios/arch/ia64/
H A Dinit.fs31 : make-openable ( path )
42 2dup make-openable
/dports/emulators/qemu42/qemu-4.2.1/roms/openbios/arch/sparc64/
H A Dinit.fs14 : make-openable ( path )
25 2dup make-openable
/dports/emulators/qemu5/qemu-5.2.0/roms/openbios/arch/sparc64/
H A Dinit.fs14 : make-openable ( path )
25 2dup make-openable
/dports/emulators/qemu5/qemu-5.2.0/roms/openbios/arch/ia64/
H A Dinit.fs31 : make-openable ( path )
42 2dup make-openable
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/openbios/arch/ia64/
H A Dinit.fs31 : make-openable ( path )
42 2dup make-openable
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/openbios/arch/sparc64/
H A Dinit.fs14 : make-openable ( path )
25 2dup make-openable
/dports/emulators/qemu-utils/qemu-4.2.1/roms/openbios/arch/ia64/
H A Dinit.fs31 : make-openable ( path )
42 2dup make-openable
/dports/emulators/qemu-utils/qemu-4.2.1/roms/openbios/arch/sparc64/
H A Dinit.fs14 : make-openable ( path )
25 2dup make-openable
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/openbios/arch/ia64/
H A Dinit.fs31 : make-openable ( path )
42 2dup make-openable
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/openbios/arch/sparc64/
H A Dinit.fs14 : make-openable ( path )
25 2dup make-openable
/dports/emulators/qemu/qemu-6.2.0/roms/openbios/arch/sparc64/
H A Dinit.fs14 : make-openable ( path )
25 2dup make-openable
/dports/emulators/qemu/qemu-6.2.0/roms/openbios/arch/ia64/
H A Dinit.fs31 : make-openable ( path )
42 2dup make-openable

12345678910>>...13