HomeSort by relevance Sort by last modified time
    Searched refs:manifestResource (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCache.h 61 ApplicationCacheResource* manifestResource() const { return m_manifest; }
ApplicationCacheHost.cpp 301 return CacheInfo(cache->manifestResource()->url(), 0, 0, cache->estimatedSizeInStorage());
344 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request) || !equalIgnoringCase(request.url().protocol(), cache->manifestResource()->url().protocol()))
ApplicationCacheGroup.cpp 453 m_manifestHandle = createResourceHandle(m_manifestURL, m_newestCache ? m_newestCache->manifestResource() : 0);
694 ApplicationCacheResource* newestManifest = m_newestCache->manifestResource();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java 133 IResource manifestResource = project.findMember(AdtConstants.WS_SEP
136 if (manifestResource == null || !manifestResource.exists()
137 || !(manifestResource instanceof IFile)) {
143 mAndroidManifest = (IFile) manifestResource;
AndroidPackageRenameParticipant.java 207 IResource manifestResource = project.findMember(AdtConstants.WS_SEP
210 if (manifestResource == null || !manifestResource.exists()
211 || !(manifestResource instanceof IFile)) {
217 mAndroidManifest = (IFile) manifestResource;
AndroidTypeMoveParticipant.java 178 IResource manifestResource = project.findMember(AdtConstants.WS_SEP
181 if (manifestResource == null || !manifestResource.exists()
182 || !(manifestResource instanceof IFile)) {
188 mAndroidManifest = (IFile) manifestResource;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java 96 IResource manifestResource = project.findMember(SdkConstants.FN_ANDROID_MANIFEST_XML);
97 if (manifestResource.getType() != IResource.FILE) {
102 IFileWrapper manifestFile = new IFileWrapper((IFile) manifestResource);

Completed in 965 milliseconds