Searched refs:out (Results 401 - 425 of 484) sorted by path

<<11121314151617181920

/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2001 public void writeToParcel(Parcel out, int flags) { argument
2002 super.writeToParcel(out, flags);
2003 out.writeInt(mBackgroundColor);
2969 Log.d(TAG, "--- Number of the parameter is out of bound.");
/frameworks/ex/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java143 ByteArrayOutputStream out = null;
145 out = new ByteArrayOutputStream();
149 out.write(buffer, 0, n);
152 final byte[] bitmapBytes = out.toByteArray();
173 if (out != null) {
175 out.close();
/frameworks/ex/variablespeed/jni/
H A DAndroid.mk20 # TODO: Work out if the log and android libs are needed.
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
H A DMediaPlayerProxyTestCase.java553 public void copyBetweenStreams(InputStream in, OutputStream out) throws IOException { argument
557 out.write(buffer, 0, bytesRead);
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java64 * Like ListView, SGV populates from an adapter and recycles views that fall out
1327 // Clear out the views (but don't clear out the layout records or recycler because the data
1595 public void writeToParcel(Parcel out, int flags) { argument
1596 super.writeToParcel(out, flags);
1597 out.writeLong(firstId);
1598 out.writeInt(position);
1599 out.writeInt(topOffset);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DIntFloat.java31 public void writeToParcel(Parcel out, int flags) { argument
32 out.writeInt(index);
33 out.writeFloat(value);
H A DStringFloat.java32 public void writeToParcel(Parcel out, int flags) { argument
33 out.writeString(key);
34 out.writeFloat(value);
H A DStringString.java32 public void writeToParcel(Parcel out, int flags) { argument
33 out.writeString(key);
34 out.writeString(value);
/frameworks/native/include/android/
H A Dconfiguration.h132 void AConfiguration_fromAssetManager(AConfiguration* out, AAssetManager* am);
/frameworks/native/include/binder/
H A DParcel.h334 const sp<IBinder>& binder, flat_binder_object* out);
336 const wp<IBinder>& binder, flat_binder_object* out);
338 const flat_binder_object& flat, sp<IBinder>* out);
340 const flat_binder_object& flat, wp<IBinder>* out);
/frameworks/native/include/ui/
H A DRegion.h137 void dump(String8& out, const char* what, uint32_t flags=0) const;
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp74 static const void* printReturnCommand(TextOutput& out, const void* _cmd);
75 static const void* printCommand(TextOutput& out, const void* _cmd);
137 static const void* printBinderTransactionData(TextOutput& out, const void* data) argument
143 out << "target.desc=" << btd->target.handle;
145 out << "target.ptr=" << btd->target.ptr;
147 out << " (cookie " << btd->cookie << ")" << endl
156 static const void* printReturnCommand(TextOutput& out, const void* _cmd) argument
163 out << "BR_ERROR: " << (void*)(*cmd++) << endl;
166 out << "Unknown reply: " << code << endl;
169 out << kReturnString
217 printCommand(TextOutput& out, const void* _cmd) argument
[all...]
H A DParcel.cpp146 const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out)
148 return out->writeObject(flat, false);
152 const sp<IBinder>& binder, Parcel* out)
179 return finish_flatten_binder(binder, obj, out);
183 const wp<IBinder>& binder, Parcel* out)
206 return finish_flatten_binder(real, obj, out);
220 return finish_flatten_binder(NULL, obj, out);
226 return finish_flatten_binder(NULL, obj, out);
237 const Parcel& in, sp<IBinder>* out)
244 *out
145 finish_flatten_binder( const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) argument
151 flatten_binder(const sp<ProcessState>& proc, const sp<IBinder>& binder, Parcel* out) argument
182 flatten_binder(const sp<ProcessState>& proc, const wp<IBinder>& binder, Parcel* out) argument
236 unflatten_binder(const sp<ProcessState>& proc, const Parcel& in, sp<IBinder>* out) argument
255 unflatten_binder(const sp<ProcessState>& proc, const Parcel& in, wp<IBinder>* out) argument
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp234 ComposerState* const out = mComposerStates.editArray(); local
235 return &(out[index].state);
H A DSurfaceTexture.cpp113 static void mtxMul(float out[16], const float a[16], const float b[16]);
885 static void mtxMul(float out[16], const float a[16], const float b[16]) { argument
886 out[0] = a[0]*b[0] + a[4]*b[1] + a[8]*b[2] + a[12]*b[3];
887 out[1] = a[1]*b[0] + a[5]*b[1] + a[9]*b[2] + a[13]*b[3];
888 out[2] = a[2]*b[0] + a[6]*b[1] + a[10]*b[2] + a[14]*b[3];
889 out[3] = a[3]*b[0] + a[7]*b[1] + a[11]*b[2] + a[15]*b[3];
891 out[4] = a[0]*b[4] + a[4]*b[5] + a[8]*b[6] + a[12]*b[7];
892 out[5] = a[1]*b[4] + a[5]*b[5] + a[9]*b[6] + a[13]*b[7];
893 out[6] = a[2]*b[4] + a[6]*b[5] + a[10]*b[6] + a[14]*b[7];
894 out[
[all...]
H A DSurfaceTextureClient.cpp749 ANativeWindowBuffer* out; local
751 status_t err = dequeueBuffer(&out, &fenceFd);
754 sp<GraphicBuffer> backBuffer(GraphicBuffer::getSelf(out));
760 cancelBuffer(out, fenceFd);
774 // figure out if we can copy the frontbuffer back
/frameworks/native/libs/ui/
H A DRegion.cpp655 void Region::dump(String8& out, const char* what, uint32_t flags) const argument
666 out.append(buffer);
670 out.append(buffer);
/frameworks/native/libs/utils/
H A DLinearTransform.cpp119 int64_t* out) {
124 if (!out)
161 *out = (is_neg ? (-scaled) : scaled) + basis2;
181 *out = res;
112 linear_transform_s64_to_s64( int64_t val, int64_t basis1, int32_t N, uint32_t D, bool invert_frac, int64_t basis2, int64_t* out) argument
H A DRefBase.cpp297 void printRefsLocked(String8* out, const ref_entry* refs) const argument
304 out->append(buf);
306 out->append(refs->stack.toString("\t\t"));
308 out->append("\t\t(call stacks disabled)");
560 // which case weakref_impl doesn't out-live the object and we
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp600 // being culled out. So it's okay to light the vertices here, even though
873 vertex_t* out[2][MAX_CLIPPING_PLANES + MAX_VERTICES + 2]; local
895 vertex_t** const ovl = &out[outi][0];
961 vertex_t** const ovl = &out[outi][0];
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp197 ostringstream out; local
199 out << '[' << _l << ", " << _u << ']';
201 return out.str();
632 // are laid out on a diagonal starting from the upper left corner. With
1358 ostringstream out; local
1360 out << _n << '/' << _d;
1362 return out.str();
1455 ostringstream out; local
1462 out << ", ";
1464 out << i
1479 ostringstream out; local
[all...]
H A DhwcTestLib.cpp159 ostringstream out; local
161 out << '[' << this->c1() << ", "
165 return out.str();
171 ostringstream out; local
173 out << '[' << this->width() << ", "
176 return out.str();
195 ostringstream out; local
197 out << '[';
198 out << rect.left << ", ";
199 out << rec
[all...]
/frameworks/native/opengl/tools/glgen/
H A Dgen4 rm -rf out generated
6 mkdir out
11 mkdir -p out/javax/microedition/khronos/opengles
12 mkdir -p out/com/google/android/gles_jni
13 mkdir -p out/android/app
14 mkdir -p out/android/graphics
15 mkdir -p out/android/view
16 mkdir -p out/android/opengl
17 mkdir -p out/android/content
18 mkdir -p out/androi
[all...]
/frameworks/native/opengl/tools/glgen/src/
H A DGenerateEGL.java26 private static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
51 System.out.println("Special-casing function " + fname);
93 new PrintStream(new FileOutputStream("out/" + egljFilename));
95 new PrintStream(new FileOutputStream("out/" + eglcFilename));
H A DGenerateGL.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
52 System.out.println("Special-casing function " + fname);
93 System.out.println("useContextPointer = " + useContextPointer);
120 new PrintStream(new FileOutputStream("out/" + gl10Filename));
122 new PrintStream(new FileOutputStream("out/" + gl10ExtFilename));
124 new PrintStream(new FileOutputStream("out/" + gl11Filename));
126 new PrintStream(new FileOutputStream("out/" + gl11ExtFilename));
128 new PrintStream(new FileOutputStream("out/" + gl11ExtPackFilename));
130 new PrintStream(new FileOutputStream("out/"
[all...]

Completed in 167 milliseconds

<<11121314151617181920