/external/chromium_org/ui/views/controls/table/ |
table_view_observer.h | 15 // TableViewObserver is notified about the TableView selection. 20 // Invoked when the selection changes.
|
/external/clang/test/Sema/ |
nowarn-documentation-property.m | 7 /// It is an AND of the parent's `prefixPredicate` (e.g., the selection for 8 /// volume number) and the `filterPredicate` (selection by matching the name).
|
/external/llvm/lib/MC/ |
MCSectionCOFF.cpp | 31 void MCSectionCOFF::setSelection(int Selection, 33 assert(Selection != 0 && "invalid COMDAT selection type"); 34 assert((Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) == 37 this->Selection = Selection; 64 switch (Selection) { 87 assert (0 && "unsupported COFF selection type");
|
/frameworks/base/core/java/com/android/internal/content/ |
SelectionBuilder.java | 27 * Helper for building selection clauses for {@link SQLiteDatabase}. Each 47 * Append the given selection clause to the internal state. Each clause is 50 public SelectionBuilder append(String selection, Object... selectionArgs) { 51 if (TextUtils.isEmpty(selection)) { 54 "Valid selection required when including arguments"); 65 mSelection.append("(").append(selection).append(")"); 78 * Return selection string for current internal state. 87 * Return selection arguments for current internal state.
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ProfileProvider.java | 76 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 78 return query(uri, projection, selection, selectionArgs, sortOrder, null); 82 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 85 return mDelegate.queryLocal(uri, projection, selection, selectionArgs, sortOrder, -1, 97 protected int updateInTransaction(Uri uri, ContentValues values, String selection, 101 return mDelegate.updateInTransaction(uri, values, selection, selectionArgs); 105 protected int deleteInTransaction(Uri uri, String selection, String[] selectionArgs) { 108 return mDelegate.deleteInTransaction(uri, selection, selectionArgs);
|
/frameworks/base/core/java/android/text/ |
Selection.java | 24 * A cursor is a selection where the start and end are at the same offset. 26 public class Selection { 27 private Selection() { /* cannot be instantiated */ } 30 * Retrieving the selection 34 * Return the offset of the selection anchor or cursor, or -1 if 35 * there is no selection or cursor. 45 * Return the offset of the selection edge or cursor, or -1 if 46 * there is no selection or cursor. 56 * Setting the selection 64 * Set the selection anchor to <code>start</code> and the selection edg [all...] |
/external/chromium-trace/trace-viewer/src/tracing/ |
selection_test.js | 10 base.require('tracing.selection'); 13 base.unittest.testSuite('tracing.selection', function() { 23 var sel = new tracing.Selection(); 51 var sel = new tracing.Selection();
|
/external/chromium_org/chrome/renderer/extensions/ |
OWNERS | 1 # Extension and apps team owners. Use file history to guide reviewer selection
|
/external/chromium_org/extensions/ |
OWNERS | 1 # Extension and apps team owners. Use file history to guide reviewer selection
|
/external/chromium_org/ui/base/clipboard/ |
clipboard_types.h | 11 // Only platforms that use the X Window System support the selection buffer.
|
/external/chromium_org/ui/base/ime/ |
composition_text.cc | 18 selection = gfx::Range();
|
/external/chromium_org/ui/keyboard/ |
keyboard_switches.cc | 10 const char kEnableSwipeSelection[] = "enable-swipe-selection";
|
/external/smack/src/org/apache/harmony/javax/security/auth/callback/ |
ConfirmationCallback.java | 60 private int selection; field in class:ConfirmationCallback 203 return selection; 206 public void setSelectedIndex(int selection) { 208 if (0 <= selection && selection <= options.length) { 209 this.selection = selection; 216 if (selection != YES && selection != NO) { 221 if (selection != YES && selection != NO && selection != CANCEL) [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationSetObserver.java | 29 // implementation, the observers can wreck the selection set unknowingly!! 32 * Called when the selection set becomes empty. 37 * Handle when the selection set is populated with some items. The observer should not make any 43 * Handle when the selection set gets an element added or removed. The observer should not
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/ |
preview_panel.js | 90 * Sequence value that is incremented by every selection update and is used to 122 // Preview panel shows when the selection property are set. 188 * Apply the selection and update the view of the preview panel. 189 * @param {FileSelection} selection Selection to be applied. 191 PreviewPanel.prototype.setSelection = function(selection) { 193 this.selection_ = selection; 249 var selection = this.selection_; 252 this.thumbnails.selection = selection.totalCount !== 0 [all...] |
/development/samples/Spinner/ |
_index.html | 8 is first run, the spinner widget displays a default selection of "Earth". 9 Thereafter, the application saves a selection as soon as it 10 is made. The application remembers the selection from invocation to invocation, even
|
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/ |
DisabledProvider.java | 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 47 public int delete(Uri uri, String selection, String[] selectionArgs) { 51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
EnabledProvider.java | 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 47 public int delete(Uri uri, String selection, String[] selectionArgs) { 51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/ |
TestProvider.java | 33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 49 public int delete(Uri uri, String selection, String[] selectionArgs) { 54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
TestReceiver.java | 33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 49 public int delete(Uri uri, String selection, String[] selectionArgs) { 54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/ |
Provider.java | 32 String selection, String[] selectionArgs, 43 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { 47 public int delete(Uri uri, String selection, String[] selectionArgs) {
|
/external/chromium_org/chrome/browser/history/android/ |
android_history_provider_service.h | 66 // |selection| is the SQL WHERE clause without 'WHERE'. 71 const std::string& selection, 81 // |selection| is the SQL WHERE clause without 'WHERE'. 85 const std::string& selection, 93 // |selection| is the SQL WHERE clause without 'WHERE'. 96 // if |selection| is empty all history and bookmarks are deleted. 98 const std::string& selection, 111 Handle DeleteHistory(const std::string& selection, 141 // |selection| is the SQL WHERE clause without 'WHERE'. 144 const std::string& selection, [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
drag_selector.js | 9 * TODO(hirono): Support drag selection for grid view. crbug.com/224832 14 * Target list of drag selection. 63 * Flag that shows whether the item is included in the selection or not. 94 * Starts drag selection by reacting dragstart event. 98 * @param {cr.ui.List} list List where the drag selection starts. 106 // Set the target of the drag selection 124 this.border_.className = 'drag-selection-border'; 132 // If no modifier key is pressed, clear the original selection. 150 // Get the selection bounds. 161 // Collect items within the selection rect [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
ModifySelectionListLevel.cpp | 49 static bool getStartEndListChildren(const VisibleSelection& selection, Node*& start, Node*& end) 51 if (selection.isNone()) 55 Node* startListChild = enclosingListChild(selection.start().anchorNode()); 60 Node* endListChild = selection.isRange() ? enclosingListChild(selection.end().anchorNode()) : startListChild; 64 // For a range selection we want the following behavior: 79 // if the selection ends on a list item with a sublist, include the entire sublist 144 static bool canIncreaseListLevel(const VisibleSelection& selection, Node*& start, Node*& end) 146 if (!getStartEndListChildren(selection, start, end)) 209 return canIncreaseListLevel(document.frame()->selection().selection(), startListChild, endListChild) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
RadioGroup1.java | 54 String selection = getString(R.string.radio_group_selection); local 57 mChoice.setText(selection + mRadioGroup.getCheckedRadioButtonId()); 59 // test clearing the selection 65 String selection = getString(R.string.radio_group_selection); local 67 mChoice.setText(selection +
|