Searched refs:chooser (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/ppapi/c/trusted/
H A Dppb_file_chooser_trusted.h37 * This function displays a previously created file chooser resource as a
43 * @param[in] chooser The file chooser resource.
49 * the user has closed the file chooser dialog.
54 int32_t (*ShowWithoutUserGesture)(PP_Resource chooser,
64 int32_t (*ShowWithoutUserGesture)(PP_Resource chooser,
/external/chromium_org/ppapi/api/trusted/
H A Dppb_file_chooser_trusted.idl21 * This function displays a previously created file chooser resource as a
27 * @param[in] chooser The file chooser resource.
33 * the user has closed the file chooser dialog.
40 [in] PP_Resource chooser,
46 * This function displays a previously created file chooser resource as a
52 * @param[in] chooser The file chooser resource.
58 * the user has closed the file chooser dialog.
65 [in] PP_Resource chooser,
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_file_chooser_trusted_thunk.cc21 int32_t ShowWithoutUserGesture_0_5(PP_Resource chooser, argument
26 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true);
35 int32_t ShowWithoutUserGesture(PP_Resource chooser, argument
41 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true);
H A Dppb_file_chooser_dev_thunk.cc36 int32_t Show_0_5(PP_Resource chooser, struct PP_CompletionCallback callback) { argument
38 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true);
44 PP_Resource GetNextChosenFile(PP_Resource chooser) { argument
46 EnterResource<PPB_FileChooser_API> enter(chooser, true);
52 int32_t Show(PP_Resource chooser, argument
56 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true);
/external/chromium_org/ppapi/api/dev/
H A Dppb_file_chooser_dev.idl20 * chooser dialog.
36 * This function creates a file chooser dialog resource. The chooser is
43 * the behavior of the file chooser dialog.
53 * @return A <code>PP_Resource</code> containing the file chooser if
62 * Determines if the provided resource is a file chooser.
68 * resource is a file chooser resource, otherwise <code>PP_FALSE</code>.
74 * This function displays a previously created file chooser resource as a
89 * have switched tabs and will not want to see a file chooser from a
92 * @param[in] chooser Th
[all...]
/external/chromium_org/ppapi/c/dev/
H A Dppb_file_chooser_dev.h36 * chooser dialog.
59 * This function creates a file chooser dialog resource. The chooser is
66 * the behavior of the file chooser dialog.
76 * @return A <code>PP_Resource</code> containing the file chooser if
83 * Determines if the provided resource is a file chooser.
89 * resource is a file chooser resource, otherwise <code>PP_FALSE</code>.
93 * This function displays a previously created file chooser resource as a
108 * want to see a file chooser from a different tab.
110 * @param[in] chooser Th
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DExternalDateTimeChooser.cpp42 WebDateTimeChooserCompletionImpl(ExternalDateTimeChooser* chooser) argument
43 : m_chooser(chooser)
82 RefPtr<ExternalDateTimeChooser> chooser = adoptRef(new ExternalDateTimeChooser(client)); local
83 if (!chooser->openDateTimeChooser(chromeClient, webViewClient, parameters))
84 chooser.clear();
85 return chooser.release();
127 // We can't open a chooser. Calling
H A DWebFileChooserCompletionImpl.cpp36 WebFileChooserCompletionImpl::WebFileChooserCompletionImpl(PassRefPtr<FileChooser> chooser) argument
37 : m_fileChooser(chooser)
/external/proguard/src/proguard/gui/
H A DClassPathPanel.java42 private final JFileChooser chooser; field in class:ClassPathPanel
57 chooser = new JFileChooser("");
58 chooser.setMultiSelectionEnabled(true);
59 chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
60 chooser.addChoosableFileFilter(
63 chooser.setApproveButtonText(msg("ok"));
93 chooser.setDialogTitle(msg("addJars"));
94 chooser.setSelectedFile(null);
95 chooser.setSelectedFiles(null);
97 int returnValue = chooser
[all...]
/external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/
H A DColorChooserAndroid.java54 ColorChooserAndroid chooser = new ColorChooserAndroid(nativeColorChooserAndroid,
56 chooser.openColorChooser();
57 return chooser;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DIntentHelper.java38 * @param chooserTitle The title of the activity chooser.
72 Intent chooser = Intent.createChooser(send, chooserTitle);
74 chooser.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
75 context.startActivity(chooser);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeChooserAndroid.java55 DateTimeChooserAndroid chooser =
59 chooser.showDialog(dialogType, dialogValue, min, max, step, suggestions);
60 return chooser;
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder.cpp101 SkImageDecoder::Chooser* SkImageDecoder::setChooser(Chooser* chooser) { argument
102 SkRefCnt_SafeAssign(fChooser, chooser);
103 return chooser;
123 Chooser* chooser = fChooser; local
125 if (NULL == chooser) { // no chooser, we just say YES to decoding :)
128 chooser->begin(1);
129 chooser->inspect(0, SkColorTypeToBitmapConfig(colorType), width, height);
130 return chooser->choose() == 0;
H A DSkImageDecoder_libico.cpp99 Chooser* chooser = this->getChooser(); local
100 //FIXME:if no chooser, consider providing the largest color image
102 if (NULL == chooser) {
105 chooser->begin(count);
134 chooser->inspect(i, c, width, height);
136 choice = chooser->choose();
139 //you never know what the chooser is going to supply
H A DSkScaledBitmapSampler.cpp719 RowProcChooser chooser = gProcChoosers[index]; local
720 if (NULL == chooser) {
723 fRowProc = chooser(opts);
/external/skia/src/images/
H A DSkImageDecoder.cpp107 SkImageDecoder::Chooser* SkImageDecoder::setChooser(Chooser* chooser) { argument
108 SkRefCnt_SafeAssign(fChooser, chooser);
109 return chooser;
129 Chooser* chooser = fChooser; local
131 if (NULL == chooser) { // no chooser, we just say YES to decoding :)
134 chooser->begin(1);
135 chooser->inspect(0, SkColorTypeToBitmapConfig(colorType), width, height);
136 return chooser->choose() == 0;
H A DSkImageDecoder_libico.cpp102 Chooser* chooser = this->getChooser(); local
103 //FIXME:if no chooser, consider providing the largest color image
105 if (NULL == chooser) {
108 chooser->begin(count);
137 chooser->inspect(i, c, width, height);
139 choice = chooser->choose();
142 //you never know what the chooser is going to supply
H A DSkScaledBitmapSampler.cpp719 RowProcChooser chooser = gProcChoosers[index]; local
720 if (NULL == chooser) {
723 fRowProc = chooser(opts);
/external/chromium_org/content/renderer/pepper/
H A Dpepper_file_chooser_host_unittest.cc73 PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
84 int32 result = chooser.OnResourceMessageReceived(show_msg, &context);
87 // The render view should have sent a chooser request to the browser
101 // Send a chooser reply to the render view. Note our reply path has to have a
136 PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
147 int32 result = chooser.OnResourceMessageReceived(show_msg, &context);
/external/chromium_org/ppapi/cpp/dev/
H A Dfile_chooser_dev.cc75 const PPB_FileChooser_Dev_0_5* chooser = local
77 while (PP_Resource cur = chooser->GetNextChosenFile(data->file_chooser))
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dselect_file_dialog_impl_gtk2.cc79 // Add the filters from |file_types_| to |chooser|.
80 void AddFilters(GtkFileChooser* chooser);
143 // Callback for when the file chooser gets destroyed.
288 void SelectFileDialogImplGTK::AddFilters(GtkFileChooser* chooser) { argument
327 gtk_file_chooser_add_filter(chooser, filter);
329 gtk_file_chooser_set_filter(chooser, filter);
339 gtk_file_chooser_add_filter(chooser, filter);
620 void SelectFileDialogImplGTK::OnUpdatePreview(GtkWidget* chooser) { argument
622 GTK_FILE_CHOOSER(chooser));
633 gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(chooser),
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/
H A DSelectFileDialog.java73 Intent chooser = new Intent(Intent.ACTION_CHOOSER);
105 // type, we should just launch the appropriate intent. Otherwise build up a chooser based on
123 // Create a chooser based on the accept type that was specified in the webpage. Note
125 // chooser above.
139 // We couldn't resolve an accept type, so fallback to a generic chooser.
146 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS,
149 chooser.putExtra(Intent.EXTRA_INTENT, getContentIntent);
151 if (!window.showIntent(chooser, this, R.string.low_memory_error)) {
264 // We use a single Intent to decide the type of the file chooser we display to the user,
266 // specified, we will fallback to a generic chooser (unles
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DSSLParametersImpl.java457 void setSSLParameters(long sslCtxNativePointer, long sslNativePointer, AliasChooser chooser, argument
485 chooser.chooseServerAlias(x509KeyManager, keyType));
634 long sslNativePointer, AliasChooser chooser) throws SSLException,
651 String alias = (keyManager != null) ? chooser.chooseClientAlias(keyManager, issuers,
633 chooseClientCertificate(byte[] keyTypeBytes, byte[][] asn1DerEncodedPrincipals, long sslNativePointer, AliasChooser chooser) argument
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.css236 .year-list-cell .month-chooser {
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl.h1156 // Date time chooser opened by this tab.
1161 // Holds information about a current color chooser dialog, if one is visible.
1165 ColorChooser* chooser,
1172 // Color chooser that was opened by this tab.
1173 scoped_ptr<ColorChooser> chooser; member in struct:content::WebContentsImpl::ColorChooserInfo
1175 // A unique identifier for the current color chooser. Identifiers are
1178 // renderer closes one chooser and opens another, and simultaneously the
1179 // user picks a color in the first chooser, the IDs can be used to drop the
1181 // the user picked a color in the second chooser.

Completed in 1907 milliseconds

12