HomeSort by relevance Sort by last modified time
    Searched refs:ByteArray (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/wtf/
ByteArray.cpp 27 #include "ByteArray.h"
31 PassRefPtr<ByteArray> ByteArray::create(size_t size)
33 unsigned char* buffer = new unsigned char[size + sizeof(ByteArray) - sizeof(size_t)];
35 return adoptRef(new (buffer) ByteArray(size));
ByteArray.h 33 class ByteArray : public RefCountedBase {
76 this->~ByteArray();
81 static PassRefPtr<ByteArray> create(size_t size);
84 ByteArray(size_t size)
  /external/webkit/WebCore/ForwardingHeaders/wtf/
ByteArray.h 3 #include <JavaScriptCore/ByteArray.h>
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseObserver.java 19 import com.android.dx.util.ByteArray;
43 public void startParsingMember(ByteArray bytes, int offset, String name,
56 public void endParsingMember(ByteArray bytes, int offset, String name,
67 public void parsed(ByteArray bytes, int offset, int len, String human);
  /external/v8/src/
interpreter-irregexp.h 39 static bool Match(Handle<ByteArray> code,
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 20 import com.android.dx.util.ByteArray;
27 private final ByteArray data;
42 public RawAttribute(String name, ByteArray data, ConstantPool pool) {
54 * Constructs an instance from a sub-array of a {@link ByteArray}.
62 public RawAttribute(String name, ByteArray data, int offset,
72 public ByteArray getData() {
  /external/webkit/WebCore/html/canvas/
CanvasPixelArray.cpp 40 : m_data(WTF::ByteArray::create(length))
CanvasPixelArray.h 32 #include <wtf/ByteArray.h>
44 WTF::ByteArray* data() { return m_data.get(); }
45 const WTF::ByteArray* data() const { return m_data.get(); }
70 RefPtr<WTF::ByteArray> m_data;
  /dalvik/dx/src/com/android/dx/util/
Output.java 91 * Writes a {@link ByteArray} to this instance.
95 public void write(ByteArray bytes);
ByteArray.java 29 public final class ByteArray {
48 public ByteArray(byte[] bytes, int start, int end) {
75 public ByteArray(byte[] bytes) {
96 public ByteArray slice(int start, int end) {
98 return new ByteArray(bytes, start + this.start, end + this.start);
  /dalvik/dx/src/com/android/dx/command/dump/
ClassDumper.java 21 import com.android.dx.util.ByteArray;
61 ByteArray ba = new ByteArray(bytes);
BaseDumper.java 23 import com.android.dx.util.ByteArray;
126 public void parsed(ByteArray bytes, int offset, int len, String human) {
146 public void startParsingMember(ByteArray bytes, int offset, String name,
152 public void endParsingMember(ByteArray bytes, int offset, String name,
173 protected final void setAt(ByteArray arr, int offset) {
BlockDumper.java 42 import com.android.dx.util.ByteArray;
111 ByteArray ba = new ByteArray(bytes);
139 public void parsed(ByteArray bytes, int offset, int len, String human) {
155 public void startParsingMember(ByteArray bytes, int offset, String name,
183 public void endParsingMember(ByteArray bytes, int offset, String name,
210 ByteArray bytes = code.getBytes();
285 ByteArray bytes = code.getBytes();
DotDumper.java 33 import com.android.dx.util.ByteArray;
63 ByteArray ba = new ByteArray(bytes);
93 public void parsed(ByteArray bytes, int offset, int len, String human) {
98 public void startParsingMember(ByteArray bytes, int offset, String name,
103 public void endParsingMember(ByteArray bytes, int offset, String name,
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AbstractSessionContext.java 50 private final Map<ByteArray, SSLSession> sessions
51 = new LinkedHashMap<ByteArray, SSLSession>() {
54 Map.Entry<ByteArray, SSLSession> eldest) {
261 ByteArray key = new ByteArray(sessionId);
277 ByteArray key = new ByteArray(id);
299 static class ByteArray {
303 ByteArray(byte[] bytes) {
315 ByteArray other = (ByteArray) o
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 25 import com.android.dx.util.ByteArray;
82 ByteArray bytes = cf.getBytes();
124 ByteArray bytes = cf.getBytes();
DirectClassFile.java 37 import com.android.dx.util.ByteArray;
80 private final ByteArray bytes;
173 public DirectClassFile(ByteArray bytes, String filePath,
202 this(new ByteArray(bytes), filePath, strictParse);
228 * Gets the {@link ByteArray} that this instance's data comes from.
232 public ByteArray getBytes() {
561 private final ByteArray bytes;
579 public DcfTypeList(ByteArray bytes, int offset, int size,
MemberListParser.java 28 import com.android.dx.util.ByteArray;
118 ByteArray bytes = cf.getBytes();
177 ByteArray bytes = cf.getBytes();
AttributeListParser.java 23 import com.android.dx.util.ByteArray;
126 ByteArray bytes = cf.getBytes();
StdAttributeFactory.java 57 import com.android.dx.util.ByteArray;
218 ByteArray bytes = cf.getBytes();
322 ByteArray bytes = cf.getBytes();
356 ByteArray bytes = cf.getBytes();
385 ByteArray bytes = cf.getBytes();
413 ByteArray bytes = cf.getBytes();
470 ByteArray bytes = cf.getBytes();
511 ByteArray bytes = cf.getBytes();
534 ByteArray bytes = cf.getBytes();
559 private LocalVariableList parseLocalVariables(ByteArray bytes
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSByteArray.h 31 #include <wtf/ByteArray.h>
76 JSByteArray(ExecState* exec, NonNullPassRefPtr<Structure>, WTF::ByteArray* storage, const JSC::ClassInfo* = &s_defaultInfo);
92 WTF::ByteArray* storage() const { return m_storage.get(); }
109 RefPtr<WTF::ByteArray> m_storage;
  /cts/tools/dx-tests/src/dxconvext/
ClassFileParser.java 24 import com.android.dx.util.ByteArray;
132 public void startParsingMember(ByteArray bytes, int offset,
134 // ByteArray ba = bytes.slice(offset, bytes.size());
152 public void endParsingMember(ByteArray bytes, int offset,
154 ByteArray ba = bytes.slice(offset, bytes.size());
170 public void parsed(ByteArray bytes, int offset, int len,
176 ByteArray ba = bytes.slice(offset, offset + len);
188 private void check(ByteArray ba) {
203 private String dumpBytes(ByteArray ba) {
216 private String dumpReadableString(ByteArray ba)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
StringDataItem.java 21 import com.android.dx.util.ByteArray;
72 ByteArray bytes = value.getBytes();
  /dalvik/dx/src/com/android/dx/rop/cst/
CstUtf8.java 19 import com.android.dx.util.ByteArray;
36 private final ByteArray bytes;
79 public static String utf8BytesToString(ByteArray bytes) {
186 this.bytes = new ByteArray(stringToUtf8Bytes(string));
194 public CstUtf8(ByteArray bytes) {
346 public ByteArray getBytes() {
  /external/webkit/JavaScriptCore/
Android.v8.wtf.mk 36 wtf/ByteArray.cpp \

Completed in 320 milliseconds

1 2 3