/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
CharInfo.java | 539 System.arraycopy(charInfo.array_of_bits,0,copy.array_of_bits,0,max); 544 System.arraycopy(charInfo.shouldMapAttrChar_ASCII,0,copy.shouldMapAttrChar_ASCII,0,max); 547 System.arraycopy(charInfo.shouldMapTextChar_ASCII,0,copy.shouldMapTextChar_ASCII,0,max);
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 82 * @param systemId System identifier for the document. 94 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl"); 113 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl"); 132 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl"); 335 // System.out.println("TreeWalker#startNode: "+node.getNodeName()); 342 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue()); 345 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue()); 359 // System.out.println("m_dh.getNamespaceOfNode(node): "+m_dh.getNamespaceOfNode(node)); 360 // System.out.println("m_dh.getLocalNameOfNode(node): "+m_dh.getLocalNameOfNode(node));
|
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserFactoryTest.java | 180 @KnownFailure("Dalvik doesn't honor system properties when choosing a SAX implementation") 186 System.setProperty("javax.xml.parsers.SAXParserFactory", 195 Properties prop = System.getProperties(); 200 System.setProperty("javax.xml.parsers.SAXParserFactory", "");
|
/external/emma/core/java12/com/vladium/emma/report/lcov/ |
ReportGenerator.java | 75 start = System.currentTimeMillis(); 88 end = System.currentTimeMillis(); 300 t.printStackTrace(System.out);
|
/external/guava/src/com/google/common/io/ |
Files.java | 375 * denoting system-dependent entities such as devices or pipes, in 388 * Atomically creates a new directory somewhere beneath the system's 389 * temporary directory (as defined by the {@code java.io.tmpdir} system 407 File baseDir = new File(System.getProperty("java.io.tmpdir")); 408 String baseName = System.currentTimeMillis() + "-"; 430 && !file.setLastModified(System.currentTimeMillis())) {
|
/external/guava/src/com/google/common/primitives/ |
Booleans.java | 194 System.arraycopy(array, 0, result, pos, array.length); 228 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 459 System.arraycopy(array, start, result, 0, size);
|
Chars.java | 260 System.arraycopy(array, 0, result, pos, array.length); 331 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 560 System.arraycopy(array, start, result, 0, size);
|
Doubles.java | 230 System.arraycopy(array, 0, result, pos, array.length); 264 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 496 System.arraycopy(array, start, result, 0, size);
|
Floats.java | 227 System.arraycopy(array, 0, result, pos, array.length); 261 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 493 System.arraycopy(array, start, result, 0, size);
|
Ints.java | 260 System.arraycopy(array, 0, result, pos, array.length); 340 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 567 System.arraycopy(array, start, result, 0, size);
|
Longs.java | 228 System.arraycopy(array, 0, result, pos, array.length); 317 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 545 System.arraycopy(array, start, result, 0, size);
|
Shorts.java | 260 System.arraycopy(array, 0, result, pos, array.length); 331 System.arraycopy(original, 0, copy, 0, Math.min(original.length, length)); 559 System.arraycopy(array, start, result, 0, size);
|
/external/proguard/src/proguard/optimize/peephole/ |
BranchTargetFinder.java | 421 System.out.println(); 422 System.out.println("Branch targets: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 428 System.out.println("" +
|
/frameworks/base/awt/java/awt/geom/ |
GeneralPath.java | 184 System.arraycopy(p.points, pointIndex, coords, 0, count); 293 System.arraycopy(types, 0, tmp, 0, typeSize); 298 System.arraycopy(points, 0, tmp, 0, pointSize);
|
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
CommonGraphics2D.java | 79 * CommonGraphics2D class is a super class for all system-dependent 96 * rectangle-drawing methods. However, if your operating system has functions to draw 115 * of the java.awt.Paint class with paints, which the system does not support. 160 protected static final boolean debugOutput = "1".equals(System.getProperty("g2d.debug")); //$NON-NLS-1$ //$NON-NLS-2$ 192 System.err.println("CommonGraphics2D.clearRect("+x+", "+y+", "+width+", "+height+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 532 System.err.println("CommonGraphics2D.drawLine("+x1+", "+y1+", "+x2+", "+y2+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 620 System.err.println("CommonGraphics2D.drawRoundRect("+x+", "+y+", "+width+", "+height+","+arcWidth+", "+arcHeight+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ 655 System.err.println("CommonGraphics2D.drawString("+str+", "+x+", "+y+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ 759 System.err.println("CommonGraphics2D.fillRect("+x+", "+y+", "+width+", "+height+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 768 System.err.println("CommonGraphics2D.fillRoundRect("+x+", "+y+", "+width+", "+height+","+arcWidth+", "+ar (…) [all...] |
/frameworks/base/obex/javax/obex/ |
ClientOperation.java | 114 System.arraycopy((header).mAuthChall, 0, mRequestHeader.mAuthChall, 0, 120 System.arraycopy((header).mAuthResp, 0, mRequestHeader.mAuthResp, 0, 441 System.arraycopy(headerArray, start, sendHeader, 0, sendHeader.length);
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmServiceStateTracker.java | 213 // system setting property AIRPLANE_MODE_ON is set in Settings. 214 int airplaneMode = Settings.System.getInt( 216 Settings.System.AIRPLANE_MODE_ON, 0); 221 Settings.System.getUriFor(Settings.System.AUTO_TIME), true, [all...] |
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfoSource.java | 23 import dalvik.system.DexFile; 122 } else if ("true".equals(System.getProperty("android.vm.dexfile", "false"))) { 311 * Gets the class path from the System Property "java.class.path" and splits 315 String classPath = System.getProperty("java.class.path"); 316 String separator = System.getProperty("path.separator", ":");
|
/packages/apps/Browser/tests/src/com/android/browser/ |
PopularUrlsTest.java | 52 private final static String newLine = System.getProperty("line.separator"); 386 long startTime = System.currentTimeMillis(); 395 long stopTime = System.currentTimeMillis();
|
/packages/apps/Phone/src/com/android/phone/ |
CallFeaturesSetting.java | 398 android.provider.Settings.System.putInt(mPhone.getContext().getContentResolver(), 399 android.provider.Settings.System.CALL_AUTO_RETRY, 405 Settings.System.putInt(mPhone.getContext().getContentResolver(), 406 Settings.System.HEARING_AID, hac); 430 Settings.System.putInt(mPhone.getContext().getContentResolver(), 431 Settings.System.DTMF_TONE_TYPE_WHEN_DIALING, index); [all...] |
/cts/tests/src/android/app/cts/ |
AppStubActivity.java | 58 System.err.print("exception!");
|
/cts/tests/tests/app/src/android/app/cts/ |
NotificationManagerTest.java | 115 icon, "No intent", System.currentTimeMillis());
|
/cts/tests/tests/media/src/android/media/cts/ |
RingtoneTest.java | 46 mRingtone = RingtoneManager.getRingtone(mContext, Settings.System.DEFAULT_RINGTONE_URI);
|
/cts/tests/tests/net/src/android/net/wifi/cts/ |
WifiManagerTest.java | 126 long timeout = System.currentTimeMillis() + TIMEOUT_MSEC; 127 while (System.currentTimeMillis() < timeout 137 long timeout = System.currentTimeMillis() + TIMEOUT_MSEC; 138 while (System.currentTimeMillis() < timeout && mMySync.expectedState == STATE_SCANING)
|
/cts/tests/tests/provider/src/android/provider/cts/ |
Settings_NameValueTableTest.java | 40 Uri uri = Settings.System.CONTENT_URI;
|