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

/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java21 public class ByteArray { class
/external/webkit/Source/JavaScriptCore/wtf/
H A DByteArray.h35 class ByteArray : public RefCountedBase { class in namespace:WTF
78 this->~ByteArray();
83 static PassRefPtr<ByteArray> create(size_t size);
86 ByteArray(size_t size) function in namespace:WTF
102 using WTF::ByteArray;
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp97 static bool ByteArrayFromString(ByteArrayTy &ByteArray, argument
133 ByteArray.clear();
137 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
184 ByteArrayTy ByteArray; local
187 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
189 if (!ByteArray.empty())
190 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
196 ByteArrayTy &ByteArray = *((ByteArrayTy*)Arg); local
198 if (A >= ByteArray.size())
201 *B = ByteArray[
225 ByteArrayTy ByteArray; local
[all...]
/external/v8/src/
H A Dobjects.h59 // - ByteArray
707 V(ByteArray) \
2766 // ByteArray represents fixed sized byte arrays. Used by the outside world,
2769 class ByteArray: public HeapObject { class in namespace:v8::internal
2798 // Returns a pointer to the ByteArray object for a given data start address.
2799 static inline ByteArray* FromDataStartAddress(Address address);
2802 static inline ByteArray* cast(Object* obj);
2825 // Maximal memory consumption for a single ByteArray.
2827 // Maximal length of a single ByteArray.
2831 DISALLOW_IMPLICIT_CONSTRUCTORS(ByteArray);
[all...]

Completed in 170 milliseconds