OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iProject
(Results
1 - 10
of
10
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java
30
import org.eclipse.core.resources.
IProject
;
67
* {@link
IProject
}s. This removes the hard-coded path to the android.jar.
162
final
IProject
iProject
= javaProject.getProject();
178
ProjectState state = Sdk.getProjectState(
iProject
);
197
createClasspathEntries(
iProject
, target, targetName),
225
AndroidClasspathContainer container = getContainerFromCache(
iProject
, target);
277
AdtPlugin.printErrorToConsole(
iProject
, markerMessage);
281
BaseProjectHelper.markProject(
iProject
, AdtConstants.MARKER_TARGET,
292
BaseProjectHelper.markProject(
iProject
,
[
all
...]
LibraryClasspathContainerInitializer.java
26
import org.eclipse.core.resources.
IProject
;
87
final
IProject
iProject
= javaProject.getProject();
131
ProjectState state = Sdk.getProjectState(
iProject
);
135
List<
IProject
> libProjects = state.getFullLibraryProjects();
136
for (
IProject
libProject : libProjects) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java
35
import org.eclipse.core.resources.
IProject
;
247
IProject
project = getProject();
258
IProject
project = getProject();
269
IProject
project = getProject();
280
IProject
project = getProject();
292
IProject
iProject
= javaProject.getProject();
312
stopOnMarker(
iProject
, AdtConstants.MARKER_TARGET, IResource.DEPTH_ZERO,
314
stopOnMarker(
iProject
, AdtConstants.MARKER_ADT, IResource.DEPTH_ZERO,
318
protected void stopOnMarker(
IProject
project, String markerType, int depth
[
all
...]
PostCompilerBuilder.java
49
import org.eclipse.core.resources.
IProject
;
219
IProject
project = getProject();
243
protected
IProject
[] build(int kind, Map args, IProgressMonitor monitor)
246
IProject
project = getProject();
262
IProject
[] allRefProjects = null;
276
List<
IProject
> libProjects = projectState.getFullLibraryProjects();
281
List<
IProject
> javaProjects = ProjectHelper.getReferencedProjects(project);
287
ArrayList<
IProject
> refList = new ArrayList<
IProject
>(size);
290
allRefProjects = refList.toArray(new
IProject
[size])
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java
28
import org.eclipse.core.resources.
IProject
;
87
IProject
project;
95
public boolean accept(
IProject
project) {
169
IProject
iProject
= javaProject.getProject();
170
IPath relativePath =
iProject
.getLocation().makeRelativeTo(
173
addItem(relativePath.toString(),
iProject
, -1);
330
* @param project the associated
IProject
333
private void addItem(String relativePath,
IProject
project, int index) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java
26
import org.eclipse.core.resources.
IProject
;
63
* @param
iProject
the project to which the layout belong.
65
public ExplodedRenderingHelper(Node root,
IProject
iProject
) {
67
IAndroidTarget target = Sdk.getCurrent().getTarget(
iProject
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java
48
import org.eclipse.core.resources.
IProject
;
89
* Map associating {@link
IProject
} and their state {@link ProjectState}.
90
* <p/>This <b>MUST NOT</b> be accessed directly. Instead use {@link #getProjectState(
IProject
)}.
92
private final static HashMap<
IProject
, ProjectState> sProjectStateMap =
93
new HashMap<
IProject
, ProjectState>();
134
void onProjectTargetChange(
IProject
changedProject);
150
* {@link #onProjectTargetChange(
IProject
)} and {@link #onTargetLoaded(IAndroidTarget)}
151
* use the same code based on a simple test requiring to know the current
IProject
.
155
* Returns the {@link
IProject
} associated with the listener.
157
public abstract
IProject
getProject()
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java
66
import org.eclipse.core.resources.
IProject
;
563
IProject
iProject
= mEditedFile.getProject();
564
mResources = ResourceManager.getInstance().getProjectResources(
iProject
);
605
IProject
iProject
= mEditedFile.getProject();
606
mResources = ResourceManager.getInstance().getProjectResources(
iProject
);
669
IProject
iProject
= mEditedFile.getProject();
673
mProjectTarget = currentSdk.getTarget(
iProject
);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java
57
import org.eclipse.core.resources.
IProject
;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java
78
import org.eclipse.core.resources.
IProject
;
202
/** Reference to the file being edited. Can also be used to access the {@link
IProject
}. */
747
public void onProjectTargetChange(
IProject
changedProject) {
[
all
...]
Completed in 178 milliseconds