Home
last modified time | relevance | path

Searched refs:getCursor (Results 1 – 25 of 42) sorted by relevance

12

/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
DDebugInstructionIterator.java51 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/
DDebugInfoEncoder.java372 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 …]
DDexFile.java566 int zeroCount = one.getFileOffset() - out.getCursor(); in toDex0()
571 out.writeZeroes(one.getFileOffset() - out.getCursor()); in toDex0()
585 if (out.getCursor() != fileSize) { in toDex0()
DSection.java150 int cursor = out.getCursor(); in writeTo()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dclosebrackets.js32 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);
Dmarkselection.js66 var from = cm.getCursor("start"), to = cm.getCursor("end");
71 var from = cm.getCursor("start"), to = cm.getCursor("end");
Dcomment.js14 var from = cm.getCursor("start"), to = cm.getCursor("end");
Dmatchbrackets.js12 var cur = where || cm.getCursor(), line = cm.getLineHandle(cur.line), pos = cur.ch - 1;
/external/clang/tools/libclang/
DIndexingContext.cpp386 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/
DItem.java72 assert AlignmentUtils.isAligned(in.getCursor(), getItemType().ItemAlignment); in readFrom()
74 this.offset = in.getCursor(); in readFrom()
110 assert out.getCursor() == offset; in writeTo()
DCodeItem.java168 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()
DSection.java140 offset = in.getCursor(); in readFrom()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DCodeMirrorTextEditor.js197 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/
DCursorAdapterTest.java65 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/
DInput.java39 public int getCursor(); in getCursor() method
DOutput.java43 public int getCursor(); in getCursor() method
/external/dexmaker/src/dx/java/com/android/dx/util/
DOutput.java31 public int getCursor(); in getCursor() method
DByteArray.java285 public int getCursor(); in getCursor() method
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DDalvInsnList.java126 int startCursor = out.getCursor(); in writeTo()
163 int written = (out.getCursor() - startCursor) / 2; in writeTo()
/external/llvm/lib/IR/
DGCOV.cpp139 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/
DRenderWidget.h59 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
DRenderWidget.cpp366 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor) const in getCursor() function in WebCore::RenderWidget
372 return RenderReplaced::getCursor(point, cursor); in getCursor()
DRenderFrameSet.h106 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
DFlyoutControlComposite.java437 } 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/
DShadowContentResolver.java124 TestCursor returnCursor = getCursor(uri);
334 private TestCursor getCursor(Uri uri) {

12