HomeSort by relevance Sort by last modified time
    Searched refs:cursorPosition (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 53 int cursorPosition;
201 protected void addGroup(int cursorPosition, int size, boolean expanded) {
210 long metadata = ((long)size << 32) | cursorPosition;
240 int cursorPosition = 0;
248 count += (offset - cursorPosition);
256 cursorPosition = offset + size;
259 mCount = count + mCursor.getCount() - cursorPosition;
276 int cursorPosition = 0;
311 cursorPosition = (int)(descriptor & GROUP_OFFSET_MASK);
319 cursorPosition = mLastCachedCursorPosition
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogGroupBuilderTest.java 313 private void assertGroupIs(int cursorPosition, int size, boolean expanded, GroupSpec group) {
314 assertEquals(cursorPosition, group.cursorPosition);
322 public final int cursorPosition;
328 public GroupSpec(int cursorPosition, int size, boolean expanded) {
329 this.cursorPosition = cursorPosition;
341 public void addGroup(int cursorPosition, int size, boolean expanded) {
342 groups.add(new GroupSpec(cursorPosition, size, expanded));
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogGroupBuilder.java 33 public void addGroup(int cursorPosition, int size, boolean expanded);
118 private void addGroup(int cursorPosition, int size) {
119 mGroupCreator.addGroup(cursorPosition, size, false);
CallLogAdapter.java 760 public void addGroup(int cursorPosition, int size, boolean expanded) {
761 super.addGroup(cursorPosition, size, expanded);
    [all...]
  /external/icu4c/i18n/
rbt_rule.h 159 * @param cursorPosition offset into output at which cursor is located, or -1 if
183 int32_t cursorPosition, int32_t cursorOffset,
rbt_rule.cpp 42 * @param cursorPosition offset into output at which cursor is located, or -1 if
59 int32_t cursorPosition, int32_t cursorOffset,
94 if (cursorPosition < 0) {
95 cursorPosition = outputStr.length();
96 } else if (cursorPosition > outputStr.length()) {
151 this->output = new StringReplacer(outputStr, cursorPosition + cursorOffset, data);
  /external/webkit/Source/WebCore/dom/
InputElement.cpp 288 static unsigned cursorPositionToMaskIndex(const String& inputFormatMask, unsigned cursorPosition)
300 } while (cursorPosition--);
313 bool InputElement::isConformToInputMask(const InputElementData& data, UChar inChar, unsigned cursorPosition)
320 if (cursorPosition >= data.maxInputCharsAllowed())
323 unsigned maskIndex = cursorPositionToMaskIndex(inputFormatMask, cursorPosition);
  /external/webkit/Source/WebCore/wml/
WMLInputElement.cpp 459 unsigned cursorPosition = 0;
461 cursorPosition = toRenderTextControl(renderer())->selectionStart();
463 cursorPosition = m_data.cachedSelectionStart();
465 maskIndex = cursorPositionToMaskIndex(cursorPosition);
505 unsigned WMLInputElement::cursorPositionToMaskIndex(unsigned cursorPosition)
517 } while (cursorPosition--);
  /frameworks/ex/common/tests/src/com/android/common/widget/
GroupingListAdapterTests.java 302 int cursorPosition) {
309 assertEquals(cursorPosition, metadata.cursorPosition);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 83 int replacementLength, int cursorPosition, Image image, String displayString,
89 assert cursorPosition >= 0;
93 mCursorPosition = cursorPosition;
AndroidContentAssist.java 655 int cursorPosition;
660 cursorPosition = keyword.length() + suffix.length() - 1;
664 cursorPosition = keyword.length();
670 cursorPosition++;
687 cursorPosition, // cursorPosition
    [all...]
  /external/webkit/Source/WebKit/chromium/src/win/
WebInputEventFactory.cpp 343 POINT cursorPosition = {0};
344 GetCursorPos(&cursorPosition);
345 result.globalX = cursorPosition.x;
346 result.globalY = cursorPosition.y;
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp     [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java 602 int cursorPosition = info.dayAdapter.getCursorPosition(positionInAdapter - info.offset);
603 if (cursorPosition == Integer.MIN_VALUE) {
608 if (cursorPosition < 0) {
609 cursorPosition = -cursorPosition;
613 if (cursorPosition < info.cursor.getCount()) {
614 AgendaItem item = buildAgendaItemFromCursor(info.cursor, cursorPosition, isDayHeader);
624 private AgendaItem buildAgendaItemFromCursor(final Cursor cursor, int cursorPosition,
626 if (cursorPosition == -1) {
629 cursor.moveToPosition(cursorPosition);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebPageWin.cpp 331 void WebPage::setComposition(const String& compositionString, const Vector<WebCore::CompositionUnderline>& underlines, uint64_t cursorPosition)
336 frame->editor()->setComposition(compositionString, underlines, cursorPosition, 0);
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 739 * @param cursorPosition The row index of the row we want to get.
747 int cursorPosition, int cursorWindowCapacity) {
748 return Math.max(cursorPosition - cursorWindowCapacity / 3, 0);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 340 void setComposition(const WTF::String& compositionString, const WTF::Vector<WebCore::CompositionUnderline>& underlines, uint64_t cursorPosition);
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java     [all...]
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 599 milliseconds

1 2