Searched refs:dialogType (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DInputDialogContainer.java78 public void showPickerDialog(final int dialogType, double dialogValue, argument
81 // |dialogValue|, |min|, |max| mean different things depending on the |dialogType|.
90 if (dialogType == sTextInputTypeMonth) {
92 } else if (dialogType == sTextInputTypeWeek) {
104 if (dialogType == sTextInputTypeDate) {
105 showPickerDialog(dialogType,
110 } else if (dialogType == sTextInputTypeTime) {
111 showPickerDialog(dialogType, 0, 0, 0,
115 } else if (dialogType == sTextInputTypeDateTime ||
116 dialogType
136 showSuggestionDialog(final int dialogType, final double dialogValue, final double min, final double max, final double step, DateTimeSuggestion[] suggestions) argument
209 showPickerDialog(final int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week, double min, double max, double step) argument
294 DateListener(int dialogType) argument
306 FullTimeListener(int dialogType) argument
320 DateTimeListener(int dialogType) argument
336 MonthOrWeekListener(int dialogType) argument
350 setFieldDateTimeValue(int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week) argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeChooserAndroid.java42 private void showDialog(int dialogType, double dialogValue, argument
45 mInputDialogContainer.showDialog(dialogType, dialogValue, min, max, step, suggestions);
52 int dialogType, double dialogValue,
59 chooser.showDialog(dialogType, dialogValue, min, max, step, suggestions);
49 createDateTimeChooser( ContentViewCore contentViewCore, long nativeDateTimeChooserAndroid, int dialogType, double dialogValue, double min, double max, double step, DateTimeSuggestion[] suggestions) argument
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_selection.js224 if (this.fileManager_.dialogType == DialogType.SELECT_SAVEAS_FILE) {
253 if (this.fileManager_.dialogType === DialogType.FULL_PAGE &&
278 var dialogType = this.fileManager_.dialogType;
280 if (DialogType.isFolderDialog(dialogType)) {
285 } else if (dialogType == DialogType.SELECT_OPEN_FILE) {
289 } else if (dialogType == DialogType.SELECT_OPEN_MULTI_FILE) {
293 } else if (dialogType == DialogType.SELECT_SAVEAS_FILE) {
299 } else if (dialogType == DialogType.FULL_PAGE) {
335 if (this.fileManager_.dialogType
[all...]
H A Dfile_manager.js103 this.dialogType = DialogType.FULL_PAGE;
949 if (this.dialogType != DialogType.FULL_PAGE) return;
1181 this.dialogType = this.params_.type || DialogType.FULL_PAGE;
1182 this.startupPrefName_ = 'file-manager-' + this.dialogType;
1242 metrics.recordEnum('Create', this.dialogType,
1254 this.ui_ = new FileManagerUI(this.dialogDom_, this.dialogType);
1260 if (this.dialogType == DialogType.FULL_PAGE && !util.runningInBrowser()) {
1318 var fullPage = this.dialogType == DialogType.FULL_PAGE;
1332 DialogType.isOpenDialog(this.dialogType) ?
1471 this.dialogType
[all...]
H A Dfile_manager_commands.js99 !DialogType.isModal(fileManager.dialogType);
459 (fileManager.dialogType === DialogType.FULL_PAGE);
597 var hideHelp = DialogType.isModal(fileManager.dialogType);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
H A Dfile_manager_ui.js11 * @param {DialogType} dialogType Dialog type.
14 var FileManagerUI = function(element, dialogType) {
27 this.dialogType_ = dialogType;
189 throw new Error('Unknown dialog type: ' + this.dialogType);
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
H A DInputDialogContainerTest.java358 void setShowDialogExpectation(int dialogType, argument
362 mExpectedDialogType = dialogType;
377 protected void showPickerDialog(final int dialogType, argument
381 assertEquals(mExpectedDialogType, dialogType);
396 public void setFieldDateTimeValue(int dialogType, argument
400 super.setFieldDateTimeValue(dialogType,
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view_events.js219 var showWarningMessage = function(dialogType) {
222 var article = (VOWELS.indexOf(dialogType.charAt(0)) >= 0) ? 'An' : 'A';
224 output = output.replace('%2', dialogType);
/external/chromium_org/third_party/WebKit/Source/web/
H A DChromeClientImpl.cpp760 bool ChromeClientImpl::shouldRunModalDialogDuringPageDismissal(const DialogType& dialogType, const String& dialogMessage, Document::PageDismissalType dismissalType) const argument
763 int dialog = static_cast<int>(dialogType);

Completed in 2940 milliseconds