/frameworks/base/core/java/android/text/method/ |
D | ReplacementTransformationMethod.java | 53 char[] original = getOriginal(); in getTransformation() local 65 int n = original.length; in getTransformation() 67 if (TextUtils.indexOf(source, original[i]) >= 0) { in getTransformation() 85 original, replacement)); in getTransformation() 88 original, in getTransformation() 96 original, replacement); in getTransformation() 98 return new ReplacementCharSequence(source, original, replacement); in getTransformation() 112 public ReplacementCharSequence(CharSequence source, char[] original, in ReplacementCharSequence() argument 115 mOriginal = original; in ReplacementCharSequence() 173 public SpannedReplacementCharSequence(Spanned source, char[] original, in SpannedReplacementCharSequence() argument [all …]
|
D | QwertyKeyListener.java | 416 String original) { in markAsReplaced() argument 422 int len = original.length(); in markAsReplaced() 424 original.getChars(0, len, orig, 0); in markAsReplaced()
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
D | RecipientAlternatesAdapter.java | 188 /* package */ static Cursor removeDuplicateDestinations(Cursor original) { in removeDuplicateDestinations() argument 190 original.getColumnNames(), original.getCount()); in removeDuplicateDestinations() 193 original.moveToPosition(-1); in removeDuplicateDestinations() 194 while (original.moveToNext()) { in removeDuplicateDestinations() 195 final String destination = original.getString(Query.DESTINATION); in removeDuplicateDestinations() 202 original.getString(Query.NAME), in removeDuplicateDestinations() 203 original.getString(Query.DESTINATION), in removeDuplicateDestinations() 204 original.getInt(Query.DESTINATION_TYPE), in removeDuplicateDestinations() 205 original.getString(Query.DESTINATION_LABEL), in removeDuplicateDestinations() 206 original.getLong(Query.CONTACT_ID), in removeDuplicateDestinations() [all …]
|
/frameworks/base/location/java/com/android/internal/location/ |
D | GpsNetInitiatedHandler.java | 261 static byte[] stringToByteArray(String original, boolean isHex) in stringToByteArray() argument 263 int length = isHex ? original.length() / 2 : original.length(); in stringToByteArray() 271 output[i] = (byte) Integer.parseInt(original.substring(i*2, i*2+2), 16); in stringToByteArray() 277 output[i] = (byte) original.charAt(i); in stringToByteArray() 358 static private String decodeString(String original, boolean isHex, int coding) in decodeString() argument 360 String decoded = original; in decodeString() 361 byte[] input = stringToByteArray(original, isHex); in decodeString() 365 decoded = original; in decodeString() 381 decoded = original; in decodeString() 385 Log.e(TAG, "Unknown encoding " + coding + " for NI text " + original); in decodeString()
|
/frameworks/native/opengl/tools/glgen/src/ |
D | CFunc.java | 21 String original; field in CFunc 32 public CFunc(String original) { in CFunc() argument 33 this.original = original; in CFunc() 37 return original; in getOriginal()
|
D | GLESCodeEmitter.java | 48 public void emitCode(CFunc cfunc, String original) { in emitCode() argument 49 emitCode(cfunc, original, null, mJavaImplStream, in emitCode()
|
D | Jsr239CodeEmitter.java | 83 public void emitCode(CFunc cfunc, String original) { in emitCode() argument 84 emitCode(cfunc, original, mJavaInterfaceStream, mJavaImplStream, mCStream); in emitCode()
|
D | CodeEmitter.java | 20 void emitCode(CFunc cfunc, String original); in emitCode() argument
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | PhoneLayoutInflater.java | 45 protected PhoneLayoutInflater(LayoutInflater original, Context newContext) { in PhoneLayoutInflater() argument 46 super(original, newContext); in PhoneLayoutInflater()
|
/frameworks/native/libs/utils/ |
D | README | 29 the system will return values from either the application's original 38 * original package, matching config 42 * original package, no config 155 original package. 172 resources using the IDs defined in the original package, but there is no 175 {original ID -> overlay ID} is created during package installation 204 the same type and name as in the original package, and be compiled with 211 convention <original.package.name>.overlay.<name> is recommended. 242 header := idmap-magic <crc32-original-pkg> <crc32-overlay-pkg> 276 0x216a8fe2 # CRC32 of the resources.arsc file in the original package
|
/frameworks/base/tools/layoutlib/create/ |
D | README.txt | 106 not transformed and keep referencing the original name. 162 methods to override. Instead it removes the original code and replaces it 174 Calls from other classes are not modified -- they keep referencing the original 181 (either by inheritance or delegation) all the original non-native code of _original_Paint 196 attributes (e.g. FontMetrics, or the Style enum) and all the original implementation 208 a- A copy of the original method named SomeClass.MethodName_Original(). 209 The content is the original method as-is from the reader. 216 If the original method is non-static, the delegate method receives the original 'this' 217 as its first argument. If the original method is an inner non-static method, it also
|
/frameworks/base/core/java/android/preference/ |
D | PreferenceInflater.java | 53 …PreferenceInflater(GenericInflater<Preference, PreferenceGroup> original, PreferenceManager prefer… in PreferenceInflater() argument 54 super(original, newContext); in PreferenceInflater()
|
D | GenericInflater.java | 120 protected GenericInflater(GenericInflater<T,P> original, Context newContext) { in GenericInflater() argument 122 mFactory = original.mFactory; in GenericInflater()
|
/frameworks/native/opengl/tests/angeles/ |
D | README.txt | 17 The original version was made for desktop with OpenGL. It was 23 The Win32 (2000/XP) binary package of original version is 44 As the original version was optimized for size instead of 72 * Toni L�nnberg (!Cube) created the music for original version, which
|
/frameworks/base/core/tests/coretests/src/android/net/ |
D | NetworkStatsTest.java | 298 final NetworkStats original = new NetworkStats(TEST_START, 5) in testClone() local 303 final NetworkStats clone = original.clone(); in testClone() 304 original.addValues(TEST_IFACE, 101, SET_DEFAULT, TAG_NONE, 128L, 8L, 0L, 0L, 0L); in testClone() 306 assertEquals(3, original.size()); in testClone() 309 assertEquals(128L + 512L + 128L, original.getTotalBytes()); in testClone()
|
/frameworks/base/core/java/android/net/ |
D | LinkSocketNotifier.java | 48 public boolean onBetterLinkAvailable(LinkSocket original, LinkSocket duplicate); in onBetterLinkAvailable() argument
|
/frameworks/compile/mclinker/utils/ |
D | README.MCLinker | 5 gtest/ contains Google Test 1.6.0. MCLinker removes the original building
|
/frameworks/compile/libbcc/runtime/BlocksRuntime/ |
D | runtime.c | 54 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong() local 55 return (original == oldl); in OSAtomicCompareAndSwapLong() 60 int original = InterlockedCompareExchange(dst, newi, oldi); in OSAtomicCompareAndSwapInt() local 61 return (original == oldi); in OSAtomicCompareAndSwapInt()
|
/frameworks/base/core/java/android/view/ |
D | LayoutInflater.java | 198 protected LayoutInflater(LayoutInflater original, Context newContext) { in LayoutInflater() argument 200 mFactory = original.mFactory; in LayoutInflater() 201 mFactory2 = original.mFactory2; in LayoutInflater() 202 mPrivateFactory = original.mPrivateFactory; in LayoutInflater() 203 mFilter = original.mFilter; in LayoutInflater()
|
/frameworks/base/core/java/android/widget/ |
D | MultiAutoCompleteTextView.java | 194 String original = TextUtils.substring(editable, start, end); in replaceText() local 196 QwertyKeyListener.markAsReplaced(editable, start, end, original); in replaceText()
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_decode_header.cpp | 183 info->original = (temp << 28) >> 31; /* 1 */ in pvmp3_decode_header()
|
D | pvmp3_dec_defs.h | 131 int32 original; member
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | BridgeInflater.java | 61 protected BridgeInflater(LayoutInflater original, Context newContext) { in BridgeInflater() argument 62 super(original, newContext); in BridgeInflater()
|
/frameworks/base/core/java/android/net/http/ |
D | AndroidHttpClient.java | 425 HttpRequest original = ((RequestWrapper) request).getOriginal(); in toCurl() local 426 if (original instanceof HttpUriRequest) { in toCurl() 427 uri = ((HttpUriRequest) original).getURI(); in toCurl()
|
/frameworks/base/docs/html/tools/adk/ |
D | aoa2.jd | 38 upwardly compatible, so accessories designed for the original accessory protocol still work 208 <p>The original <a href="aoa.html">AOA protocol</a> provided support for an Android application to 212 an accessory that also makes use of the new audio and/or HID support in addition to the original 213 feature set. Simply use the new features described in this document in addition to the original AOA
|