/external/chromium_org/third_party/flot/ |
jquery.flot.selection.min.js | 8 selection: { 15 Selection support is enabled by setting the mode to one of "x", "y" or "xy". 17 "y" mode. For "xy", the selection becomes a rectangle where both ranges can be 18 specified. "color" is color of the selection (if you need to change the color 19 later on, you can get to it with plot.getOptions().selection.color). "shape" 20 is the shape of the corners of the selection. 22 "minSize" is the minimum size a selection can be in pixels. This value can 23 be customized to determine the smallest size a selection can be and still 24 have the selection rectangle be displayed. When customizing this value, the 27 minute, setting "minSize" to 1 will not make the minimum selection size [all...] |
/external/chromium_org/third_party/ots/src/ |
os2.cc | 106 !table.ReadU16(&os2->selection) || 118 if (os2->selection & 0x40) { 119 os2->selection &= 0xffdeu; 127 if ((os2->selection & 0x1) && 132 if ((os2->selection & 0x2) && 140 if ((os2->selection & 0x40) && 147 (os2->selection & 0x300)) { 153 os2->selection &= 0x3ff; 251 !out->WriteU16(os2->selection) ||
|
os2.h | 35 uint16_t selection; member in struct:ots::OpenTypeOS2
|
/cts/tests/tests/provider/src/android/provider/cts/ |
Settings_NameValueTableTest.java | 48 String selection = NameValueTable.NAME + "=\"" + name + "\""; local 49 c = cr.query(uri, null, selection, null, null); 58 cr.delete(uri, selection, null);
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/ |
ChoiceCallbackTest.java | 139 int selection[] = { 1, 2, 3 }; local 141 cb.setSelectedIndexes(selection); 142 selection[0] = 4;
|
/external/chromium_org/ppapi/cpp/dev/ |
ime_input_event_dev.cc | 58 const std::pair<uint32_t, uint32_t>& selection) : InputEvent() { 66 target_segment, selection.first, selection.second));
|
/frameworks/base/core/java/android/provider/ |
SearchRecentSuggestions.java | 236 String selection = null; local 238 selection = "_id IN " + 243 cr.delete(mSuggestionsUri, selection, null);
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
HomeProvider.java | 44 public int delete(Uri uri, String selection, String[] selectionArgs) {
64 public Cursor query(Uri uri, String[] projection, String selection,
70 public int update(Uri uri, ContentValues values, String selection,
|
/packages/apps/Contacts/src/com/android/contacts/ |
GroupMemberLoader.java | 113 StringBuilder selection = new StringBuilder(); local 114 selection.append(Data.MIMETYPE + "=?" + " AND " + GroupMembership.GROUP_ROW_ID + "=?"); 115 return selection.toString();
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/ |
QueryService.java | 32 [-e p OPTIONAL PROJECTION] [-e s OPTIONAL SELECTION] [-e s OPTIONAL ORDER BY] \ 59 final String selection = intent.getStringExtra(EXTRA_SELECTION); local 64 Log.i(TAG, "Selection: " + selection); 67 Cursor c = getContentResolver().query(uri, parseProjection(projection), selection, null,
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
GoogleSuggestionProvider.java | 71 public Cursor query(Uri uri, String[] projection, String selection, 108 public int update(Uri uri, ContentValues values, String selection, 114 public int delete(Uri uri, String selection, String[] selectionArgs) {
|
/packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/ |
PartialSuggestionProvider.java | 98 public Cursor query(Uri uri, String[] projectionIn, String selection, 133 public int update(Uri uri, ContentValues values, String selection, 139 public int delete(Uri uri, String selection, String[] selectionArgs) {
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/ |
DumpFileProvider.java | 51 public int delete(Uri uri, String selection, String[] selectionArgs) { 57 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { 91 public Cursor query(Uri uri, String[] inProjection, String selection, String[] selectionArgs,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringAction.java | 56 * <li> The action is only enabled if the selection is 1 character or more. That is at least part 67 * us to be able to work with a selection from an Android XML file later. 94 * Examine the selection to determine if the action should be enabled or not. 96 * Keep a link to the relevant selection structure (i.e. a part of the Java AST). 99 public void selectionChanged(IAction action, ISelection selection) { 104 // This simply deals with the refactoring based on a non-empty selection. 111 if (selection instanceof ITextSelection) { 112 mSelection = (ITextSelection) selection; 140 * Returns the active editor (hopefully matching our selection) or null. 155 * Returns the active {@link IFile} (hopefully matching our selection) or null [all...] |
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_context_menu_controller_views.h | 49 // |parent| is the parent for newly created nodes if |selection| is empty. 50 // |selection| is the nodes the context menu operates on and may be empty. 57 const std::vector<const BookmarkNode*>& selection);
|
/external/chromium-trace/trace-viewer/src/ui/ |
mouse_mode_selector.css | 44 .mouse-mode-selector .selection-mode-button { 49 .mouse-mode-selector .selection-mode-button.active {
|
/external/chromium_org/chrome/browser/ui/find_bar/ |
find_tab_helper.cc | 159 gfx::Rect selection = selection_rect; local 161 selection = gfx::Rect(); 163 selection = last_search_result_.selection_rect(); 168 request_id, number_of_matches, selection, active_match_ordinal,
|
/external/chromium_org/content/shell/browser/ |
shell_web_contents_view_delegate_win.cc | 178 int selection = local 186 MenuItemSelected(selection); 191 void ShellWebContentsViewDelegate::MenuItemSelected(int selection) { 192 switch (selection) {
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
InsertLineBreakCommand.cpp | 93 VisibleSelection selection = endingSelection(); local 94 if (!selection.isNonOrphanedCaretOrRange()) 97 VisiblePosition caret(selection.visibleStart()); 169 RefPtr<EditingStyle> typingStyle = document().frame()->selection().typingStyle(); 172 // Apply the typing style to the inserted line break, so that if the selection
|
InsertListCommand.h | 55 bool selectionHasListOfType(const VisibleSelection& selection, const QualifiedName&);
|
/external/chromium_org/third_party/angle/src/compiler/depgraph/ |
DependencyGraphOutput.cpp | 35 void TDependencyGraphOutput::visitSelection(TGraphSelection* selection) 38 mSink << "selection\n";
|
/external/chromium_org/ui/views/controls/textfield/ |
textfield_views_model.cc | 411 gfx::Range range(render_text_->selection().start(), model.caret_pos()); 427 return GetText().substr(render_text_->selection().GetMin(), 428 render_text_->selection().length()); 521 const gfx::Range& selection = render_text_->selection(); local 522 render_text_->SelectRange(gfx::Range(selection.end(), selection.start())); 551 return !render_text_->selection().is_empty(); 557 ExecuteAndRecordDelete(render_text_->selection(), false); 601 // Because the target clause is more important than the actual selection [all...] |
/frameworks/base/core/java/android/content/ |
CursorLoader.java | 134 public CursorLoader(Context context, Uri uri, String[] projection, String selection, 140 mSelection = selection; 211 public void setSelection(String selection) { 212 mSelection = selection;
|
/frameworks/ex/common/java/com/android/common/content/ |
SyncStateContentProviderHelper.java | 82 String selection, String[] selectionArgs, String sortOrder) { 83 return db.query(SYNC_STATE_TABLE, projection, selection, selectionArgs, 96 String selection, String[] selectionArgs) { 97 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs);
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
ExportTestProvider.java | 99 String selection, String[] selectionArgs, String sortOrder) { 104 TestCase.assertTrue((Data.CONTACT_ID + "=?").equals(selection)); 115 String selection, String[] selectionArgs, String sortOrder) { 118 TestCase.assertNull(selection);
|