HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 951 - 975 of 5424) sorted by null

<<31323334353637383940>>

  /frameworks/base/libs/hwui/
TreeInfo.h 78 // textures if we run out of cache space.
96 struct Out {
111 } out; member in class:android::uirenderer::TreeInfo
  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 46 Point out; local
47 out.x_ = x_ + other.x_;
48 out.y_ = y_ + other.y_;
49 return out;
53 Point out; local
54 out.x_ = x_ - other.x_;
55 out.y_ = y_ - other.y_;
56 return out;
60 Point out; local
61 out.x_ = factor * x_
    [all...]
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 47 Point out; local
48 out.x_ = x_ + other.x_;
49 out.y_ = y_ + other.y_;
50 return out;
54 Point out; local
55 out.x_ = x_ - other.x_;
56 out.y_ = y_ - other.y_;
57 return out;
61 Point out; local
62 out.x_ = factor * x_
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
DataChangedJournal.java 60 try (RandomAccessFile out = new RandomAccessFile(mFile, "rws")) {
61 out.seek(out.length());
62 out.writeUTF(packageName);
  /frameworks/base/services/core/java/com/android/server/
RandomBlock.java 67 RandomAccessFile out = null; local
69 out = new RandomAccessFile(filename, sync ? "rws" : "rw");
70 toDataOut(out);
71 truncateIfPossible(out);
73 close(out);
87 private void toDataOut(DataOutput out) throws IOException {
88 out.write(block);
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountAuthenticatorCache.java 86 public void writeAsXml(AuthenticatorDescription item, XmlSerializer out)
88 out.attribute(null, "type", item.type);
  /frameworks/base/services/core/jni/BroadcastRadio/
regions.cpp 178 std::vector<RegionalBandConfig> out; local
184 out.insert(out.end(), mapped.begin(), mapped.end());
189 ALOGI("Mapped %zu tuner bands to %zu regional bands", bands.size(), out.size());
190 return out;
  /frameworks/base/telephony/java/com/android/ims/
ImsExternalCallState.java 84 public void writeToParcel(Parcel out, int flags) {
85 out.writeInt(mCallId);
86 out.writeParcelable(mAddress, 0);
87 out.writeInt(mIsPullable ? 1 : 0);
88 out.writeInt(mCallState);
89 out.writeInt(mCallType);
90 out.writeInt(mIsHeld ? 1 : 0);
91 Rlog.d(TAG, "ImsExternalCallState writeToParcel = " + out.toString());
  /frameworks/multidex/library/src/android/support/multidex/
MultiDexExtractor.java 374 ZipOutputStream out = null; local
380 out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(tmp)));
385 out.putNextEntry(classesDex);
390 out.write(buffer, 0, length);
393 out.closeEntry();
395 out.close();
  /frameworks/native/cmds/lshal/
test.cpp 117 out.str("");
129 std::stringstream out; member in class:android::lshal::LshalTest
137 EXPECT_EQ(0u, Lshal(out, err, serviceManager, serviceManager)
139 EXPECT_THAT(out.str(), StrEq("android.hardware.tests.baz@1.0::IQuux\nfoo\nbar"));
147 EXPECT_EQ(0u, Lshal(out, err, serviceManager, serviceManager)
149 EXPECT_THAT(out.str(), StrEq("android.hardware.tests.baz@1.0::IQuux\nbaz\nquux"));
157 EXPECT_NE(0u, Lshal(out, err, serviceManager, serviceManager)
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/util/
DrawingTestHelper.java 83 int[] out = new int[mWidth * mHeight]; local
84 mBitmap.getPixels(out, 0, mWidth, 0, 0, mWidth, mHeight);
85 return out;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 55 uchar *out = (uchar *)info->outPtr[0]; local
66 out[0] = tr[in[0]];
67 out[1] = tg[in[1]];
68 out[2] = tb[in[2]];
69 out[3] = ta[in[3]];
71 out += 4;
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.cpp 48 AudioStreamOutStub* out = new AudioStreamOutStub(); local
49 status_t lStatus = out->set(format, channels, sampleRate);
54 return out;
55 delete out;
59 void AudioHardwareStub::closeOutputStream(AudioStreamOut* out)
61 delete out;
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 65 ByteBuffer out = ByteBuffer.allocate(8 + msg.length() * 2); local
66 out.order(ChunkHandler.CHUNK_ORDER);
67 out.putInt(errorCode);
68 out.putInt(msg.length());
69 putString(out, msg);
71 return new Chunk(CHUNK_FAIL, out);
87 * Utility function to copy a String out of a ByteBuffer.
  /libcore/luni/src/main/java/libcore/reflect/
Types.java 93 * Appends the best {@link #toString} name for {@code c} to {@code out}.
99 public static void appendTypeName(StringBuilder out, Class<?> c) {
105 out.append(c.getName());
107 out.append("[]");
112 * Appends names of the {@code types} to {@code out} separated by commas.
114 public static void appendArrayGenericType(StringBuilder out, Type[] types) {
118 appendGenericType(out, types[0]);
120 out.append(',');
121 appendGenericType(out, types[i]);
125 public static void appendGenericType(StringBuilder out, Type type)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 43 final PipedOutputStream out = new PipedOutputStream(in); local
80 out.write(toWrite);
82 out.close();
110 final PipedOutputStream out = new PipedOutputStream(in); local
165 out.write(writeBytes, 0, writeBytes.length);
167 out.close();
195 final PipedOutputStream out = new PipedOutputStream(in); local
236 out.write(writeBytes, 0, writeBytes.length);
237 out.close();
  /libcore/luni/src/test/java/libcore/java/net/
OldURLClassLoaderTest.java 86 FileOutputStream out = new FileOutputStream(test1); local
87 out.write(resValues[0].getBytes());
88 out.flush();
89 out.close();
95 out = new FileOutputStream(test2);
96 out.write(resValues[1].getBytes());
97 out.flush();
98 out.close();
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldErrorManagerTest.java 28 private final PrintStream out = System.out; field in class:OldErrorManagerTest
32 System.setOut(out);
  /libcore/ojluni/src/main/java/java/io/
ByteArrayOutputStream.java 161 * stream's write method using <code>out.write(buf, 0, count)</code>.
163 * @param out the output stream to which to write the data.
166 public synchronized void writeTo(OutputStream out) throws IOException {
167 out.write(buf, 0, count);
CharArrayWriter.java 132 * @param out the output stream to write to
135 public void writeTo(Writer out) throws IOException {
137 out.write(buf, 0, count);
144 * <p> An invocation of this method of the form <tt>out.append(csq)</tt>
148 * out.write(csq.toString()) </pre>
174 * <p> An invocation of this method of the form <tt>out.append(csq, start,
179 * out.write(csq.subSequence(start, end).toString()) </pre>
212 * <p> An invocation of this method of the form <tt>out.append(c)</tt>
216 * out.write(c) </pre>
  /libcore/ojluni/src/main/java/java/security/
UnresolvedPermissionCollection.java 155 * Writes the contents of the perms field out as a Hashtable
159 private void writeObject(ObjectOutputStream out) throws IOException {
160 // Don't call out.defaultWriteObject()
182 // Write out serializable fields
183 ObjectOutputStream.PutField pfields = out.putFields();
185 out.writeFields();
  /libcore/ojluni/src/main/java/java/util/logging/
SocketHandler.java 174 OutputStream out = sock.getOutputStream(); local
175 BufferedOutputStream bout = new BufferedOutputStream(out);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
BuildStep.java 54 * represents an unsuccessful path, so the certificate has been backed out
196 resultString = "Certificate backed out since path does not "
203 resultString = "Certificate backed out since path does not "
223 String out = "Internal Error\n"; local
227 out = resultToString(result);
228 out = out + vertex.throwableToString();
233 out = resultToString(result);
236 out = "Internal Error: Invalid step result\n";
238 return out;
249 String out = resultToString(getResult()); local
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
AccessDescription.java 75 public void encode(DerOutputStream out) throws IOException {
79 out.write(DerValue.tag_Sequence, tmp);
GeneralNames.java 111 * @param out the DerOutputStream to write the extension to.
114 public void encode(DerOutputStream out) throws IOException {
123 out.write(DerValue.tag_Sequence, temp);

Completed in 56 milliseconds

<<31323334353637383940>>