Searched refs:getCursor (Results 1 - 25 of 48) sorted by relevance

12

/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DInput.java39 public int getCursor(); method in interface:Input
52 * @throws RuntimeException thrown if <code>getCursor() !=
H A DOutput.java43 public int getCursor(); method in interface:Output
49 * @throws RuntimeException thrown if <code>getCursor() !=
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DOutput.java31 public int getCursor(); method in interface:Output
37 * @throws RuntimeException thrown if {@code getCursor() !=
H A DByteArray.java285 public int getCursor(); method in interface:ByteArray.GetCursor
/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
H A DDebugInstructionIterator.java51 startDebugOffset = in.getCursor();
63 processDebugInstruction.ProcessAdvancePC(startDebugOffset, in.getCursor() - startDebugOffset,
70 processDebugInstruction.ProcessAdvanceLine(startDebugOffset, in.getCursor() - startDebugOffset,
84 processDebugInstruction.ProcessStartLocal(startDebugOffset, in.getCursor() - startDebugOffset,
100 in.getCursor() - startDebugOffset, registerNum, nameIndex, typeIndex, signatureIndex,
112 processDebugInstruction.ProcessEndLocal(startDebugOffset, in.getCursor() - startDebugOffset,
124 processDebugInstruction.ProcessRestartLocal(startDebugOffset, in.getCursor() - startDebugOffset,
141 processDebugInstruction.ProcessSetFile(startDebugOffset, in.getCursor() - startDebugOffset,
174 startDebugOffset = in.getCursor();
201 in.getCursor()
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DItem.java72 assert AlignmentUtils.isAligned(in.getCursor(), getItemType().ItemAlignment);
74 this.offset = in.getCursor();
110 assert out.getCursor() == offset;
H A DSection.java140 offset = in.getCursor();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A 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);
H A Dmarkselection.js66 var from = cm.getCursor("start"), to = cm.getCursor("end");
71 var from = cm.getCursor("start"), to = cm.getCursor("end");
H A Dmatchbrackets.js12 var cur = where || cm.getCursor(), line = cm.getLineHandle(cur.line), pos = cur.ch - 1;
H A Dcomment.js14 var from = cm.getCursor("start"), to = cm.getCursor("end");
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoEncoder.java372 int mark = output.getCursor();
382 annotate(output.getCursor() - mark, "line_start: " + line);
405 mark = output.getCursor();
409 annotate(output.getCursor() - mark,
421 mark = output.getCursor();
455 annotate(output.getCursor() - mark,
614 int mark = output.getCursor();
620 annotate(output.getCursor() - mark,
690 int mark = output.getCursor();
699 annotate(output.getCursor()
[all...]
H A DSection.java150 int cursor = out.getCursor();
H A DDexFile.java566 int zeroCount = one.getFileOffset() - out.getCursor();
571 out.writeZeroes(one.getFileOffset() - out.getCursor());
585 if (out.getCursor() != fileSize) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCursorAdapterTest.java65 assertThat(adapter.getCursor(), notNullValue());
66 assertThat(adapter.getCursor(), sameInstance(curs));
71 assertThat(adapter.getCursor(), nullValue() );
/external/clang/tools/libclang/
H A DIndexingContext.cpp386 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
392 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
398 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
404 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
410 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
419 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
425 return handleDecl(D, D->getLocation(), getCursor(D), DInfo);
472 return handleObjCContainer(D, D->getLocation(), getCursor(D), InterInfo);
480 return handleObjCContainer(D, D->getLocation(), getCursor(D), ContDInfo);
509 return handleObjCContainer(D, D->getLocation(), getCursor(
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCodeMirrorTextEditor.js195 var cur = codeMirror.getCursor("start");
210 var cursor = codemirror.getCursor("start");
218 var cursor = codemirror.getCursor("start");
286 var pos = codeMirror.getCursor("head");
287 codeMirror.replaceRange(indent.substring(pos.ch % indent.length), codeMirror.getCursor());
1005 var start = this._codeMirror.getCursor("anchor");
1006 var end = this._codeMirror.getCursor("head");
1062 var start = this._codeMirror.getCursor("anchor");
1063 var end = this._codeMirror.getCursor("head");
1260 var selectionStart = this._codeMirror.getCursor("star
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvInsnList.java126 int startCursor = out.getCursor();
163 int written = (out.getCursor() - startCursor) / 2;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderWidget.h84 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
H A DRenderFrameSet.h106 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
H A DRenderWidget.cpp375 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor) const function in class:WebCore::RenderWidget
381 return RenderReplaced::getCursor(point, cursor);
/external/llvm/lib/IR/
H A DGCOV.cpp139 uint32_t Size = Buff.getCursor() + LineTableLength*4;
144 while (Buff.getCursor() != (Size - 4)) {
146 if (Buff.getCursor() == (Size - 4)) break;
/external/llvm/include/llvm/Support/
H A DGCOV.h151 uint64_t getCursor() const { return Cursor; } function in class:llvm::GCOVBuffer
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCursorAdapter.java163 public Cursor getCursor() { method in class:ShadowCursorAdapter
H A DShadowContentResolver.java124 TestCursor returnCursor = getCursor(uri);
334 private TestCursor getCursor(Uri uri) { method in class:ShadowContentResolver

Completed in 444 milliseconds

12