HomeSort by relevance Sort by last modified time
    Searched full:fqcn (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ViewTagRule.java 35 String fqcn = mRulesEngine.displayCustomViewClassInput(); local
36 if (fqcn != null) {
37 if (!ViewElementDescriptor.viewNeedsPackage(fqcn)) {
38 fqcn = fqcn.substring(fqcn.lastIndexOf('.') + 1);
42 fqcn.length() > 0 ? fqcn : null));
FragmentRule.java 35 String fqcn = mRulesEngine.displayFragmentSourceInput(); local
36 if (fqcn != null) {
39 fqcn.length() > 0 ? fqcn : null));
AdapterViewRule.java 47 String fqcn = targetNode.getFqcn(); local
48 String name = fqcn.substring(fqcn.lastIndexOf('.') +1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
MockNodeProxy.java 32 * Generates a {@link NodeProxy} using an FQCN (e.g. android.view.View)
33 * and making the last segment of the FQCN the XML name of the view (e.g. "View")
36 * @param fqcn The fully qualified name of the class to wrap, e.g. "android.view.Button".
44 public MockNodeProxy(String fqcn, Rectangle bounds, NodeFactory factory) {
45 super(makeUiViewNode(fqcn), bounds, factory);
49 * Generates a {@link ViewElementDescriptor} using an FQCN (e.g. android.view.View)
50 * and making the last segment of the FQCN the XML name of the view (e.g. "View").
52 * @param fqcn The fully qualified name of the class to wrap, e.g. "android.view.Button"
53 * @return A new view element node with a new descriptor for the FQCN and an XML name
54 * matching the last FQCN segment (e.g. "Button"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParser.java 89 /** Output map of FQCN => info on View classes */
91 /** Output map of FQCN => info on ViewGroup classes */
93 /** Output map of FQCN => info on LayoutParams classes */
113 /** Returns the map of FQCN => info on View classes */
118 /** Returns the map of FQCN => info on ViewGroup classes */
129 * Note on Vocabulary: FQCN=Fully Qualified Class Name (e.g. "my.package.class$innerClass")
221 String fqcn = viewClass.getFullClassName(); local
222 if (mViewMap.containsKey(fqcn)) {
223 return mViewMap.get(fqcn);
224 } else if (mGroupMap.containsKey(fqcn)) {
249 String fqcn = groupClass.getFullClassName(); local
317 String fqcn = layoutParamsClass.getFullClassName(); local
    [all...]
WidgetClassLoader.java 59 ClassDescriptor(String fqcn) {
60 mFqcn = fqcn;
61 mSimpleName = getSimpleName(fqcn);
131 private String getSimpleName(String fqcn) {
132 String[] segments = fqcn.split("\\.");
139 /** Output map of FQCN => descriptor on all classes */
141 /** Output map of FQCN => descriptor on View classes */
143 /** Output map of FQCN => descriptor on ViewGroup classes */
145 /** Output map of FQCN => descriptor on LayoutParams classes */
239 String fqcn = classes[index] local
274 String fqcn = param.getFullClassName(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 154 * @param element the element to look up the fqcn for
155 * @return the fqcn of the view the element represents a preview for
255 String fqcn = child.getAttribute("class"); //$NON-NLS-1$ local
256 if (fqcn.length() == 0) {
257 fqcn = defaultFqcn;
281 ViewData view = new ViewData(fqcn, displayName, fillPreference,
302 fqcn, fillPreference, renderMode, resize);
331 // First record map of FQCN to ViewElementDescriptor such that we can quickly
337 String fqcn = view.getFullClassName(); local
338 if (fqcn == null)
360 String fqcn = view.getFcqn(); local
    [all...]
RulesEngine.java 136 // try to find a rule for this element's FQCN
162 // try to find a rule for this element's FQCN
190 // try to find a rule for this element's FQCN
221 // try to find a rule for this element's FQCN
247 // try to find a rule for this element's FQCN
266 // try to find a rule for this element's FQCN
289 // try to find a rule for this element's FQCN
315 // try to find a rule for this element's FQCN
338 // try to find a rule for this element's FQCN
361 // try to find a rule for this element's FQCN
708 String fqcn = desc.getFullClassName(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ActivityMenuListener.java 58 @Nullable String fqcn) {
61 mFqcn = fqcn;
69 String fqcn = configuration.getActivity(); local
70 AdtPlugin.openJavaClass(mConfigChooser.getProject(), fqcn); local
117 for (String fqcn : activities) {
118 if (!remove.contains(fqcn)) {
119 filtered.add(fqcn);
143 for (final String fqcn : activities) {
144 String title = ConfigurationChooser.getActivityLabel(fqcn, false);
157 ACTION_SELECT_ACTIVITY, fqcn));
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
ICreateInfo.java 50 * Returns the list of classes to rename, must be an even list: the binary FQCN
51 * of class to replace followed by the new FQCN.
67 * binary FQCN of class to replace followed by the new FQCN. All references
  /developers/build/templates/create/_MODULE_/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/network/BasicNetworking/BasicNetworkingSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/network/NetworkConnect/NetworkConnectSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/nfc/BeamLargeFiles/BeamLargeFilesSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/nfc/CardEmulation/CardEmulationSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/nfc/CardReader/CardReaderSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/content/contacts/BasicContactables/BasicContactablesSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/content/documentsUi/StorageClient/StorageClientSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/content/documentsUi/StorageProvider/StorageProviderSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/content/multiuser/AppRestrictions/AppRestrictionsSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetectSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/input/multitouch/BasicMultitouch/BasicMultitouchSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
  /developers/samples/android/media/BasicMediaDecoder/BasicMediaDecoderSample/
proguard-project.txt 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {

Completed in 659 milliseconds

1 2 3 4 5 6 7