Searched refs:original (Results 26 - 39 of 39) sorted by relevance

12

/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java599 * {@link Uri} and then back to a {@link File} points at the original
762 private static String[] copyOf(String[] original, int newLength) { argument
764 System.arraycopy(original, 0, result, 0, newLength);
768 private static Object[] copyOf(Object[] original, int newLength) { argument
770 System.arraycopy(original, 0, result, 0, newLength);
/frameworks/base/core/java/android/widget/
H A DMultiAutoCompleteTextView.java199 String original = TextUtils.substring(editable, start, end);
201 QwertyKeyListener.markAsReplaced(editable, start, end, original);
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java57 protected BridgeInflater(LayoutInflater original, Context newContext) { argument
58 super(original, newContext);
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java426 // If this is a wrapped request, use the URI from the original
430 HttpRequest original = ((RequestWrapper) request).getOriginal();
431 if (original instanceof HttpUriRequest) {
432 uri = ((HttpUriRequest) original).getURI();
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java117 * @param original The original inflater to copy.
120 protected GenericInflater(GenericInflater<T,P> original, Context newContext) { argument
122 mFactory = original.mFactory;
127 * pointing to a different Context than the original. This is used by
132 * May be the same as the original Context if desired.
189 * original instance is using.
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java204 * @param original The original LayoutInflater to copy.
207 protected LayoutInflater(LayoutInflater original, Context newContext) { argument
209 mFactory = original.mFactory;
210 mFactory2 = original.mFactory2;
211 mPrivateFactory = original.mPrivateFactory;
212 setFilter(original.mFilter);
229 * pointing to a different Context than the original. This is used by
234 * May be the same as the original Context if desired.
281 * merge your own factory with whatever factory the original instanc
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsTest.java298 final NetworkStats original = new NetworkStats(TEST_START, 5)
302 // make clone and mutate original
303 final NetworkStats clone = original.clone();
304 original.addValues(TEST_IFACE, 101, SET_DEFAULT, TAG_NONE, 128L, 8L, 0L, 0L, 0L);
306 assertEquals(3, original.size());
309 assertEquals(128L + 512L + 128L, original.getTotalBytes());
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java260 * original file descriptor.
275 * original file descriptor.
287 * ParcelFileDescriptor holds a dup of the original fd passed in here,
296 final FileDescriptor original = new FileDescriptor();
297 original.setInt$(fd);
300 final FileDescriptor dup = Os.dup(original);
326 * ParcelFileDescriptor holds a dup of the original FileDescriptor in
574 * You should not detach when the original creator of the descriptor is
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java99 /** the original content of the layer when the next object was created. This is not
161 /** sets an optional copy of the original content to be used during restore */
280 // It does not copy whatever original copy the layers have, as they will be done
709 // if the layer contains an original copy this means the flags
743 private Graphics2D createCustomGraphics(Graphics2D original, Paint_Delegate paint, argument
746 Graphics2D g = (Graphics2D) original.create();
/frameworks/base/tools/aapt/
H A DCommand.cpp1375 } else if (tag == "original-package") {
1378 printf("original-package:'%s'\n",
2222 static String8 buildApkName(const String8& original, const sp<ApkSplit>& split) { argument
2224 return original;
2227 String8 ext(original.getPathExtension());
2230 original.getBasePath().string(),
2235 return String8::format("%s_%s", original.string(),
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DStaggeredGridLayoutManagerTest.java538 private int[] copyOfRange(int[] original, int from, int to) { argument
543 System.arraycopy(original, from, copy, 0,
544 Math.min(original.length - from, newLength));
1594 // original ids of items that should be full span
/frameworks/testing/espresso/libs/
H A Ddagger-1.2.1.jarMETA-INF/ META-INF/MANIFEST.MF dagger/ dagger/internal/ dagger/internal/loaders/ dagger/internal/ArrayQueue$ ...
H A Dguava-14.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java70 public void emitCode(CFunc cfunc, String original, argument
734 // Emit comment identifying original C function

Completed in 436 milliseconds

12