/tools/repohooks/tools/ |
D | checkpatch.pl | 1212 my $off = 0; 1218 for ($off = 1; $off < length($line); $off++) { 1219 $c = substr($line, $off, 1); 1223 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '/*') { 1226 substr($res, $off, 2, "$;$;"); 1227 $off++; 1230 if ($sanitise_quote eq '*/' && substr($line, $off, 2) eq '*/') { 1232 substr($res, $off, 2, "$;$;"); 1233 $off++; 1236 if ($sanitise_quote eq '' && substr($line, $off, 2) eq '//') { [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | FixedByteArrayOutputStream.java | 79 public void write(byte[] b, int off, int len) throws IOException { in write() argument 85 System.arraycopy(b, off + len - mBuffer.length, mBuffer, 0, mBuffer.length); in write() 93 System.arraycopy(b, off, mBuffer, mWritePos, len); in write() 96 System.arraycopy(b, off, mBuffer, mWritePos, freeSpace); in write() 98 System.arraycopy(b, off + freeSpace, mBuffer, 0, len - freeSpace); in write()
|
D | SizeLimitedOutputStream.java | 191 public synchronized void write(byte[] b, int off, int len) throws IOException { in write() argument 203 mCurrentOutputStream.write(b, off, (int)sizeToWrite); in write() 206 off += sizeToWrite; in write()
|
D | ShellOutputReceiverStream.java | 55 public void write(byte[] b, int off, int len) { in write() argument 59 mReceiver.addOutput(b, off, len); in write()
|
/tools/tradefederation/core/src/com/android/tradefed/log/ |
D | ConsoleReaderOutputStream.java | 110 public synchronized void write(byte[] b, int off, int len) throws IOException { in write() argument 111 final boolean shufflePrompt = mInAsyncMode && (b[off + len - 1] == '\n'); in write() 123 mConsoleReader.printString(new String(b, off, len)); in write()
|
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/ |
D | InputStreamBerDataValueReader.java | 268 public int read(byte[] b, int off, int len) throws IOException { in read() argument 269 len = mIn.read(b, off, len); in read() 271 mBuf.write(b, off, len); in read()
|
/tools/tradefederation/core/atest/docs/ |
D | atest_structure.md | 3 You're here because you'd like to contribute to atest. To start off, we'll 49 the ```AtestTradefedTestRunner``` is used to kick off ```hello_world_test```. 115 4. You're done! To pick up the override, rerun build/envsetup.sh to kick off the
|
/tools/tradefederation/core/ |
D | Android.bp | 120 // Turn off various doclava warnings when generating 122 // turned off in frameworks/base, plus error 101
|
D | tradefed_win.bat | 1 @echo off
|
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/ |
D | MCAP_PTS_INSTRUCTIONS | 15 Requires mcap_tool, Bluetooth to be off on the phone before starting mcap_tool 29 Turn Bluetooth off in the UI
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | ZFile.java | 910 public int read(@Nonnull byte[] b, int off, int len) throws IOException { in directOpen() argument 912 Preconditions.checkArgument(off >= 0, "off < 0"); in directOpen() 913 Preconditions.checkArgument(off <= b.length, "off > b.length"); in directOpen() 915 Preconditions.checkArgument(off + len <= b.length, "off + len > b.length"); in directOpen() 928 int r = directRead(mCurr, b, off, Ints.checkedCast(toRead)); in directOpen()
|
/tools/metalava/ |
D | gradlew.bat | 1 @if "%DEBUG%" == "" @echo off
|
/tools/trebuchet/ |
D | gradlew.bat | 1 @if "%DEBUG%" == "" @echo off
|
/tools/apksig/etc/ |
D | apksigner.bat | 1 @echo off
|
/tools/metalava/src/test/java/com/android/tools/metalava/model/psi/ |
D | PsiTypePrinterTest.kt | 401 fun `Test primitives with type use turned off`() { in <lambda>()
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | Driver.kt | 771 override fun write(b: ByteArray, off: Int, len: Int) { in write() 772 writer.write(String(b, off, len, UTF_8)) in write()
|
/tools/metalava/src/test/java/com/android/tools/metalava/ |
D | DriverTest.kt | 146 override fun write(b: ByteArray?, off: Int, len: Int) { in <lambda>() 148 super.write(b, off, len) in <lambda>()
|
/tools/repohooks/ |
D | README.md | 168 # Turn off gofmt checking.
|