/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/ |
D | DebugInstructionIterator.java | 51 startDebugOffset = in.getCursor(); in IterateInstructions() 63 … processDebugInstruction.ProcessAdvancePC(startDebugOffset, in.getCursor() - startDebugOffset, in IterateInstructions() 70 … processDebugInstruction.ProcessAdvanceLine(startDebugOffset, in.getCursor() - startDebugOffset, in IterateInstructions() 84 … processDebugInstruction.ProcessStartLocal(startDebugOffset, in.getCursor() - startDebugOffset, in IterateInstructions() 100 … in.getCursor() - startDebugOffset, registerNum, nameIndex, typeIndex, signatureIndex, in IterateInstructions() 112 … processDebugInstruction.ProcessEndLocal(startDebugOffset, in.getCursor() - startDebugOffset, in IterateInstructions() 124 … processDebugInstruction.ProcessRestartLocal(startDebugOffset, in.getCursor() - startDebugOffset, in IterateInstructions() 141 … processDebugInstruction.ProcessSetFile(startDebugOffset, in.getCursor() - startDebugOffset, in IterateInstructions() 174 startDebugOffset = in.getCursor(); in DecodeInstructions() 201 in.getCursor() - startDebugOffset, registerNum, name, type); in DecodeInstructions() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | DebugInfoEncoder.java | 372 int mark = output.getCursor(); in emitHeader() 382 annotate(output.getCursor() - mark, "line_start: " + line); in emitHeader() 405 mark = output.getCursor(); in emitHeader() 409 annotate(output.getCursor() - mark, in emitHeader() 421 mark = output.getCursor(); in emitHeader() 455 annotate(output.getCursor() - mark, in emitHeader() 614 int mark = output.getCursor(); in emitLocalRestart() 620 annotate(output.getCursor() - mark, in emitLocalRestart() 690 int mark = output.getCursor(); in emitLocalStart() 699 annotate(output.getCursor() - mark, in emitLocalStart() [all …]
|
D | DexFile.java | 566 int zeroCount = one.getFileOffset() - out.getCursor(); in toDex0() 571 out.writeZeroes(one.getFileOffset() - out.getCursor()); in toDex0() 585 if (out.getCursor() != fileSize) { in toDex0()
|
D | Section.java | 150 int cursor = out.getCursor(); in writeTo()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
D | closebrackets.js | 32 var cur = cm.getCursor(), around = charsAround(cm, cur); 47 var cur = cm.getCursor(), ahead = cm.getRange(cur, CodeMirror.Pos(cur.line, cur.ch + 1)); 52 if (left == "'" && cm.getTokenAt(cm.getCursor()).type == "comment") 56 var cur = cm.getCursor(), ahead = CodeMirror.Pos(cur.line, cur.ch + 1); 72 var cur = cm.getCursor(), around = charsAround(cm, cur);
|
D | markselection.js | 66 var from = cm.getCursor("start"), to = cm.getCursor("end"); 71 var from = cm.getCursor("start"), to = cm.getCursor("end");
|
D | comment.js | 14 var from = cm.getCursor("start"), to = cm.getCursor("end");
|
D | matchbrackets.js | 12 var cur = where || cm.getCursor(), line = cm.getLineHandle(cur.line), pos = cur.ch - 1;
|
/external/clang/tools/libclang/ |
D | IndexingContext.cpp | 386 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleFunction() 392 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleVar() 398 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleField() 404 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleMSProperty() 410 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleEnumerator() 419 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleTagDecl() 425 return handleDecl(D, D->getLocation(), getCursor(D), DInfo); in handleTypedefName() 472 return handleObjCContainer(D, D->getLocation(), getCursor(D), InterInfo); in handleObjCInterface() 480 return handleObjCContainer(D, D->getLocation(), getCursor(D), ContDInfo); in handleObjCImplementation() 509 return handleObjCContainer(D, D->getLocation(), getCursor(D), ProtInfo); in handleObjCProtocol() [all …]
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
D | Item.java | 72 assert AlignmentUtils.isAligned(in.getCursor(), getItemType().ItemAlignment); in readFrom() 74 this.offset = in.getCursor(); in readFrom() 110 assert out.getCursor() == offset; in writeTo()
|
D | CodeItem.java | 168 int triesOffset = in.getCursor(); in readItem() 172 int encodedHandlerStart = in.getCursor(); in readItem() 178 int position = in.getCursor() - encodedHandlerStart; in readItem() 185 int codeItemEnd = in.getCursor(); in readItem()
|
D | Section.java | 140 offset = in.getCursor(); in readFrom()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | CodeMirrorTextEditor.js | 197 var cur = codeMirror.getCursor("start"); 212 var cursor = codemirror.getCursor("start"); 220 var cursor = codemirror.getCursor("start"); 293 var pos = codeMirror.getCursor("head"); 294 … codeMirror.replaceRange(indent.substring(pos.ch % indent.length), codeMirror.getCursor()); 972 var start = this._codeMirror.getCursor("anchor"); 973 var end = this._codeMirror.getCursor("head"); 1029 var start = this._codeMirror.getCursor("anchor"); 1030 var end = this._codeMirror.getCursor("head"); 1227 var selectionStart = this._codeMirror.getCursor("start"); [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | CursorAdapterTest.java | 65 assertThat(adapter.getCursor(), notNullValue()); in testChangeCursor() 66 assertThat(adapter.getCursor(), sameInstance(curs)); in testChangeCursor() 71 assertThat(adapter.getCursor(), nullValue() ); in testChangeCursor()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | Input.java | 39 public int getCursor(); in getCursor() method
|
D | Output.java | 43 public int getCursor(); in getCursor() method
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
D | Output.java | 31 public int getCursor(); in getCursor() method
|
D | ByteArray.java | 285 public int getCursor(); in getCursor() method
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | DalvInsnList.java | 126 int startCursor = out.getCursor(); in writeTo() 163 int written = (out.getCursor() - startCursor) / 2; in writeTo()
|
/external/llvm/lib/IR/ |
D | GCOV.cpp | 139 uint32_t Size = Buff.getCursor() + LineTableLength*4; in read() 144 while (Buff.getCursor() != (Size - 4)) { in read() 146 if (Buff.getCursor() == (Size - 4)) break; in read()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderWidget.h | 59 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
|
D | RenderWidget.cpp | 366 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor) const in getCursor() function in WebCore::RenderWidget 372 return RenderReplaced::getCursor(point, cursor); in getCursor()
|
D | RenderFrameSet.h | 106 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
D | FlyoutControlComposite.java | 437 } else if (getCursor() == ICursorConstants.SIZEWE || getCursor() == ICursorConstants.SIZENS) { in handle_mouseDown() 439 } else if (getCursor() == ICursorConstants.SIZEALL) { in handle_mouseDown() 521 if (getCursor() == null) { in handle_mouseMove()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowContentResolver.java | 124 TestCursor returnCursor = getCursor(uri); 334 private TestCursor getCursor(Uri uri) {
|