Searched refs:getOffset (Results 1 - 25 of 222) sorted by last modified time

123456789

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DISO8601Converter.java360 int offset = dateTime.getTimeZone().getOffset(timeInMillis);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp3198 if (subscript == expectedSubscript && baseValue.isCell() && (baseValue.asCell()->structure() == it->cachedStructure()) && it->getOffset(index, offset)) {
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSPropertyNameIterator.h57 bool getOffset(size_t i, int& offset) function in class:JSC::JSPropertyNameIterator
/external/skia/gm/
H A Dgmmain.cpp484 int streamSize = storage.getOffset();
/external/skia/include/core/
H A DSkStream.h290 // modifies stream and returns true if offset + size is less than or equal to getOffset()
293 size_t getOffset() const { return fBytesWritten; } function in class:SkDynamicMemoryWStream
/external/skia/samplecode/
H A DSampleShapes.cpp100 SkMemoryStream istream(ostream.getStream(), ostream.getOffset());
/external/skia/src/animator/
H A DSkScriptTokenizer.cpp460 return fActiveStream->getOffset();
746 if (fStream.getOffset() > 0) {
/external/skia/src/pdf/
H A DSkPDFCatalog.cpp58 return buffer.getOffset();
H A DSkPDFDevice.cpp1270 if (lastContentEntry && lastContentEntry->fContent.getOffset() == 0) {
1366 if (!contentEntries || contentEntries->fContent.getOffset() == 0) {
H A DSkPDFDocument.cpp240 return buffer.getOffset();
H A DSkPDFStream.cpp95 if (compressedData.getOffset() < fData->getLength()) {
H A DSkPDFTypes.cpp32 return buffer.getOffset();
/external/skia/src/pipe/
H A DSkGPipeWrite.cpp62 size_t size = stream.getOffset();
/external/skia/src/utils/
H A DSkParsePath.cpp240 str->resize(stream.getOffset());
/external/skia/tests/
H A DFlateTest.cpp60 REPORTER_ASSERT(reporter, compressed.getOffset() < 1024);
62 REPORTER_ASSERT(reporter, compressed.getOffset() > 1024);
81 REPORTER_ASSERT(reporter, testData.getLength() == uncompressed.getOffset());
H A DPDFPrimitivesTest.cpp62 REPORTER_ASSERT(reporter, directSize == buffer.getOffset());
81 REPORTER_ASSERT(reporter, indirectSize == buffer.getOffset());
194 REPORTER_ASSERT(reporter, buffer.getOffset() == strlen(expectedResult));
196 buffer.getOffset()));
230 REPORTER_ASSERT(reporter, buffer.getOffset() == strlen(expectedResult));
232 buffer.getOffset()));
H A DStreamTest.cpp83 REPORTER_ASSERT(reporter, ds.getOffset() == 100 * 26);
H A DToUnicode.cpp92 buffer.getOffset()));
129 buffer2.getOffset()));
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationDirectoryItem.java230 out.annotate(4, "class_annotations_off: 0x" + Integer.toHexString(classAnnotations.getOffset()));
254 out.annotate(4, "annotations_off: 0x" + Integer.toHexString(fieldAnnotations[i].getOffset()));
265 out.annotate(4, "annotations_off: 0x" + Integer.toHexString(methodAnnotations[i].getOffset()));
276 out.annotate(4, "annotations_off: 0x" + Integer.toHexString(parameterAnnotations[i].getOffset()));
281 out.writeInt(classAnnotations==null?0:classAnnotations.getOffset());
289 out.writeInt(fieldAnnotations[i].getOffset());
296 out.writeInt(methodAnnotations[i].getOffset());
303 out.writeInt(parameterAnnotations[i].getOffset());
316 return "annotation_directory_item @0x" + Integer.toHexString(getOffset());
318 return "annotation_directory_item @0x" + Integer.toHexString(getOffset())
[all...]
H A DAnnotationItem.java107 return "annotation_item @0x" + Integer.toHexString(getOffset());
H A DAnnotationSetItem.java114 out.annotate(4, "annotation_off: 0x" + Integer.toHexString(annotationItem.getOffset()) + " - " +
120 out.writeInt(annotationItem.getOffset());
131 return "annotation_set_item @0x" + Integer.toHexString(getOffset());
H A DAnnotationSetRefList.java95 out.annotate(4, "annotation_set_off: 0x" + Integer.toHexString(annotationSetItem.getOffset()));
100 out.writeInt(annotationSetItem.getOffset());
111 return "annotation_set_item @0x" + Integer.toHexString(getOffset());
H A DClassDataItem.java291 return "class_data_item @0x" + Integer.toHexString(getOffset());
293 return "class_data_item @0x" + Integer.toHexString(getOffset()) + " (" + parent.getClassType() +")";
568 out.annotate("code_off: 0x" + Integer.toHexString(codeItem.getOffset()));
569 out.writeUnsignedLeb128(codeItem.getOffset());
577 out.writeUnsignedLeb128(codeItem==null?0:codeItem.getOffset());
594 offset += codeItem==null?1:Leb128Utils.unsignedLeb128Size(codeItem.getOffset());
H A DClassDefItem.java205 (annotations==null?"":"0x"+Integer.toHexString(annotations.getOffset())));
207 (classData==null?"":"0x"+Integer.toHexString(classData.getOffset())));
209 (staticFieldInitializers==null?"":"0x"+Integer.toHexString(staticFieldInitializers.getOffset())));
214 out.writeInt(implementedInterfaces==null?0:implementedInterfaces.getOffset());
216 out.writeInt(annotations==null?0:annotations.getOffset());
217 out.writeInt(classData==null?0:classData.getOffset());
218 out.writeInt(staticFieldInitializers==null?0:staticFieldInitializers.getOffset());
236 return this.getOffset() - o.getOffset();
327 if (classDefItem.getOffset()
[all...]
H A DCodeItem.java237 out.annotate(4, "debug_info_off: 0x" + Integer.toHexString(debugInfo.getOffset()));
254 out.writeInt(debugInfo.getOffset());
316 return "code_item @0x" + Integer.toHexString(getOffset());
318 return "code_item @0x" + Integer.toHexString(getOffset()) + " (" + parent.method.getMethodString() + ")";

Completed in 276 milliseconds

123456789