OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:projectResources
(Results
1 - 4
of
4
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidator.java
24
import com.android.ide.eclipse.adt.internal.resources.manager.
ProjectResources
;
184
ProjectResources
projectResources
= manager.getProjectResources(project);
185
Collection<ResourceItem> items =
projectResources
.getResourceItemsOfType(type);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java
138
// the
ProjectResources
object will be removed by the ResourceManager.
145
// the
ProjectResources
object will be removed by the ResourceManager.
186
// first check there's a
ProjectResources
to store the content
187
ProjectResources
projectResources
= ResourceManager.getInstance().getProjectResources(
190
if (
projectResources
!= null) {
211
projectResources
.setCompiledResources(genericValueToNameMap,
ResourceManager.java
61
* It provide direct access to all the resources of a project as a {@link
ProjectResources
}
73
* @see
ProjectResources
85
private final Map<IProject,
ProjectResources
> mMap =
86
new HashMap<IProject,
ProjectResources
>();
154
* @return a
ProjectResources
object or null if none was found.
156
public
ProjectResources
getProjectResources(IProject project) {
203
ProjectResources
resources;
230
resources = new
ProjectResources
(project);
302
ProjectResources
resources;
416
ProjectResources
resources = getProjectResources(project)
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerBuilder.java
34
import com.android.ide.eclipse.adt.internal.resources.manager.
ProjectResources
;
266
ProjectResources
projectResources
= resManager.getProjectResources(project);
269
IdeScanningContext context = new IdeScanningContext(
projectResources
, project);
[
all
...]
Completed in 341 milliseconds