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

  /development/samples/SpinnerTest/src/com/android/example/spinner/test/
SpinnerActivityTest.java 270 String currentSelection = mActivity.getSpinnerSelection();
276 assertEquals(TEST_STATE_DESTROY_SELECTION, currentSelection);
337 String currentSelection = mActivity.getSpinnerSelection();
340 assertEquals(TEST_STATE_PAUSE_SELECTION,currentSelection);
  /external/webkit/Source/WebCore/editing/
InsertListCommand.h 57 void doApplyForSingleParagraph(bool forceCreateList, const QualifiedName&, Range* currentSelection);
InsertListCommand.cpp 138 RefPtr<Range> currentSelection = endingSelection().firstRange();
156 doApplyForSingleParagraph(forceCreateList, listTag, currentSelection.get());
178 doApplyForSingleParagraph(forceCreateList, listTag, currentSelection.get());
189 void InsertListCommand::doApplyForSingleParagraph(bool forceCreateList, const QualifiedName& listTag, Range* currentSelection)
213 if (switchListType && isNodeVisiblyContainedWithin(listNode.get(), currentSelection)) {
214 bool rangeStartIsInList = visiblePositionBeforeNode(listNode.get()) == currentSelection->startPosition();
215 bool rangeEndIsInList = visiblePositionAfterNode(listNode.get()) == currentSelection->endPosition();
237 currentSelection->setStart(newList, 0, ec);
239 currentSelection->setEnd(newList, lastOffsetInNode(newList.get()), ec);
TypingCommand.cpp 143 VisibleSelection currentSelection = frame->selection()->selection();
144 if (currentSelection == typingCommand->endingSelection())
147 typingCommand->setStartingSelection(currentSelection);
148 typingCommand->setEndingSelection(currentSelection);
172 VisibleSelection currentSelection = frame->selection()->selection();
173 bool changeSelection = currentSelection != selectionForInsertion;
213 cmd->setEndingSelection(currentSelection);
214 frame->selection()->setSelection(currentSelection);
SpellingCorrectionController.cpp 119 VisibleSelection currentSelection(m_frame->selection()->selection());
120 if (currentSelection == oldSelection)
369 VisibleSelection currentSelection(m_frame->selection()->selection());
374 if (!currentSelection.isCaret() || currentSelection == oldSelection)
377 VisiblePosition selectionPosition = currentSelection.start();
  /frameworks/base/core/tests/coretests/src/android/widget/
AutoCompleteTextViewPopup.java 242 int currentSelection = ListView.INVALID_POSITION;
244 currentSelection = textView.getListSelection();
245 if (expected == currentSelection) {
  /external/webkit/Source/WebKit/mac/WebView/
WebPDFView.mm 492 return [PDFSubview currentSelection] != nil;
526 [NSPasteboard _web_setFindPasteboardString:[[PDFSubview currentSelection] string] withOwner:self];
606 PDFSelection *selection = [self _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[PDFSubview currentSelection] startInSelection:startInSelection];
716 PDFSelection *savedSelection = [[PDFSubview currentSelection] copy];
718 NSAttributedString *result = [[PDFSubview currentSelection] attributedString];
735 return [[PDFSubview currentSelection] string];
740 return [self _scaledAttributedString:[[PDFSubview currentSelection] attributedString]];
849 PDFSelection *selection = [PDFSubview currentSelection];
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 790 ISelection currentSelection = outline.getSelection();
791 if (currentSelection == null || !currentSelection.equals(newSelection)) {
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageGallery.java 236 int currentSelection = mGvs.getCurrentSelection();
237 if (currentSelection < 0
238 || currentSelection >= mAllImages.getCount()) {
241 return mAllImages.getImageAt(currentSelection);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.mm 611 PDFSelection *selection = [m_wkPDFView.get() _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[m_pdfView currentSelection] startInSelection:NO];

Completed in 598 milliseconds