| /libcore/luni/src/main/java/java/nio/ |
| ReadWriteIntArrayBuffer.java | 61 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 114 System.arraycopy(src, srcOffset, backingArray, offset + position, intCount);
|
| ReadWriteLongArrayBuffer.java | 61 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 114 System.arraycopy(src, srcOffset, backingArray, offset + position, longCount);
|
| ReadWriteShortArrayBuffer.java | 63 System.arraycopy(backingArray, position + offset, backingArray, offset, remaining()); 116 System.arraycopy(src, srcOffset, backingArray, offset + position, shortCount);
|
| /libcore/luni/src/main/java/java/security/ |
| KeyRep.java | 150 System.arraycopy(encoded, 0, new_encoded, 0, new_encoded.length);
|
| /libcore/luni/src/main/java/java/security/cert/ |
| PolicyQualifierInfo.java | 56 System.arraycopy(encoded, 0, this.encoded, 0, this.encoded.length); 72 System.arraycopy(encoded, 0, ret, 0, encoded.length); 97 System.arraycopy(policyQualifier, 0, ret, 0, policyQualifier.length);
|
| /libcore/luni/src/main/java/javax/crypto/spec/ |
| PBEKeySpec.java | 48 System.arraycopy(password, 0, this.password, 0, password.length); 92 System.arraycopy(password, 0, this.password, 0, password.length); 95 System.arraycopy(salt, 0, this.salt, 0, salt.length); 130 System.arraycopy(password, 0, this.password, 0, password.length); 133 System.arraycopy(salt, 0, this.salt, 0, salt.length); 158 System.arraycopy(password, 0, result, 0, password.length); 173 System.arraycopy(salt, 0, result, 0, salt.length);
|
| RC5ParameterSpec.java | 84 System.arraycopy(iv, 0, this.iv, 0, 2*(wordSize/8)); 126 System.arraycopy(iv, offset, this.iv, 0, 2*(wordSize/8)); 166 System.arraycopy(iv, 0, result, 0, iv.length);
|
| /libcore/luni/src/main/java/javax/security/auth/callback/ |
| PasswordCallback.java | 91 System.arraycopy(password, 0, inputPassword, 0, inputPassword.length); 107 System.arraycopy(inputPassword, 0, tmp, 0, tmp.length);
|
| /libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
| Certificate.java | 64 System.arraycopy(signatureValue, 0, this.signatureValue, 0,
|
| CertificateList.java | 64 System.arraycopy(signatureValue, 0, this.signatureValue, 0, 87 System.arraycopy(signatureValue, 0, result, 0, signatureValue.length);
|
| /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
| ClientKeyExchange.java | 71 System.arraycopy(bb, 1, exchange_keys, 0, exchange_keys.length);
|
| /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
| DESedeKeySpecTest.java | 133 System.arraycopy(key1, 2, exp, 0, 24);
|
| /libcore/support/src/test/java/tests/support/ |
| Support_ASimpleWriter.java | 63 System.arraycopy(src, offset, buf, pos, count); 73 System.arraycopy(buf, 0, toReturn, 0, pos);
|
| /packages/apps/DeskClock/src/com/android/deskclock/ |
| AlarmPreference.java | 45 // Update the default alert in the system. 46 Settings.System.putString(getContext().getContentResolver(), 47 Settings.System.ALARM_ALERT, 75 Settings.System.DEFAULT_ALARM_ALERT_URI);
|
| /libcore/luni/src/test/java/libcore/java/lang/ |
| OldSystemTest.java | 30 // Test for method void java.lang.System.arraycopy(java.lang.Object, 37 System.arraycopy(new Object(), 0, b, 0, 0); 45 System.arraycopy(a, 0, new Object(), 0, 0); 53 System.arraycopy(new char[] {'a'}, 0, new String[1], 0, 1); 61 System.arraycopy(new String[] {"a"}, 0, new char[1], 0, 1); 69 System.arraycopy(new char[] {'a'}, 0, new int[1], 0, 1); 77 System.arraycopy(new Character[] {'a'}, 0, new Integer[1], 0, 1); 85 System.arraycopy(null, 0, new int[1], 0, 1); 93 System.arraycopy(new int[]{'1'}, 0, null, 0, 1); 100 System.arraycopy(a, a.length + 1, b, 0, 1) [all...] |
| /packages/apps/Settings/src/com/android/settings/ |
| SoundSettings.java | 157 mDtmfTone.setChecked(Settings.System.getInt(resolver, 158 Settings.System.DTMF_TONE_WHEN_DIALING, 1) != 0); 161 mSoundEffects.setChecked(Settings.System.getInt(resolver, 162 Settings.System.SOUND_EFFECTS_ENABLED, 1) != 0); 165 mHapticFeedback.setChecked(Settings.System.getInt(resolver, 166 Settings.System.HAPTIC_FEEDBACK_ENABLED, 1) != 0); 169 mLockSounds.setChecked(Settings.System.getInt(resolver, 170 Settings.System.LOCKSCREEN_SOUNDS_ENABLED, 1) != 0); 183 emergencyTonePreference.setValue(String.valueOf(Settings.System.getInt( 184 resolver, Settings.System.EMERGENCY_TONE, FALLBACK_EMERGENCY_TONE_VALUE))) [all...] |
| DevelopmentSettings.java | 168 mKeepScreenOn.setChecked(Settings.System.getInt(cr, 169 Settings.System.STAY_ON_WHILE_PLUGGED_IN, 0) != 0); 217 // Returns the current state of the system property that controls 243 Settings.System.putInt(getActivity().getContentResolver(), 244 Settings.System.POINTER_LOCATION, mPointerLocation.isChecked() ? 1 : 0); 248 mPointerLocation.setChecked(Settings.System.getInt(getActivity().getContentResolver(), 249 Settings.System.POINTER_LOCATION, 0) != 0); 253 Settings.System.putInt(getActivity().getContentResolver(), 254 Settings.System.SHOW_TOUCHES, mShowTouches.isChecked() ? 1 : 0); 258 mShowTouches.setChecked(Settings.System.getInt(getActivity().getContentResolver() [all...] |
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
| SystemTest.java | 35 * @tests java.lang.System#setIn(java.io.InputStream) 38 InputStream orgIn = System.in; 40 System.setIn(in); 41 assertTrue("in not set", System.in == in); 42 System.setIn(orgIn); 46 * @tests java.lang.System#setOut(java.io.PrintStream) 49 PrintStream orgOut = System.out; 51 System.setOut(out); 52 assertTrue("out not set", System.out == out); 53 System.setOut(orgOut) [all...] |
| /dalvik/dexgen/src/com/android/dexgen/util/ |
| HexParser.java | 139 System.arraycopy(result, 0, newr, 0, outAt);
|
| /dalvik/dx/src/com/android/dx/io/ |
| ClassData.java | 51 System.arraycopy(staticFields, 0, result, 0, staticFields.length); 52 System.arraycopy(instanceFields, 0, result, staticFields.length, instanceFields.length); 58 System.arraycopy(directMethods, 0, result, 0, directMethods.length); 59 System.arraycopy(virtualMethods, 0, result, directMethods.length, virtualMethods.length);
|
| /dalvik/dx/src/com/android/dx/util/ |
| HexParser.java | 139 System.arraycopy(result, 0, newr, 0, outAt);
|
| /dalvik/dx/tests/087-ssa-local-vars/ |
| Blort.java | 13 System.out.println("foo"); 20 System.out.println("string -> object"); 21 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); 22 System.out.println("object -> string"); 23 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); 24 System.out.println("object -> string (modified)"); 27 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length); 30 System.out.println("caught ArrayStoreException (expected)"); 40 System.err.println(foo);
|
| /dalvik/tests/087-gc-after-link/src/ |
| Main.java | 82 loadClass("dalvik/system/DexFile"); 163 System.err.println("ERROR: Inaccessible was accessible"); 167 System.err.println("Got expected ITE/NPE"); 169 System.err.println("Got unexpected ITE"); 173 System.gc(); 174 System.out.println("GC complete.");
|
| /development/samples/ApiDemos/src/com/example/android/apis/nfc/ |
| ForegroundNdefPush.java | 50 System.arraycopy(langBytes, 0, data, 1, langBytes.length); 51 System.arraycopy(textBytes, 0, data, 1 + langBytes.length, textBytes.length);
|
| /development/samples/ApiDemos/src/com/example/android/apis/os/ |
| MorseCodeConverter.java | 135 System.arraycopy(letter, 0, result, pos, letter.length);
|