OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mBytes
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/core/java/com/android/internal/util/
FastXmlSerializer.java
60
private ByteBuffer
mBytes
= ByteBuffer.allocate(BUFFER_LEN);
210
if ((position =
mBytes
.position()) > 0) {
211
mBytes
.flip();
212
mOutputStream.write(
mBytes
.array(), 0, position);
213
mBytes
.clear();
222
CoderResult result = mCharset.encode(charBuffer,
mBytes
, true);
228
result = mCharset.encode(charBuffer,
mBytes
, true);
/frameworks/compile/libbcc/lib/Disassembler/
Disassembler.cpp
46
const uint8_t *
mBytes
;
51
:
mBytes
(Bytes), mLength(Length) {
60
*Byte =
mBytes
[Addr];
/dalvik/tests/027-arithmetic/src/
Main.java
10
final int[]
mBytes
= {
16
i1 =
mBytes
[0] |
mBytes
[1] << 8 |
mBytes
[2] << 16 |
mBytes
[3] << 24;
17
i2 =
mBytes
[4] |
mBytes
[5] << 8 |
mBytes
[6] << 16 |
mBytes
[7] << 24;
25
l = (long)
mBytes
[0
[
all
...]
/frameworks/base/core/java/android/speech/tts/
SynthesisMessageParams.java
108
mUnconsumedBytes -= entry.
mBytes
.length;
142
final byte[]
mBytes
;
145
mBytes
= bytes;
/dalvik/tests/003-omnibus-opcodes/src/
IntMath.java
11
final int[]
mBytes
= {
17
i1 =
mBytes
[0] |
mBytes
[1] << 8 |
mBytes
[2] << 16 |
mBytes
[3] << 24;
18
i2 =
mBytes
[4] |
mBytes
[5] << 8 |
mBytes
[6] << 16 |
mBytes
[7] << 24;
25
l = (long)
mBytes
[0
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/media/
AudioFxDemo.java
203
private byte[]
mBytes
;
215
mBytes
= null;
223
mBytes
= bytes;
231
if (
mBytes
== null) {
235
if (mPoints == null || mPoints.length <
mBytes
.length * 4) {
236
mPoints = new float[
mBytes
.length * 4];
241
for (int i = 0; i <
mBytes
.length - 1; i++) {
242
mPoints[i * 4] = mRect.width() * i / (
mBytes
.length - 1);
244
+ ((byte) (
mBytes
[i] + 128)) * (mRect.height() / 2) / 128;
245
mPoints[i * 4 + 2] = mRect.width() * (i + 1) / (
mBytes
.length - 1)
[
all
...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FsUtils.java
140
private byte[]
mBytes
;
155
return
mBytes
;
171
mBytes
= null;
181
mBytes
= getHttpClient().execute(httpRequest, handler);
/frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java
[
all
...]
/frameworks/base/services/java/com/android/server/
BackupManagerService.java
[
all
...]
Completed in 154 milliseconds