HomeSort by relevance Sort by last modified time
    Searched refs:System (Results 576 - 600 of 2091) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/android/util/
LongSparseArray.java 58 System.arraycopy(mKeys, 0, result, 0, length);
177 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
178 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
186 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
187 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
317 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
318 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /packages/apps/Gallery3D/src/com/cooliris/media/
LongSparseArray.java 159 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
160 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
168 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
169 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
297 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
298 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
427 int bucket = ((System.identityHashCode(kind) / 8) & 0x7FFFFFFF) % CACHE_SIZE;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchSettings.java 38 import android.provider.Settings.System;
239 return (Settings.System.getInt(context.getContentResolver(),
240 Settings.System.SHOW_WEB_SUGGESTIONS,
245 System.putInt(context.getContentResolver(), System.SHOW_WEB_SUGGESTIONS,
252 Settings.System.getUriFor(Settings.System.SHOW_WEB_SUGGESTIONS),
  /packages/apps/Settings/src/com/android/settings/
DisplaySettings.java 19 import static android.provider.Settings.System.SCREEN_OFF_TIMEOUT;
70 screenTimeoutPreference.setValue(String.valueOf(Settings.System.getInt(
144 mAccelerometer.setChecked(Settings.System.getInt(
146 Settings.System.ACCELEROMETER_ROTATION, 0) != 0);
165 Settings.System.putInt(getContentResolver(),
166 Settings.System.ACCELEROMETER_ROTATION,
196 Settings.System.putInt(getContentResolver(),
  /dalvik/libcore/logging/src/main/java/java/util/logging/
LogManager.java 54 * java.util.logging.manager system property, if the property is unavailable or
62 * However, two optional system properties can be used to customize the initial
70 * "java" command line property definitions, or by system property definitions
81 * "java.util.logging.config.file" system property can be used to specify a
105 * with it, <b>must</b> be loaded from the system classpath when
198 String className = System
272 if (null != System.getSecurityManager()) {
273 System.getSecurityManager().checkPermission(perm);
406 String configClassName = System
411 String configFile = System
    [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionStateSSLv3.java 91 System.arraycopy(serverRandom, 0, seed, 0, serverRandom.length);
92 System.arraycopy(clientRandom, 0, seed, serverRandom.length,
106 System.arraycopy(key_block, 0, client_mac_secret, 0, hash_size);
107 System.arraycopy(key_block, hash_size,
109 System.arraycopy(key_block, 2*hash_size, client_key, 0, key_size);
110 System.arraycopy(key_block, 2*hash_size+key_size,
227 System.arraycopy(fragment, offset, res, 0, len);
243 System.arraycopy(digest, 0, res, len, hash_size);
338 System.arraycopy(data, 0, content, 0, content.length);
  /build/tools/droiddoc/src/
DocFile.java 63 System.out.println("docfile='" + docfile
95 System.err.println(docfile + ":" + lineno + ": error parsing docfile");
97 System.err.println(docfile + ":" + lineno + ":" + line);
99 System.exit(1);
  /cts/tools/dasm/src/java_cup/
emit.java 247 long start_time = System.currentTimeMillis();
295 symbols_time = System.currentTimeMillis() - start_time;
309 long start_time = System.currentTimeMillis();
411 action_code_time = System.currentTimeMillis() - start_time;
424 long start_time = System.currentTimeMillis();
470 production_table_time = System.currentTimeMillis() - start_time;
490 long start_time = System.currentTimeMillis();
559 action_table_time = System.currentTimeMillis() - start_time;
575 long start_time = System.currentTimeMillis();
613 goto_table_time = System.currentTimeMillis() - start_time
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
CharArrayWriter.java 88 System.arraycopy(buf, 0, newbuf, 0, count);
134 System.arraycopy(buf, 0, result, 0, count);
186 System.arraycopy(c, offset, this.buf, this.count, len);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
InputStreamHelper.java 95 System.arraycopy(buf, pos, buffer, 0, available);
124 System.arraycopy(buf, pos, buffer, 0, available);
180 System.arraycopy(buffer, 0, dest, 0, count);
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
FileReaderTest.java 66 File noFile = new File(System.getProperty("java.io.tmpdir"), "noreader.tst");
128 br = new FileReader(System.getProperty("java.io.tmpdir") + "/noreader.tst");
141 f = new File(System.getProperty("java.io.tmpdir"), "reader.tst");
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/macs/
BlockCipherMac.java 110 System.arraycopy(in, inOff, buf, bufOff, gapLen);
127 System.arraycopy(in, inOff, buf, bufOff, len);
149 System.arraycopy(mac, 0, out, outOff, macSize);
CBCBlockCipherMac.java 153 System.arraycopy(in, inOff, buf, bufOff, gapLen);
170 System.arraycopy(in, inOff, buf, bufOff, len);
205 System.arraycopy(mac, 0, out, outOff, macSize);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
PaddedBlockCipher.java 151 System.arraycopy(in, inOff, buf, bufOff, gapLen);
168 System.arraycopy(in, inOff, buf, bufOff, len);
246 System.arraycopy(buf, 0, out, outOff, resultLen);
  /dalvik/libcore/security/src/test/java/tests/security/permissions/
JavaIoFileInputStreamTest.java 44 old = System.getSecurityManager();
50 System.setSecurityManager(old);
108 System.setSecurityManager(s);
JavaIoFileOutputStreamTest.java 44 old = System.getSecurityManager();
50 System.setSecurityManager(old);
120 System.setSecurityManager(s);
  /dalvik/libcore/sql/src/main/java/SQLite/
JDBCDriver.java 21 String jvers = java.lang.System.getProperty("java.version");
55 System.err.println(e);
78 args[1] = java.lang.System.getProperty("SQLite.encoding");
  /dalvik/libcore/sql/src/test/java/tests/support/
Support_SQL.java 54 String tmp = System.getProperty("java.io.tmpdir");
60 System.err.println("java.io.tmpdir does not exist");
69 System.err.println("Unexpected exception " + ex.toString());
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DocumentBuilderSettingStrategy.java 59 System.out.println("ignoreComments=true not supported");
94 System.out.println("DocumentBuilderSetting.notSigned");
107 System.out.println("DocumentBuilderSetting.notHasNullString");
  /development/tools/mkstubs/src/com/android/mkstubs/
FilterClassAdapter.java 76 System.out.println("- Remove field " + filterName);
108 System.out.println("- Remove method " + filterName);
117 System.out.println("- Remove method " + filterName);
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 58 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
77 System.arraycopy(b, off, this.buffer, this.len, len);
126 System.arraycopy(this.buffer, 0, b, 0, this.len);
  /external/proguard/src/proguard/util/
ClassNameParser.java 201 System.out.println("Regular expression ["+args[0]+"]");
207 System.out.print("String ["+string+"]");
208 System.out.println(" -> match = "+matcher.matches(args[index]));
  /frameworks/base/graphics/java/android/renderscript/
Program.java 133 System.arraycopy(mInputs, 0, p.mInputs, 0, mInputCount);
135 System.arraycopy(mOutputs, 0, p.mOutputs, 0, mOutputCount);
137 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount);
  /frameworks/base/media/java/android/media/
RingtoneManager.java 33 import android.provider.Settings.System;
125 * {@link System#DEFAULT_RINGTONE_URI},
126 * {@link System#DEFAULT_NOTIFICATION_URI}, or
127 * {@link System#DEFAULT_ALARM_ALERT_URI} to have the "Default" item
138 * ringtone. This can be one of {@link System#DEFAULT_RINGTONE_URI},
139 * {@link System#DEFAULT_NOTIFICATION_URI}, or
140 * {@link System#DEFAULT_ALARM_ALERT_URI} to have the "Default" point to
168 * <li> a {@link Uri} that equals {@link System#DEFAULT_RINGTONE_URI},
169 * {@link System#DEFAULT_NOTIFICATION_URI}, or
170 * {@link System#DEFAULT_ALARM_ALERT_URI} if the default was chosen
    [all...]
  /frameworks/base/opengl/tools/glgen/src/
GenerateGLES.java 51 System.out.println("Special-casing function " + fname);
75 System.err.println("Unknown flag: " + args[aidx]);
76 System.exit(1);

Completed in 705 milliseconds

<<21222324252627282930>>