HomeSort by relevance Sort by last modified time
    Searched refs:chooser (Results 26 - 50 of 61) sorted by null

12 3

  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestMusicPlayer.java 168 JFileChooser chooser = new JFileChooser(); local
169 chooser.setAcceptAllFileFilterUsed(true);
170 chooser.setDialogTitle("Select OGG file");
171 chooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
172 chooser.setMultiSelectionEnabled(false);
173 if (chooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION){
176 final File selected = chooser.getSelectedFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 162 * @param chooser the associated chooser
164 protected Configuration(@NonNull ConfigurationChooser chooser) {
165 mConfigChooser = chooser;
169 * Sets the associated configuration chooser
171 * @param chooser the chooser
173 void setChooser(@NonNull ConfigurationChooser chooser) {
179 mConfigChooser = chooser;
183 * Gets the associated configuration chooser
215 ConfigurationChooser chooser = base.getChooser(); local
    [all...]
NestedConfiguration.java 51 * @param chooser the associated chooser
55 @NonNull ConfigurationChooser chooser,
57 super(chooser);
151 * @param chooser the associated chooser
156 public static NestedConfiguration create(@NonNull ConfigurationChooser chooser,
158 return new NestedConfiguration(chooser, parent);
VaryingConfiguration.java 63 * @param chooser the associated chooser
67 @NonNull ConfigurationChooser chooser,
69 super(chooser, configuration);
77 * @param chooser the associated chooser
82 public static VaryingConfiguration create(@NonNull ConfigurationChooser chooser,
84 return new VaryingConfiguration(chooser, parent);
ConfigurationMatcher.java 77 ConfigurationMatcher(ConfigurationChooser chooser) {
78 this(chooser, chooser.getConfiguration(), chooser.getEditedFile(),
79 chooser.getResources(), true);
83 @NonNull ConfigurationChooser chooser,
88 mConfigChooser = chooser;
529 static IAndroidTarget findDefaultRenderTarget(ConfigurationChooser chooser) {
532 List<IAndroidTarget> targetList = chooser.getTargetList();
538 IProject project = chooser.getProject()
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/base/
SelectFileDialog.java 60 Intent chooser = new Intent(Intent.ACTION_CHOOSER); local
69 // type, we should just launch the appropriate intent. Otherwise build up a chooser based on
83 // Create a chooser based on the accept type that was specified in the webpage. Note
85 // chooser above.
99 // We couldn't resolve an accept type, so fallback to a generic chooser.
106 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS,
109 chooser.putExtra(Intent.EXTRA_INTENT, getContentIntent);
111 if (!window.showIntent(chooser, this, R.string.low_memory_error)) {
206 // We use a single Intent to decide the type of the file chooser we display to the user,
208 // specified, we will fallback to a generic chooser (unless a capture parameter has bee
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
dialogs_gtk.cc 56 // Add the filters from |file_types_| to |chooser|.
57 void AddFilters(GtkFileChooser* chooser);
122 // Callback for when the file chooser gets destroyed.
257 void SelectFileDialogImpl::AddFilters(GtkFileChooser* chooser) {
291 gtk_file_chooser_add_filter(chooser, filter);
293 gtk_file_chooser_set_filter(chooser, filter);
303 gtk_file_chooser_add_filter(chooser, filter);
571 void SelectFileDialogImpl::OnUpdatePreview(GtkWidget* chooser) {
573 GTK_FILE_CHOOSER(chooser));
584 gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(chooser),
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl_gtk2.cc 96 // Add the filters from |file_types_| to |chooser|.
97 void AddFilters(GtkFileChooser* chooser);
160 // Callback for when the file chooser gets destroyed.
281 void SelectFileDialogImplGTK::AddFilters(GtkFileChooser* chooser) {
320 gtk_file_chooser_add_filter(chooser, filter);
322 gtk_file_chooser_set_filter(chooser, filter);
332 gtk_file_chooser_add_filter(chooser, filter);
614 void SelectFileDialogImplGTK::OnUpdatePreview(GtkWidget* chooser) {
616 GTK_FILE_CHOOSER(chooser));
627 gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(chooser),
    [all...]
  /external/chromium_org/ui/shell_dialogs/gtk/
select_file_dialog_impl_gtk.cc 63 // Add the filters from |file_types_| to |chooser|.
64 void AddFilters(GtkFileChooser* chooser);
127 // Callback for when the file chooser gets destroyed.
237 void SelectFileDialogImplGTK::AddFilters(GtkFileChooser* chooser) {
276 gtk_file_chooser_add_filter(chooser, filter);
278 gtk_file_chooser_set_filter(chooser, filter);
288 gtk_file_chooser_add_filter(chooser, filter);
570 void SelectFileDialogImplGTK::OnUpdatePreview(GtkWidget* chooser) {
572 GTK_FILE_CHOOSER(chooser));
583 gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(chooser),
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CreateNewConfigJob.java 102 ConfigurationChooser chooser = mEditor.getConfigurationChooser();
103 chooser.onAlternateLayoutCreated();
RenderPreviewList.java 147 ConfigurationChooser chooser = canvas.getEditorDelegate().getGraphicalEditor() local
150 Configuration chooserConfig = chooser.getConfiguration();
152 Configuration configuration = Configuration.create(chooser);
RenderPreview.java 298 * forked layout meaning that the file is the one used in the chooser
373 ConfigurationChooser chooser = mManager.getChooser(); local
375 if (mAlternateInput != null && chooser.isBestMatchFor(mAlternateInput, config)) {
380 IFile editedFile = chooser.getEditedFile();
382 if (!chooser.isBestMatchFor(editedFile, config)) {
383 ProjectResources resources = chooser.getResources();
    [all...]
RenderService.java 112 ConfigurationChooser chooser = editor.getConfigurationChooser(); local
113 Configuration config = chooser.getConfiguration();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 133 * Label used to show the resolved value in the resource chooser. Only shown
142 * Creates a Resource Chooser dialog.
168 setTitle("Resource Chooser");
187 ResourceChooser chooser = create(project, type, targetData, parent); local
194 chooser.setResourceResolver(editor.getResourceResolver());
195 chooser.setShowValueText(true);
197 chooser.setResourceResolver(editor.getResourceResolver());
200 chooser.setPreviewHelper(new ResourcePreviewHelper(chooser, editor));
201 return chooser;
942 ResourceChooser chooser = create(graphicalEditor, type). local
    [all...]
MarginChooser.java 59 * Constructs a new margin chooser dialog.
215 // Button pressed - open resource chooser
220 // Open a resource chooser dialog for specified resource type.
221 ResourceChooser chooser = ResourceChooser.create(mEditor, ResourceType.DIMEN) local
223 if (chooser.open() == Window.OK) {
224 text.setText(chooser.getCurrentResource());
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libico.cpp 98 Chooser* chooser = this->getChooser(); local
99 //FIXME:if no chooser, consider providing the largest color image
101 if (NULL == chooser) {
104 chooser->begin(count);
133 chooser->inspect(i, c, width, height);
135 choice = chooser->choose();
138 //you never know what the chooser is going to supply
SkScaledBitmapSampler.cpp 707 RowProcChooser chooser = gProcChoosers[index]; local
708 if (NULL == chooser) {
711 fRowProc = chooser(decoder);
  /external/skia/src/images/
SkImageDecoder_libico.cpp 98 Chooser* chooser = this->getChooser(); local
99 //FIXME:if no chooser, consider providing the largest color image
101 if (NULL == chooser) {
104 chooser->begin(count);
133 chooser->inspect(i, c, width, height);
135 choice = chooser->choose();
138 //you never know what the chooser is going to supply
SkScaledBitmapSampler.cpp 707 RowProcChooser chooser = gProcChoosers[index]; local
708 if (NULL == chooser) {
711 fRowProc = chooser(decoder);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 42 ConfigurationChooser chooser = null; local
43 return constructor.newInstance(chooser);
  /external/chromium_org/chrome/common/extensions/docs/static/css/
site.css 256 #platform-chooser {
261 #platform-chooser-popup {
274 #platform-chooser-popup button {
280 #platform-chooser-popup button:hover {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 1044 JFileChooser chooser = new JFileChooser(); local
1085 JFileChooser chooser = new JFileChooser(); local
    [all...]
ScreenViewer.java 204 JFileChooser chooser = new JFileChooser(); local
205 chooser.setFileFilter(new PngFileFilter());
206 int choice = chooser.showOpenDialog(this);
208 return new OpenOverlayTask(chooser.getSelectedFile());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 663 ConfigurationChooser chooser = mRulesEngine.getEditor().getConfigurationChooser();
664 float dpi = chooser.getConfiguration().getDensity().getDpiValue();
670 ConfigurationChooser chooser = mRulesEngine.getEditor().getConfigurationChooser();
671 float dpi = chooser.getConfiguration().getDensity().getDpiValue();
  /external/chromium_org/third_party/WebKit/Source/web/resources/
calendarPicker.css 236 .year-list-cell .month-chooser {

Completed in 1056 milliseconds

12 3