Searched refs:fLength (Results 1 - 25 of 94) sorted by relevance

1234

/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dustr.c35 s->fLength = s->fCapacity = 0;
44 s->fLength = s->fCapacity = 0;
75 s->fLength = s->fCapacity = 0;
87 if(dst->fCapacity < src->fLength) {
88 ustr_resize(dst, ALLOCATION(src->fLength), status);
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
96 dst->fLength = src->fLength;
97 dst->fChars[dst->fLength] = 0x0000;
114 s->fLength
[all...]
H A Dustr.h54 int32_t fLength; member in struct:UString
/external/icu/icu4c/source/tools/genrb/
H A Dustr.c35 s->fLength = s->fCapacity = 0;
44 s->fLength = s->fCapacity = 0;
75 s->fLength = s->fCapacity = 0;
87 if(dst->fCapacity < src->fLength) {
88 ustr_resize(dst, ALLOCATION(src->fLength), status);
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
96 dst->fLength = src->fLength;
97 dst->fChars[dst->fLength] = 0x0000;
114 s->fLength
[all...]
/external/icu/icu4c/source/layout/
H A DLETableReference.h56 fFont(font), fTag(tableTag), fParent(NULL), fStart(NULL),fLength(LE_UINTPTR_MAX) {
61 LETableReference(const LETableReference &parent, LEErrorCode &success) : fFont(parent.fFont), fTag(parent.fTag), fParent(&parent), fStart(parent.fStart), fLength(parent.fLength) {
69 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(data), fLength(length) {
73 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(NULL), fLength(0) {
90 fStart((parent.fStart)+offset), fLength(length) {
95 } else if(offset >= fParent->fLength) {
100 if(fLength == LE_UINTPTR_MAX &&
101 fParent->fLength != LE_UINTPTR_MAX) {
102 fLength
202 size_t fLength; member in class:LETableReference
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLSLPrettyPrint.cpp18 fLength = input.size();
28 while (fLength > fIndex) {
93 for (size_t j = 0; token[j] && fLength > i; i++, j++) {
106 while (fLength > fIndex) {
120 while (fLength > fIndex) {
164 size_t fIndex, fLength; member in class:GrGLSLPrettyPrint::GLSLPrettyPrint
/external/chromium_org/third_party/skia/src/core/
H A DSkDescriptor.h34 fLength = sizeof(SkDescriptor);
38 uint32_t getLength() const { return fLength; }
45 Entry* entry = (Entry*)((char*)this + fLength);
53 fLength += sizeof(Entry) + length;
84 SkDescriptor* desc = SkDescriptor::Alloc(fLength);
85 memcpy(desc, this, fLength);
91 // SkASSERT(a.fChecksum != b.fChecksum || memcmp(&a, &b, a.fLength) == 0);
99 const uint32_t* stop = (const uint32_t*)((const char*)aa + fLength);
120 uint32_t fLength; // must be second member in class:SkDescriptor
125 size_t len = desc->fLength
[all...]
H A DSkString.cpp218 rec->fLength = SkToU32(len);
238 SkASSERT(0 == gEmptyRec.fLength);
243 SkASSERT(fRec->fLength > 0);
245 SkASSERT(0 == fRec->data()[fRec->fLength]);
294 if (fRec->fLength) {
313 return fRec->fLength == len && !memcmp(fRec->data(), text, len);
338 if (fRec->fLength) {
354 if (fRec->fLength) {
356 Rec* rec = AllocRec(fRec->data(), fRec->fLength);
381 } else if (1 == fRec->fRefCnt && len <= fRec->fLength) {
[all...]
/external/skia/src/core/
H A DSkDescriptor.h34 fLength = sizeof(SkDescriptor);
38 uint32_t getLength() const { return fLength; }
45 Entry* entry = (Entry*)((char*)this + fLength);
53 fLength += sizeof(Entry) + length;
84 SkDescriptor* desc = SkDescriptor::Alloc(fLength);
85 memcpy(desc, this, fLength);
91 // SkASSERT(a.fChecksum != b.fChecksum || memcmp(&a, &b, a.fLength) == 0);
99 const uint32_t* stop = (const uint32_t*)((const char*)aa + fLength);
120 uint32_t fLength; // must be second member in class:SkDescriptor
125 size_t len = desc->fLength
[all...]
H A DSkString.cpp218 rec->fLength = SkToU32(len);
238 SkASSERT(0 == gEmptyRec.fLength);
243 SkASSERT(fRec->fLength > 0);
245 SkASSERT(0 == fRec->data()[fRec->fLength]);
294 if (fRec->fLength) {
313 return fRec->fLength == len && !memcmp(fRec->data(), text, len);
338 if (fRec->fLength) {
354 if (fRec->fLength) {
356 Rec* rec = AllocRec(fRec->data(), fRec->fLength);
381 } else if (1 == fRec->fRefCnt && len <= fRec->fLength) {
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkBase64.h34 size_t fLength; member in struct:SkBase64
H A DSkBase64.cpp29 SkBase64::SkBase64() : fLength((size_t) -1), fData(NULL) {
104 fLength = dst - dstStart;
161 fData = new char[fLength]; // should use sk_malloc/sk_free
H A DSkFrontBufferedStream.cpp29 virtual size_t getLength() const SK_OVERRIDE { return fLength; }
36 const size_t fLength; member in class:FrontBufferedStream
76 , fLength(stream->getLength() - stream->getPosition())
/external/skia/src/utils/
H A DSkBase64.h34 size_t fLength; member in struct:SkBase64
H A DSkBase64.cpp29 SkBase64::SkBase64() : fLength((size_t) -1), fData(NULL) {
104 fLength = dst - dstStart;
161 fData = new char[fLength]; // should use sk_malloc/sk_free
H A DSkFrontBufferedStream.cpp29 virtual size_t getLength() const SK_OVERRIDE { return fLength; }
36 const size_t fLength; member in class:FrontBufferedStream
76 , fLength(stream->getLength() - stream->getPosition())
/external/chromium_org/third_party/skia/src/utils/ios/
H A DSkOSFile_iOS.mm15 size_t fLength;
52 rec->fLength = [data length];
60 return rec->fLength;
71 return rec->fLength;
73 size_t remaining = rec->fLength - rec->fOffset;
79 SkASSERT(rec->fOffset <= rec->fLength);
/external/skia/src/utils/ios/
H A DSkOSFile_iOS.mm15 size_t fLength;
52 rec->fLength = [data length];
60 return rec->fLength;
71 return rec->fLength;
73 size_t remaining = rec->fLength - rec->fOffset;
79 SkASSERT(rec->fOffset <= rec->fLength);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawPath.cpp38 fLength = SK_ScalarNaN;
64 fLength = SK_ScalarNaN;
137 if (SkScalarIsNaN(fLength)) {
140 fLength = pathMeasure.getLength();
143 value->fOperand.fScalar = fLength;
H A DSkDrawPath.h44 mutable SkScalar fLength; member in class:SkDrawPath
/external/skia/src/animator/
H A DSkDrawPath.cpp38 fLength = SK_ScalarNaN;
64 fLength = SK_ScalarNaN;
137 if (SkScalarIsNaN(fLength)) {
140 fLength = pathMeasure.getLength();
143 value->fOperand.fScalar = fLength;
/external/chromium_org/third_party/icu/source/common/
H A Drbbidata.cpp161 if (fHeader->fLength != other.fHeader->fLength) {
164 if (uprv_memcmp(fHeader, other.fHeader, fHeader->fLength) == 0) {
249 RBBIDebugPrintf(" total length of data = %d\n", fHeader->fLength);
326 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader))
336 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength);
/external/icu/icu4c/source/common/
H A Drbbidata.cpp161 if (fHeader->fLength != other.fHeader->fLength) {
164 if (uprv_memcmp(fHeader, other.fHeader, fHeader->fLength) == 0) {
249 RBBIDebugPrintf(" total length of data = %d\n", fHeader->fLength);
326 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader))
336 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength);
/external/chromium_org/third_party/skia/include/core/
H A DSkTSearch.h132 size_t length() const { return fLength; }
136 size_t fLength; member in class:SkAutoAsciiToLC
H A DSkPathMeasure.h83 SkScalar fLength; // relative to the current contour member in class:SkPathMeasure
/external/skia/include/core/
H A DSkTSearch.h132 size_t length() const { return fLength; }
136 size_t fLength; member in class:SkAutoAsciiToLC

Completed in 964 milliseconds

1234