HomeSort by relevance Sort by last modified time
    Searched refs:VIEW (Results 1 - 9 of 9) sorted by null

  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
DefaultSdkInfo.java 53 import static com.android.tools.lint.detector.api.LintConstants.VIEW;
98 if (parent.equals(VIEW) || parent.equals(VIEW_GROUP) || parent.equals(SURFACE_VIEW)) {
118 if (parent.equals(VIEW)) {
122 while (!child.equals(VIEW)) {
128 // Unknown view - err on the side of caution
159 PARENTS.put(VIEW_GROUP, VIEW);
161 PARENTS.put(TEXT_VIEW, VIEW);
166 PARENTS.put(IMAGE_VIEW, VIEW);
168 PARENTS.put(PROGRESS_BAR, VIEW);
170 PARENTS.put(VIEW_STUB, VIEW);
    [all...]
  /external/webkit/LayoutTests/storage/
test-authorizer.js 18 tx.executeSql("DROP VIEW IF EXISTS TestView;");
57 executeStatement(tx, "CREATE TEMP VIEW TestTempView AS SELECT COUNT(*) FROM Test;", "SQLITE_CREATE_TEMP_VIEW");
59 executeStatement(tx, "CREATE VIEW TestView AS SELECT COUNT(*) FROM Test;", "SQLITE_CREATE_VIEW");
97 executeStatement(tx, "DROP VIEW TestTempView;", "SQLITE_DROP_TEMP_VIEW");
99 executeStatement(tx, "DROP VIEW TestView;", "SQLITE_DROP_VIEW");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LayoutConstants.java 32 /** The element name in a {@code <view class="...">} element. */
33 public static final String VIEW = "view"; //$NON-NLS-1$
35 /** The attribute name in a {@code <view class="...">} element. */
176 /** The android.view. package prefix */
177 public static final String ANDROID_VIEW_PKG = ANDROID_PKG_PREFIX + "view."; //$NON-NLS-1$
188 /** The fully qualified class name of an EditText view */
191 /** The fully qualified class name of a LinearLayout view */
194 /** The fully qualified class name of a RelativeLayout view */
197 /** The fully qualified class name of a RelativeLayout view */
    [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
LintConstants.java 71 public static final String VIEW_TAG = "view"; //$NON-NLS-1$
76 public static final String VIEW = "View"; //$NON-NLS-1$
294 public static final String VIEW_PKG_PREFIX = "android.view."; //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidLayoutChange.java 138 TextEdit edit = createTextEdit(LayoutConstants.VIEW,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java 246 .getElementsByTagName(LayoutConstants.VIEW);
AndroidPackageRenameParticipant.java 358 NodeList nodes = xmlDoc.getElementsByTagName(LayoutConstants.VIEW);
AndroidTypeMoveParticipant.java 284 NodeList nodes = xmlDoc.getElementsByTagName(LayoutConstants.VIEW);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 24 import static com.android.ide.common.layout.LayoutConstants.VIEW;
176 /** Regular expression matching a FQCN for a view class */
191 // We could also allow to jump into custom attributes in custom view
329 * Returns true if this represents a {@code <view class="foo.bar.Baz">} class
339 return ATTR_CLASS.equals(attributeName) && (VIEW.equals(tag) || VIEW_FRAGMENT.equals(tag))
352 /** Returns true if this represents a {@code <foo.bar.Baz>} custom view class element */
358 // If the element looks like a fully qualified class name (e.g. it's a custom view
597 // method signature (public and has a single View parameter), and narrowing the scope
609 && ("Qandroid.view.View;".equals(parameterTypes[0]) //$NON-NLS-1
    [all...]

Completed in 760 milliseconds