/bionic/libc/bionic/ |
net_if.cpp | 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 137 struct if_nameindex* out = result; local 139 out->if_index = it->data.if_index; 140 out->if_name = it->data.if_name; 141 ++out; 143 out->if_index = 0; 144 out->if_name = nullptr;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/PoseProvider/ |
PoseData.java | 87 float[] out = new float[4]; local 89 out[i] = mRotation[i]; 91 return out; 100 float[] out = new float[3]; local 102 out[i] = mTranslation[i]; 104 return out;
|
/cts/apps/VpnApp/src/com/android/cts/vpnfirewall/ |
IcmpMessage.java | 72 StringBuilder out = new StringBuilder(64); local 73 out.append("ICMP payload {"); 74 out.append("\n Type: "); out.append(type); 75 out.append("\n Code: "); out.append(code); 76 out.append("\n Quench: "); out.append(quench); 77 out.append("\n Data: ["); 80 out.append(String.format("\n%4s", "")) [all...] |
/cts/hostsidetests/edi/src/android/edi/cts/ |
LibraryDeviceInfo.java | 81 String out = mDevice.executeShellCommand("sha1sum " + filePath); local 82 sha1 = out.split(" ", 2)[0].toUpperCase();
|
/cts/hostsidetests/monkey/src/com/android/cts/monkey/ |
CategoryTest.java | 32 String out = receiver.getOutput(); local 33 assertTrue(out.contains("cmp=com.android.cts.monkey/.MonkeyActivity")); 34 assertTrue(out.contains("cmp=com.android.cts.monkey/.BaboonActivity")); 48 String out = receiver.getOutput(); local 49 assertTrue(out.contains("cmp=com.android.cts.monkey/.MonkeyActivity")); 50 assertFalse(out.contains("cmp=com.android.cts.monkey/.BaboonActivity")); 62 String out = receiver2.getOutput(); local 63 assertFalse(out.contains("cmp=com.android.cts.monkey/.MonkeyActivity")); 64 assertTrue(out.contains("cmp=com.android.cts.monkey/.BaboonActivity")); 79 String out = receiver.getOutput() local [all...] |
PackageTest.java | 41 String out = receiver.getOutput(); local 42 String error = truncateError(out); 43 assertTrue("Monkey not found in: " + error, ALLOW_MONKEY.matcher(out).find()); 44 assertFalse("Chimp found in: " + error, ALLOW_CHIMP.matcher(out).find()); 55 String out = receiver2.getOutput(); local 56 String error = truncateError(out); 57 assertFalse("Monkey found in: " + error, ALLOW_MONKEY.matcher(out).find()); 58 assertTrue("Chimp not found in: " + error, ALLOW_CHIMP.matcher(out).find()); 71 String out = receiver.getOutput(); local 72 String error = truncateError(out); [all...] |
/cts/hostsidetests/security/src/android/security/cts/ |
AdbUtils.java | 115 * Out: media 269 1 77016 24416 binder_thr 00f35142ec S /system/bin/mediaserver 158 OutputStream out = new BufferedOutputStream(new FileOutputStream(file))) { 165 out.write(buf, 0, chunkSize);
|
/cts/libs/vogar-expect/src/vogar/ |
Outcome.java | 100 PrintWriter out = new PrintWriter(writer); local 101 t.printStackTrace(out);
|
/cts/tests/filesystem/src/android/filesystem/cts/ |
FileUtil.java | 146 FileOutputStream out = new FileOutputStream(file); local 151 out.write(data, 0, toWrite); 154 out.flush(); 155 out.close();
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ProviderTestUtils.java | 55 StringBuilder out = new StringBuilder(); local 57 out.append(str); 59 return out.toString();
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
InitTest.java | 37 float[] out = new float[INPUTSIZE]; local 51 mOut.copyTo(out); 52 checkArray(ref, out, INPUTSIZE, 1, 1, 0);
|
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni_foreach.cpp | 54 sp<Allocation> out = Allocation::createTyped(mRS, t); local 55 fe_all->forEach_test_i8(in, out); 62 out = Allocation::createTyped(mRS, t); 63 fe_all->forEach_test_i8_2(in, out); 70 out = Allocation::createTyped(mRS, t); 71 fe_all->forEach_test_i8_3(in, out); 78 out = Allocation::createTyped(mRS, t); 79 fe_all->forEach_test_i8_4(in, out); 86 out = Allocation::createTyped(mRS, t); 87 fe_all->forEach_test_i16(in, out); [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
EncodedArrayItem.java | 104 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 105 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 108 encodedForm = out.toByteArray(); 114 protected void writeTo0(DexFile file, AnnotatedOutput out) { 115 boolean annotates = out.annotates(); 118 out.annotate(0, offsetString() + " encoded array"); 125 ValueEncoder encoder = new ValueEncoder(file, out); 128 out.write(encodedForm);
|
/dalvik/dx/src/com/android/dx/command/grep/ |
Grep.java | 36 private final PrintWriter out; field in class:Grep 42 public Grep(final Dex dex, Pattern pattern, final PrintWriter out) { 44 this.out = out; 70 out.println(location() + " " + dex.strings().get(index)); 86 * Prints usages to out. Returns the number of matches found.
|
/dalvik/dx/src/com/android/dx/dex/file/ |
CallSiteItem.java | 59 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 60 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 63 encodedForm = out.toByteArray(); 81 protected void writeTo0(DexFile file, AnnotatedOutput out) { 82 if (out.annotates()) { 83 out.annotate(0, offsetString() + " call site"); 84 ValueEncoder encoder = new ValueEncoder(file, out); 87 out.write(encodedForm);
|
EncodedArrayItem.java | 95 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 99 encodedForm = out.toByteArray(); 105 protected void writeTo0(DexFile file, AnnotatedOutput out) { 106 boolean annotates = out.annotates(); 109 out.annotate(0, offsetString() + " encoded array"); 116 ValueEncoder encoder = new ValueEncoder(file, out); 119 out.write(encodedForm);
|
/dalvik/dx/tests/116-leb128/com/android/dx/util/ |
Leb128UtilsTest.java | 63 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(5); local 64 Leb128.writeSignedLeb128(out, value); 65 return out.toByteArray(); 69 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(5); local 70 Leb128.writeUnsignedLeb128(out, value); 71 return out.toByteArray();
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
TextSwitcher1.java | 53 Animation out = AnimationUtils.loadAnimation(this, local 56 mSwitcher.setOutAnimation(out);
|
/development/tools/bugreport/src/com/android/bugreport/stacks/ |
ProcessSnapshotParser.java | 95 System.out.println("ProcessSnapshotParser Dropping: " + text); 120 System.out.println("ProcessSnapshotParser STATE_THREADS Dropping: " + text); 127 System.out.println(); 128 System.out.println("PROCESS"); 129 System.out.println("pid=" + result.pid); 130 System.out.println("date=" + result.date); 131 System.out.println("threads=" + result.threads.size()); 132 System.out.println("cmdLine=" + result.cmdLine);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
inffast.c | 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */
local 76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0; [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
inffast.c | 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */
local 76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(this.val);
186 op = (unsigned)(out - beg); /* max distance in output */
200 PUP(out) = PUP(from); [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeRewriter.java | 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 103 System.out.println(((Tree)oldTree).toStringTree()+" -> "+
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/ |
PolynomialFunctionNewtonForm.java | 113 double[] out = new double[a.length]; local 114 System.arraycopy(a, 0, out, 0, a.length); 115 return out; 126 double[] out = new double[c.length]; local 127 System.arraycopy(c, 0, out, 0, c.length); 128 return out; 142 double[] out = new double[coefficients.length]; local 143 System.arraycopy(coefficients, 0, out, 0, coefficients.length); 144 return out;
|
PolynomialSplineFunction.java | 203 double out[] = new double[n + 1]; local 204 System.arraycopy(knots, 0, out, 0, n + 1); 205 return out;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/ |
AbstractContinuousDistribution.java | 182 double[] out = new double[sampleSize]; local 184 out[i] = sample(); 186 return out;
|