/external/v8/test/mjsunit/ |
debug-liveedit-2.js | 38 " return function Chooser() {\n" + 53 // We patch innermost function "Chooser". 54 // However, this does not actually patch existing "Chooser" instances,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
Configuration.java | 165 * @param chooser the associated chooser 167 protected Configuration(@NonNull ConfigurationChooser chooser) { 168 mConfigChooser = chooser; 172 * Sets the associated configuration chooser 174 * @param chooser the chooser 176 void setChooser(@NonNull ConfigurationChooser chooser) { 182 mConfigChooser = chooser; 186 * Gets the associated configuration chooser 218 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);
|
ConfigurationMatcher.java | 77 ConfigurationMatcher(ConfigurationChooser chooser) { 78 this(chooser, chooser.getConfiguration(), chooser.getEditedFile(), 79 chooser.getResources(), true); 83 @NonNull ConfigurationChooser chooser, 88 mConfigChooser = chooser; 526 static IAndroidTarget findDefaultRenderTarget(ConfigurationChooser chooser) { 529 List<IAndroidTarget> targetList = chooser.getTargetList(); 535 IProject project = chooser.getProject() [all...] |
VaryingConfiguration.java | 64 * @param chooser the associated chooser 68 @NonNull ConfigurationChooser chooser, 70 super(chooser, configuration); 78 * @param chooser the associated chooser 83 public static VaryingConfiguration create(@NonNull ConfigurationChooser chooser, 85 return new VaryingConfiguration(chooser, parent);
|
/frameworks/base/core/java/com/android/internal/app/ |
MediaRouteChooserDialog.java | 40 * This class implements the route chooser dialog for {@link MediaRouter}. 70 * select using the media route chooser dialog. 79 * Sets the types of routes that will be shown in the media route chooser dialog 114 * @return True if the route should be included in the chooser dialog. 171 * Refreshes the list of routes that are shown in the chooser dialog.
|
ResolverTargetActionsDialogFragment.java | 34 * Shows a dialog with actions to take on a chooser target 86 // Force the chooser to requery and resort things
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
RenderPreviewManager.java | 140 * Returns the associated chooser 142 * @return the associated chooser 680 ConfigurationChooser chooser = getChooser(); local 681 String name = chooser.getConfiguration().getDisplayName(); 696 Configuration configuration = Configuration.copy(chooser.getConfiguration()); 746 ConfigurationChooser chooser = getChooser(); local 747 Configuration parent = chooser.getConfiguration(); 753 createLocaleVariation(chooser, parent); 762 createStateVariation(chooser, parent); 765 createRenderTargetVariation(chooser, parent) 818 ConfigurationChooser chooser = getChooser(); local 930 ConfigurationChooser chooser = getChooser(); local 967 ConfigurationChooser chooser = getChooser(); local 1041 ConfigurationChooser chooser = getChooser(); local 1074 ConfigurationChooser chooser = getChooser(); local 1266 ConfigurationChooser chooser = getChooser(); local 1284 ConfigurationChooser chooser = editor.getConfigurationChooser(); local [all...] |
/developers/build/prebuilts/gradle/DirectShare/Application/src/main/ |
AndroidManifest.xml | 47 android:name="android.service.chooser.chooser_target_service" 61 <action android:name="android.service.chooser.ChooserTargetService" />
|
/developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/ |
SampleChooserTargetService.java | 23 import android.service.chooser.ChooserTarget; 24 import android.service.chooser.ChooserTargetService;
|
/developers/samples/android/content/DirectShare/Application/src/main/ |
AndroidManifest.xml | 47 android:name="android.service.chooser.chooser_target_service" 61 <action android:name="android.service.chooser.ChooserTargetService" />
|
/developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/ |
SampleChooserTargetService.java | 23 import android.service.chooser.ChooserTarget; 24 import android.service.chooser.ChooserTargetService;
|
/development/samples/browseable/DirectShare/ |
AndroidManifest.xml | 47 android:name="android.service.chooser.chooser_target_service" 61 <action android:name="android.service.chooser.ChooserTargetService" />
|
/development/samples/browseable/DirectShare/src/com.example.android.directshare/ |
SampleChooserTargetService.java | 23 import android.service.chooser.ChooserTarget; 24 import android.service.chooser.ChooserTargetService;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
LocalePropertyEditor.java | 67 System.out.println("TODO: Custom locale chooser here");
|
/frameworks/base/docs/html-intl/intl/ja/training/basics/intents/ |
sending.jd | 213 <img src="{@docRoot}images/training/basics/intent-chooser.png" alt="" /> 242 // Create intent to show chooser 243 Intent chooser = Intent.createChooser(intent, title); 247 startActivity(chooser);
|
/frameworks/base/docs/html-intl/intl/zh-cn/training/basics/intents/ |
sending.jd | 213 <img src="{@docRoot}images/training/basics/intent-chooser.png" alt="" /> 242 // Create intent to show chooser 243 Intent chooser = Intent.createChooser(intent, title); 247 startActivity(chooser);
|
/frameworks/base/docs/html-intl/intl/zh-tw/training/basics/intents/ |
sending.jd | 213 <img src="{@docRoot}images/training/basics/intent-chooser.png" alt="" /> 242 // Create intent to show chooser 243 Intent chooser = Intent.createChooser(intent, title); 247 startActivity(chooser);
|
/packages/apps/Dialer/res/layout/ |
dialpad_chooser_list_item.xml | 17 <!-- Layout of a single item in the Dialer's "Dialpad chooser" UI. -->
|
/packages/apps/KeyChain/ |
AndroidManifest.xml | 18 <action android:name="com.android.keychain.CHOOSER"/>
|
/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());
|
/frameworks/base/docs/html/training/basics/intents/ |
sending.jd | 18 <li><a href="#AppChooser">Show an App Chooser</a></li> 211 <h2 id="AppChooser">Show an App Chooser</h2> 214 <img src="{@docRoot}images/training/basics/intent-chooser.png" alt="" /> 215 <p class="img-caption"><strong>Figure 2.</strong> A chooser dialog.</p> 227 apps through which they might share an item—you should explicitly show a chooser dialog 228 as shown in figure 2. The chooser dialog 232 <p>To show the chooser, create an {@link android.content.Intent} using {@link 243 // Create intent to show chooser 244 Intent chooser = Intent.createChooser(intent, title); 248 startActivity(chooser); [all...] |
/frameworks/base/core/java/android/service/chooser/ |
ChooserTarget.java | 18 package android.service.chooser; 31 * {@link android.service.chooser.ChooserTargetService}. 33 * <p>A chooser target represents a specific deep link target into an application exposed 39 * <p>Creators of chooser targets should consult the relevant design guidelines for the type 76 * Construct a deep link target for presentation by a chooser UI.
|
/frameworks/base/docs/html/sdk/api_diff/23/changes/ |
packages_index_additions.html | 57 <A HREF="changes-summary.html#android.service.chooser" class="hiddenlink" target="rightframe"><b>android.service.chooser</b></A><br>
|