/external/lzma/C/ |
XzIn.c | 141 static SRes Xz_ReadBackward(CXzStream *p, ILookInStream *stream, Int64 *startOffset, ISzAlloc *alloc)
146 if ((*startOffset & 3) != 0 || *startOffset < XZ_STREAM_FOOTER_SIZE)
148 *startOffset = -XZ_STREAM_FOOTER_SIZE;
149 RINOK(SeekFromCur(stream, startOffset));
156 *startOffset += XZ_STREAM_FOOTER_SIZE;
163 if (*startOffset < XZ_STREAM_FOOTER_SIZE || i > (1 << 16))
165 processedSize = (*startOffset > TEMP_BUF_SIZE) ? TEMP_BUF_SIZE : (size_t)*startOffset;
167 *startOffset = -(Int64)processedSize; [all...] |
/external/proguard/src/proguard/classfile/visitor/ |
ExceptionHandlerFilter.java | 37 private final int startOffset; 44 * @param startOffset the start of the instruction offset range. 49 public ExceptionHandlerFilter(int startOffset, 53 this.startOffset = startOffset; 64 if (handlerPC >= startOffset &&
|
ExceptionRangeFilter.java | 37 private final int startOffset; 44 * @param startOffset the start offset of the instruction range. 49 public ExceptionRangeFilter(int startOffset, 53 this.startOffset = startOffset; 63 if (exceptionInfo.isApplicable(startOffset, endOffset))
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
anim1.xml | 9 android:startOffset="1000" 15 android:startOffset="3000"
|
/external/replicaisland/res/anim/ |
fade_in.xml | 6 android:startOffset="5000"
|
horizontal_layer1_slide.xml | 8 android:startOffset="2000"/
|
horizontal_layer2_slide.xml | 8 android:startOffset="2000"/
|
kabocha_game_over.xml | 8 android:startOffset="8000"/
|
rokudou_game_over.xml | 8 android:startOffset="8000"/
|
rokudou_slide_bg.xml | 8 android:startOffset="2000"/
|
rokudou_slide_cliffs.xml | 8 android:startOffset="2000"/
|
rokudou_slide_rokudou.xml | 8 android:startOffset="2000"/
|
rokudou_slide_sphere.xml | 8 android:startOffset="2000"/
|
wanda_game_over.xml | 8 android:startOffset="8000"/
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentMarker.cpp | 108 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset) 110 , m_startOffset(startOffset) 116 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description) 118 , m_startOffset(startOffset) 125 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash) 127 , m_startOffset(startOffset) 134 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch) 136 , m_startOffset(startOffset) 143 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails> details) 145 , m_startOffset(startOffset) [all...] |
DocumentMarkerController.cpp | 68 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description, hash)); 77 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset(), description)); 86 addMarker(textPiece->startContainer(), DocumentMarker(type, textPiece->startOffset(), textPiece->endOffset())); 91 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type) 93 addMarker(node, DocumentMarker(type, startOffset, startOffset + length)); 96 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type, PassRefPtr<DocumentMarkerDetails> details) 98 addMarker(node, DocumentMarker(type, startOffset, startOffset + length, details)); 107 unsigned startOffset = textPiece->startOffset() [all...] |
DocumentMarker.h | 72 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset); 73 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description); 74 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash); 75 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch); 76 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>); 79 unsigned startOffset() const { return m_startOffset; } 98 return type() == o.type() && startOffset() == o.startOffset() && endOffset() == o.endOffset();
|
DocumentMarkerController.h | 54 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType); 55 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType, PassRefPtr<DocumentMarkerDetails>); 58 void copyMarkers(Node* srcNode, unsigned startOffset, int length, Node* dstNode, int delta); 66 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker); 72 void shiftMarkers(Node*, unsigned startOffset, int delta); 74 void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool);
|
/external/lzma/CPP/7zip/Common/ |
LimitedStreams.h | 48 HRESULT InitAndSeek(UInt64 startOffset, UInt64 size)
50 _startOffset = startOffset;
51 _physPos = startOffset;
74 UInt64 StartOffset;
85 _physPos = StartOffset;
88 _physPos = StartOffset + (Vector[0] << BlockSizeLog);
|
/external/chromium_org/third_party/icu/source/test/perf/ubrkperf/ |
ubrkperf.cpp | 90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize; 91 startOffset = 0; 94 while (startOffset < numUniChars) 97 startOffset, &breakOffset); 98 //require_action(status == noErr, EXIT, printf( "**UCFindTextBreak failed: startOffset %d, status %d\n", (int)startOffset, (int)status)); 99 //require_action((breakOffset <= numUniChars),EXIT, printf("**UCFindTextBreak breakOffset too big: startOffset %d, breakOffset %d\n", (int)startOffset, (int)breakOffset)); 106 startOffset = breakOffset; 110 startOffset = 0 [all...] |
/external/icu4c/test/perf/ubrkperf/ |
ubrkperf.cpp | 90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize; 91 startOffset = 0; 94 while (startOffset < numUniChars) 97 startOffset, &breakOffset); 98 //require_action(status == noErr, EXIT, printf( "**UCFindTextBreak failed: startOffset %d, status %d\n", (int)startOffset, (int)status)); 99 //require_action((breakOffset <= numUniChars),EXIT, printf("**UCFindTextBreak breakOffset too big: startOffset %d, breakOffset %d\n", (int)startOffset, (int)breakOffset)); 106 startOffset = breakOffset; 110 startOffset = 0 [all...] |
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_delegate_mac.h | 18 startOffset:(int32)startOffset
|
/frameworks/base/tests/TransitionTests/res/transition/ |
my_transition.xml | 15 <fade android:startOffset="25"/>
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
ExtractedTextTest.java | 31 extractedText.startOffset = 1; 41 assertEquals(extractedText.startOffset, target.startOffset);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAnimation.java | 24 private long startOffset; 98 public void setStartOffset(long startOffset) { 99 this.startOffset = startOffset; 104 return startOffset;
|