Lines Matching refs:fBytes
196 fStr.fBytes = 0; in reset()
241 return fStr.fBytes; in lenstr()
507 obj->fStr.fBytes = 0; in makeEmptyDictionary()
530 return set(key->fStr.fBuffer, key->fStr.fBytes, value); in set()
566 return get(key->fStr.fBuffer, key->fStr.fBytes); in get()
611 return get(key->fStr.fBuffer, key->fStr.fBytes); in get()
732 return fObjectType == kKeyword_PdfObjectType && fStr.fBytes == 1 && fStr.fBuffer[0] == 'R'; in isKeywordReference()
750 if (strlen(keyword) != fStr.fBytes) { in isKeyword()
754 if (strncmp(keyword, (const char*)fStr.fBuffer, fStr.fBytes) != 0) { in isKeyword()
773 fStr.fBytes == strlen(name) && in isName()
774 strncmp((const char*)fStr.fBuffer, name, fStr.fBytes) == 0; in isName()
987 return SkString((const char*)fStr.fBuffer, fStr.fBytes); in nameValue2()
1000 return SkString((const char*)fStr.fBuffer, fStr.fBytes); in stringValue2()
1088 *len = fStr.fBytes >> 2; // last 2 bits - TODO(edisonn): clean up. in GetFilteredStreamRef()
1098 return hasStream() && ((fStr.fBytes & 1) == kFilteredStreamBit); in isStreamFiltered()
1105 return hasStream() && ((fStr.fBytes & 2) == kOwnedStreamBit); in isStreamOwned()
1126 *len = fStr.fBytes >> 2; // remove last 2 bits - TODO(edisonn): clean up. in GetUnfilteredStreamRef()
1144 fStr.fBytes = (len << 2) + kUnfilteredStreamBit; in addStream()
1201 append(&str, (const char*)fStr.fBuffer, fStr.fBytes);
1207 for (unsigned int i = 0 ; i < fStr.fBytes; i++) {
1215 append(&str, (const char*)fStr.fBuffer, fStr.fBytes, "#");
1219 append(&str, (const char*)fStr.fBuffer, fStr.fBytes);
1298 obj->fStr.fBytes = bytes; in makeStringCore()