HomeSort by relevance Sort by last modified time
    Searched defs:entryPath (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
ReadableArchive.java 87 String entryPath;
96 entryPath = getEntryPath(entry);
97 if (mEntries.containsKey(entryPath)) {
100 mEntries.put(entryPath, entry);
102 mTree.put(entryPath, new ArrayList<ZipEntry>());
104 if (!"/".equals(entryPath)) { // Skip root, as it doesn't have a parent.
118 entryPath = getEntryPath(entry);
119 delimiterIndex = entryPath.lastIndexOf('/', entry.isDirectory()
120 ? entryPath.length() - 2 : entryPath.length() - 1)
    [all...]
WriteableArchive.java 86 final String entryPath = getEntryPath(entry);
89 if (!mTree.containsKey(entryPath)) {
90 mTree.put(entryPath, new ArrayList<ZipEntry>());
93 mEntries.put(entryPath, entry);
146 String entryPath;
168 entryPath = getEntryPath(entry);
171 if (mEntries.get(entryPath) != null) {
172 throw new IllegalStateException("The document already exist: " + entryPath);
183 mPendingEntries.add(entryPath);
192 "Failed to create a file in the archive: " + entryPath, e)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoader.java 164 String entryPath = entry.getName();
166 if (!entryPath.endsWith(SdkConstants.DOT_CLASS)) {
172 if (pathFilter.length() > 0 && !entryPath.startsWith(pathFilter)) {
175 String className = entryPathToClassName(entryPath);
232 String entryPath = entry.getName();
233 if (!entryPath.endsWith(SdkConstants.DOT_CLASS)) {
237 if (packageFilter.length() > 0 && !entryPath.startsWith(packageFilter)) {
241 String className = entryPathToClassName(entryPath);
288 private String entryPathToClassName(String entryPath) {
289 return entryPath.replaceFirst("\\.class$", "").replaceAll("[/\\\\]", "."); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3
    [all...]
  /frameworks/multidex/library/src/androidx/multidex/
MultiDex.java     [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
DexPathList.java 832 String entryPath = new File(path, name).getPath();
833 if (IoUtils.canOpenReadOnly(entryPath)) {
834 return entryPath;
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 303 SkPath entryPath;
309 clipEntry->asDeviceSpacePath(&entryPath);
311 entryPath.transform(transform);
312 if (!apply_clip(clipEntry->getOp(), *outClipPath, entryPath, outClipPath)) {
    [all...]
  /external/skqp/src/pdf/
SkPDFDevice.cpp 303 SkPath entryPath;
309 clipEntry->asDeviceSpacePath(&entryPath);
311 entryPath.transform(transform);
312 if (!apply_clip(clipEntry->getOp(), *outClipPath, entryPath, outClipPath)) {
    [all...]
  /prebuilts/sdk/current/multidex/library/
android-support-multidex.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.core_2.3.0.v20130327-2119.jar 
org.eclipse.equinox.common_3.6.200.v20130402-1505.jar 
org.eclipse.osgi_3.9.0.v20130529-1710.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.equinox.common_3.7.0.v20150402-1709.jar 
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 
org.eclipse.osgi_3.10.100.v20150529-1857.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-equinox-common-3.6.0.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
jetifier-processor-0.0.1.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.6.0.v20100503.jar 
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-equinox-common/3.6.0/
org-eclipse-equinox-common-3.6.0.jar 
  /external/guice/lib/build/
spring-core.jar 
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 
  /prebuilts/sdk/tools/
jack-launcher.jar 
jack-server-4.11.ALPHA.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.5.0/
gradle-core-1.5.0.jar 

Completed in 219 milliseconds

1 2 3 4 5