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

  /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/Contacts/tests/src/com/android/contacts/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/Contacts/src/com/android/contacts/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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 67 int replacementLength, int cursorPosition, Image image, String displayString,
72 assert cursorPosition >= 0;
76 mCursorPosition = cursorPosition;
AndroidContentAssist.java 631 int cursorPosition;
636 cursorPosition = keyword.length() + suffix.length() - 1;
640 cursorPosition = keyword.length();
646 cursorPosition++;
658 cursorPosition, // cursorPosition
    [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 41 * @param cursorPosition offset into output at which cursor is located, or -1 if
58 int32_t cursorPosition, int32_t cursorOffset,
93 if (cursorPosition < 0) {
94 cursorPosition = outputStr.length();
95 } else if (cursorPosition > outputStr.length()) {
150 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);
  /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 593 int cursorPosition = info.dayAdapter.getCursorPosition(positionInAdapter - info.offset);
594 if (cursorPosition == Integer.MIN_VALUE) {
599 if (cursorPosition < 0) {
600 cursorPosition = -cursorPosition;
604 if (cursorPosition < info.cursor.getCount()) {
605 EventInfo ei = buildEventInfoFromCursor(info.cursor, cursorPosition, isDayHeader);
615 private EventInfo buildEventInfoFromCursor(final Cursor cursor, int cursorPosition,
617 if (cursorPosition == -1) {
620 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/tools/common/eclipse/
org.eclipse.jface_3.6.2.M20110210-1200.jar 
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]

Completed in 1554 milliseconds