/packages/apps/Calendar/src/com/android/calendar/ |
GoogleCalendarUriIntentFilter.java | 151 final String selection = Events._SYNC_ID + " LIKE \"%" + syncId + "\" AND " local 154 if (debug) Log.d(TAG, "selection: " + selection); 156 EVENT_PROJECTION, selection, null,
|
Event.java | 290 * that match the given selection. This is a blocking function and 302 * @param selection Filter on the query as an SQL WHERE statement 303 * @param selectionArgs Args to replace any '?'s in the selection 305 * @return A Cursor of instances matching the selection 308 int startDay, int endDay, String selection, String[] selectionArgs, String orderBy) { 316 if (TextUtils.isEmpty(selection)) { 317 selection = WHERE_CALENDARS_SELECTED; 320 selection = "(" + selection + ") AND " + WHERE_CALENDARS_SELECTED; 328 return cr.query(builder.build(), projection, selection, selectionArgs [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SelectionManager.java | 82 * The {@link SelectionManager} manages the selection in the canvas editor. 84 * operations for manipulating the selection - such as toggling items, copying 85 * the selection to the clipboard, etc. 88 * the selection provider from the {@link LayoutCanvasViewer}. 90 * Note that {@link LayoutCanvasViewer} sets a selection change listener on this 92 * selection changes. 98 /** The current selection list. The list is never null, however it can be empty. */ 105 /** Barrier set when updating the selection to prevent from recursively 110 * The <em>current</em> alternate selection, if any, which changes when the Alt key is 111 * used during a selection. Can be null 988 ISelection selection = selectionProvider.getSelection(); local [all...] |
MoveGesture.java | 109 /** Singleton used to keep track of drag selection in the same Eclipse instance. */ 132 // Hide selection overlays during a move drag 142 // Ensure that the outline is back to showing the current selection, since during 439 // defer selection briefly until the view hierarchy etc is up to 468 SelectionItem[] selection = dragInfo.getCurrentSelection(); local 469 if (selection != null) { 470 for (SelectionItem item : selection) { 706 SelectionItem[] selection = mGlobalDragInfo.getCurrentSelection(); local 707 if (selection != null) { 708 for (SelectionItem cs : selection) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
GLTraceCollectorDialog.java | 154 private Button createButton(Composite controlComposite, boolean selection) { 156 b.setText(getToggleActionText(selection)); 157 b.setSelection(selection); 161 /** Get text to show on toggle box given its current selection. */
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
LayoutRenderer.java | 92 Set<?> selection = scene.getSelectedObjects(); local 93 if (selection.size() > 0) { 94 ViewNode node = (ViewNode) selection.iterator().next();
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
EditingStyle.cpp | 704 TriState EditingStyle::triStateOfStyle(const VisibleSelection& selection) const 706 if (!selection.isCaretOrRange()) 709 if (selection.isCaret()) 710 return triStateOfStyle(EditingStyle::styleAtSelectionStart(selection).get()); 714 for (Node* node = selection.start().deprecatedNode(); node; node = NodeTraversal::next(*node)) { 728 if (node == selection.end().deprecatedNode()) [all...] |
FrameSelection.cpp | 143 VisibleSelection selection = r ? VisibleSelection(r->startPosition(), r->endPosition(), affinity) : VisibleSelection(Position(), Position(), affinity); local 144 setSelection(selection, options); 242 document.frame()->selection().setSelection(s, options, align, granularity); 243 // It's possible that during the above set selection, this FrameSelection has been modified by 244 // selectFrameElementInParentIfFullySelected, but that the selection is no longer valid since 245 // the frame is about to be destroyed. If this is the case, clear our selection. 261 // Even if selection was not changed, selection offsets may have been changed. 318 // There can't be a selection inside a fragment, so if a fragment's node is being removed, 319 // the selection in the document that created the fragment needs no adjustment [all...] |
CompositeEditCommand.cpp | 161 void EditCommandComposition::setStartingSelection(const VisibleSelection& selection) 163 m_startingSelection = selection; 164 m_startingRootEditableElement = selection.rootEditableElement(); 167 void EditCommandComposition::setEndingSelection(const VisibleSelection& selection) 169 m_endingSelection = selection; 170 m_endingRootEditableElement = selection.rootEditableElement(); 278 void CompositeEditCommand::applyCommandToComposite(PassRefPtr<CompositeEditCommand> command, const VisibleSelection& selection) 281 if (selection != command->endingSelection()) { 282 command->setStartingSelection(selection); 283 command->setEndingSelection(selection); 734 VisibleSelection selection = endingSelection(); local [all...] |
/external/chromium_org/content/browser/renderer_host/ |
gtk_im_context_wrapper.cc | 462 composition_.selection.start(), 463 composition_.selection.end()); 533 // TODO(suzhe): due to a bug of webkit, we currently can't use selection range 535 composition_.selection = gfx::Range(cursor_position); 556 composition_.text, underlines, composition_.selection.start(), 557 composition_.selection.end());
|
/external/chromium_org/ui/base/ime/ |
input_method_ibus.cc | 614 out_composition->selection = gfx::Range(cursor_offset); 647 // it as the selection range as well, but make sure to set the cursor 648 // position to the selection end. 650 out_composition->selection.set_start(underline.end_offset); 651 out_composition->selection.set_end(cursor_offset); 653 out_composition->selection.set_start(underline.start_offset); 654 out_composition->selection.set_end(cursor_offset);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
PropertySheetPage.java | 117 public void selectionChanged(IWorkbenchPart part, ISelection selection) { 118 if (selection instanceof TreeSelection 120 TreeSelection treeSelection = (TreeSelection) selection; 122 // We get a lot of repeated selection requests for the same selection 276 // Listen on the selection in the property sheet so we can update the 281 StructuredSelection selection = (StructuredSelection) event.getSelection(); 282 mActiveProperty = (Property) selection.getFirstElement();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
StateViewPage.java | 189 public void selectionChanged(IWorkbenchPart part, ISelection selection) { 198 if (!(selection instanceof TreeSelection)) { 204 Object data = ((TreeSelection) selection).getFirstElement(); 369 public void setSelection(ISelection selection) { 370 mTreeViewer.setSelection(selection);
|
/external/chromium/chrome/browser/ui/gtk/ |
collected_cookies_gtk.cc | 329 void CollectedCookiesGtk::ShowSelectionInfo(GtkTreeSelection* selection, 333 GList* paths = gtk_tree_selection_get_selected_rows(selection, &model); 375 GtkTreeSelection* selection, gtk_tree::TreeAdapter* adapter) { 379 gtk_tree_selection_get_selected_rows(selection, &model); 435 void CollectedCookiesGtk::AddExceptions(GtkTreeSelection* selection, 440 gtk_tree_selection_get_selected_rows(selection, &model); 508 void CollectedCookiesGtk::OnTreeViewSelectionChange(GtkWidget* selection) {
|
/external/chromium_org/chrome/browser/history/ |
history_backend.h | 336 const std::string& selection, 343 const std::string& selection, 348 const std::string& selection, 352 const std::string& selection, 371 const std::string& selection, 375 const std::string& selection, 380 const std::string& selection, [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
collected_cookies_gtk.cc | 373 void CollectedCookiesGtk::ShowSelectionInfo(GtkTreeSelection* selection, 377 GList* paths = gtk_tree_selection_get_selected_rows(selection, &model); 407 GtkTreeSelection* selection, gtk_tree::TreeAdapter* adapter) { 411 gtk_tree_selection_get_selected_rows(selection, &model); 465 void CollectedCookiesGtk::AddExceptions(GtkTreeSelection* selection, 470 gtk_tree_selection_get_selected_rows(selection, &model); 540 void CollectedCookiesGtk::OnTreeViewSelectionChange(GtkWidget* selection) {
|
/external/chromium_org/chrome/browser/ui/views/ |
task_manager_view.cc | 524 SelectedIndices selection(tab_table_->selection_model().selected_indices()); 525 for (SelectedIndices::const_reverse_iterator i = selection.rbegin(); 526 i != selection.rend(); ++i) { 602 const ui::ListSelectionModel::SelectedIndices& selection( 605 for (size_t i = 0; i < selection.size(); ++i) { 606 if (task_manager_->IsBrowserProcess(selection[i])) { 612 !selection.empty());
|
/external/chromium_org/ui/gfx/ |
render_text_pango.cc | 146 const SelectionModel& selection, 148 GSList* run = GetRunContainingCaret(selection); 152 if (edge.caret_pos() == selection.caret_pos()) 161 size_t caret = selection.caret_pos(); 186 const SelectionModel& selection, 195 return selection; 197 SelectionModel cur(selection); 402 // Temporarily apply composition underlines and selection colors. 471 // Undo the temporarily applied composition underlines and selection colors.
|
render_text_unittest.cc | 54 return render_text->text().substr(render_text->selection().GetMin(), 55 render_text->selection().length()); 311 SelectionModel selection = render_text->FindCursorPosition(Point(x, 0)); local 312 EXPECT_TRUE(selection.caret_pos() == 0U || selection.caret_pos() == 2U); [all...] |
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/ |
SettingsDialog.java | 65 public void onSelection(int selection); 90 private int selection = 0; field in class:SettingsDialog 169 return selection; 172 private void setUserSelection(int selection) { 173 this.selection = selection; 174 selectionListener.onSelection(selection); 364 * selection as a properties.cfg file. 366 * @return if the selection is valid
|
/frameworks/base/core/java/android/widget/ |
AdapterView.java | 95 * Indicates whether to sync based on the selection or position. Possible 364 * @param parent The AdapterView where the selection happened 372 * Callback method to be invoked when the selection disappears from this 373 * view. The selection can disappear for instance when touch is activated 567 int selection = getSelectedItemPosition(); local 568 if (adapter != null && adapter.getCount() > 0 && selection >= 0) { 569 return adapter.getItem(selection); 890 final int selection = getSelectedItemPosition(); local 891 if (selection >= 0) { 893 mOnItemSelectedListener.onItemSelected(this, v, selection, [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
Helpers.java | 370 * Checks whether this looks like a legitimate selection parameter 372 public static void validateSelection(String selection, Set<String> allowedColumns) { 374 if (selection == null || selection.isEmpty()) { 377 Lexer lexer = new Lexer(selection, allowedColumns); 384 Log.d(Constants.TAG, "invalid selection [" + selection + "] triggered " + ex); 386 Log.d(Constants.TAG, "invalid selection triggered " + ex); 470 public Lexer(String selection, Set<String> allowedColumns) { 471 mSelection = selection; [all...] |
/packages/apps/Calendar/tests/src/com/android/calendar/event/ |
EditEventHelperTest.java | 1267 int selection = EditEventHelper.DOES_NOT_REPEAT; local [all...] |
/external/chromium_org/ui/base/ime/win/ |
tsf_text_store.cc | 547 composition_text.selection.set_start(0); 549 composition_text.selection.set_start( 553 composition_text.selection.set_end(0); 555 composition_text.selection.set_end(selection_.end() - new_committed_size); 658 TS_SELECTION_ACP selection; local 659 selection.acpStart = acp_start; 660 selection.acpEnd = acp_end; 661 selection.style.ase = TS_AE_NONE; 662 selection.style.fInterimChar = 0; 665 ret = SetSelection(1, &selection); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ui.views_3.5.0.I20100527-0800.jar | |