Searched defs:writeValue (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dbitbuffer.c141 Word32 writeValue,
155 writeValue <<= 32 - wBitPos;
156 writeValue |= hBitBuf->cache;
161 tmp = (UWord8)((writeValue >> 24) & 0xFF);
164 writeValue <<= 8;
169 hBitBuf->cache = writeValue;
140 WriteBits(HANDLE_BIT_BUF hBitBuf, Word32 writeValue, Word16 noBitsToWrite) argument
/frameworks/base/services/java/com/android/server/
H A DViewServer.java194 private static boolean writeValue(Socket client, String value) { method in class:ViewServer
250 result = writeValue(mClient, VALUE_PROTOCOL_VERSION);
252 result = writeValue(mClient, VALUE_SERVER_VERSION);
/frameworks/base/core/java/android/view/
H A DViewDebug.java1524 writeValue(out, value);
1613 private static void writeValue(BufferedWriter out, Object value) throws IOException { method in class:ViewDebug
/frameworks/base/core/java/android/os/
H A DParcel.java168 * {@link #writeValue(Object)} and {@link #readValue(ClassLoader)} methods
464 * The Map values are written using {@link #writeValue} and must follow
487 writeValue(e.getKey());
488 writeValue(e.getValue());
508 * {@link #writeValue} and must follow the specification there.
519 writeValue(val.get(i));
527 * {@link #writeValue} and must follow the specification there.
538 writeValue(val[i]);
546 * values are written using {@link #writeValue} and must follow the
559 writeValue(va
1052 public final void writeValue(Object v) { method in class:Parcel
[all...]

Completed in 282 milliseconds