HomeSort by relevance Sort by last modified time
    Searched defs:fqcn (Results 1 - 7 of 7) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 111 * @param fqcn the fully qualified name of the class.
115 public ElementDescriptor getDescriptor(IProject project, String fqcn) {
121 ElementDescriptor descriptor = map.get(fqcn);
136 String javaClassName = fqcn.replaceAll("\\$", "\\."); //$NON-NLS-1$ //$NON-NLS-2$
153 ViewElementDescriptor descriptor = new ViewElementDescriptor(fqcn,
154 fqcn, // ui_name
155 fqcn, // canonical class name
170 map.put(fqcn, descriptor);
214 String fqcn = type.getFullyQualifiedName(); local
220 if (fqcn.equals(viewDescriptor.getFullClassName()))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasSelection.java 129 String fqcn = canvasViewInfo.getName(); local
130 if (fqcn == null) {
139 if (fqcn.startsWith("android.")) { // $NON-NLS-1$
141 int first = fqcn.indexOf('.');
142 int last = fqcn.lastIndexOf('.');
144 name = fqcn.substring(0, first) + ".." + fqcn.substring(last); // $NON-NLS-1$
149 int first = fqcn.indexOf('.');
150 first = fqcn.indexOf('.', first + 1);
151 int last = fqcn.lastIndexOf('.')
    [all...]
SimpleElement.java 51 * @param fqcn A fully qualified class name of a View to inflate, e.g.
59 public SimpleElement(String fqcn, String parentFqcn, Rect bounds, Rect parentBounds) {
60 mFqcn = fqcn;
189 String fqcn = null; local
212 fqcn = value;
241 if (version != null && fqcn != null && fqcn.length() > 0) {
242 e = new SimpleElement(fqcn, parent, bounds, pbounds);
LayoutCanvas.java 1379 String fqcn = SimpleXmlTransfer.getFqcn(uiNode.getDescriptor()); local
    [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);
125 private String getSimpleName(String fqcn) {
126 String[] segments = fqcn.split("\\.");
133 /** Output map of FQCN => descriptor on all classes */
135 /** Output map of FQCN => descriptor on View classes */
137 /** Output map of FQCN => descriptor on ViewGroup classes */
139 /** Output map of FQCN => descriptor on LayoutParams classes */
232 String fqcn = classes[index] local
267 String fqcn = param.getFullClassName(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 151 // try to find a rule for this element's FQCN
179 // try to find a rule for this element's FQCN
203 // try to find a rule for this element's FQCN
227 // try to find a rule for this element's FQCN
253 // try to find a rule for this element's FQCN
276 // try to find a rule for this element's FQCN
298 // try to find a rule for this element's FQCN
347 // keys (e.g. the UiViewElementNode key vs. the FQCN string key.) So transfer
368 * actual FQCN and if that fails will find the first parent that works in the view
397 // Get the FQCN of this Vie
398 String fqcn = desc.getFullClassName(); local
    [all...]

Completed in 87 milliseconds