Lines Matching refs:ArrayObject
37 static StringObject* makeStringObject(u4 charsLength, ArrayObject** pChars) in makeStringObject()
61 ArrayObject* chars = dvmAllocPrimitiveArray('C', charsLength, ALLOC_DEFAULT); in makeStringObject()
214 ArrayObject* chars = in dvmComputeStringHash()
215 (ArrayObject*) dvmGetFieldObject(strObj, STRING_FIELDOFF_VALUE); in dvmComputeStringHash()
243 ArrayObject* chars; in dvmCreateStringFromCstrAndLength()
265 ArrayObject* chars; in dvmCreateStringFromUnicode()
293 ArrayObject* chars = in dvmCreateCstrFromString()
294 (ArrayObject*) dvmGetFieldObject(jstr, STRING_FIELDOFF_VALUE); in dvmCreateCstrFromString()
321 ArrayObject* chars = in utfLength()
322 (ArrayObject*) dvmGetFieldObject(this, STRING_FIELDOFF_VALUE); in utfLength()
334 ArrayObject* StringObject::array() const in array()
336 return (ArrayObject*) dvmGetFieldObject(this, STRING_FIELDOFF_VALUE); in array()
342 ArrayObject* chars = in chars()
343 (ArrayObject*) dvmGetFieldObject(this, STRING_FIELDOFF_VALUE); in chars()
371 ArrayObject* chars1 = in dvmHashcmpStrings()
372 (ArrayObject*) dvmGetFieldObject(strObj1, STRING_FIELDOFF_VALUE); in dvmHashcmpStrings()
373 ArrayObject* chars2 = in dvmHashcmpStrings()
374 (ArrayObject*) dvmGetFieldObject(strObj2, STRING_FIELDOFF_VALUE); in dvmHashcmpStrings()
385 ArrayObject* dvmCreateStringArray(const std::vector<std::string>& strings) { in dvmCreateStringArray()
390 ArrayObject* stringArray = dvmAllocArrayByClass(elementClass, strings.size(), ALLOC_DEFAULT); in dvmCreateStringArray()