Searched defs:relative (Results 1 - 13 of 13) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/relative/
H A DDeletionHandlerTest.java16 package com.android.ide.common.layout.relative;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
H A DGuidelinePainter.java16 package com.android.ide.common.layout.relative;
35 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
H A DMatch.java16 package com.android.ide.common.layout.relative;
H A DDeletionHandler.java16 package com.android.ide.common.layout.relative;
25 import static com.android.ide.common.layout.relative.ConstraintType.LAYOUT_CENTER_HORIZONTAL;
26 import static com.android.ide.common.layout.relative.ConstraintType.LAYOUT_CENTER_VERTICAL;
41 * Handles deletions in a relative layout, transferring constraints across
H A DMoveHandler.java16 package com.android.ide.common.layout.relative;
39 import com.android.ide.common.layout.relative.DependencyGraph.ViewData;
H A DConstraintPainter.java16 package com.android.ide.common.layout.relative;
29 import static com.android.ide.common.layout.relative.ConstraintType.ALIGN_BASELINE;
30 import static com.android.ide.common.layout.relative.ConstraintType.ALIGN_BOTTOM;
31 import static com.android.ide.common.layout.relative.ConstraintType.LAYOUT_ABOVE;
32 import static com.android.ide.common.layout.relative.ConstraintType.LAYOUT_BELOW;
33 import static com.android.ide.common.layout.relative.ConstraintType.LAYOUT_LEFT_OF;
34 import static com.android.ide.common.layout.relative.ConstraintType.LAYOUT_RIGHT_OF;
42 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
43 import com.android.ide.common.layout.relative.DependencyGraph.ViewData;
50 * The {@link ConstraintPainter} is responsible for painting relative layou
[all...]
H A DConstraintType.java16 package com.android.ide.common.layout.relative;
128 * Whether this constraint is relative to the margin bounds of the node rather than
H A DDependencyGraph.java16 package com.android.ide.common.layout.relative;
40 * Data structure about relative layout relationships which makes it possible to:
61 /** Constructs a new {@link DependencyGraph} for the given relative layout */
71 // the parent id from a constraint, only via parent-relative params
266 * Info about a specific widget child of a relative layout and its constraints. This
282 * Info about a specific constraint between two widgets in a relative layout. This is
H A DResizeHandler.java16 package com.android.ide.common.layout.relative;
H A DGuidelineHandler.java16 package com.android.ide.common.layout.relative;
52 import static com.android.ide.common.layout.relative.ConstraintType.ALIGN_BASELINE;
66 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
67 import com.android.ide.common.layout.relative.DependencyGraph.ViewData;
82 * A dependency graph for the relative layout recording constraint relationships
134 * All horizontal segments in the relative layout - top and bottom edges, baseline
140 * All vertical segments in the relative layout - left and right edges, and left and
146 * All center vertical segments in the relative layout. These are kept separate since
152 * All center horizontal segments in the relative layout. These are kept separate
227 * Construct a new {@link GuidelineHandler} for the given relative layou
[all...]
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
H A DAbstractCheckTest.java219 private File makeTestFile(String name, String relative, argument
221 return makeTestFile(getTargetDir(), name, relative, contents);
224 private File makeTestFile(File dir, String name, String relative, argument
226 if (relative != null) {
227 dir = new File(dir, relative);
269 String relative = null;
273 relative = targetPath.substring(0, index);
276 return makeTestFile(targetDir, name, relative, stream);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
H A DHyperlinks.java289 // into relative doc url android/Manifest.permission.html#ACCESS_CHECKIN_PROPERTIES
291 String relative = "android/Manifest.permission.html#" //$NON-NLS-1$
294 URL url = getDocUrl(relative);
304 // into relative doc url android/content/Intent.html#ACTION_MAIN
305 String relative;
307 relative = "android/content/Intent.html#ACTION_" //$NON-NLS-1$
310 relative = "android/content/Intent.html#CATEGORY_" //$NON-NLS-1$
315 URL url = getDocUrl(relative);
402 * @param relative a relative ur
405 getDocUrl(String relative) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DTemplateHandler.java240 * be relative to the templates directory */
349 * Load a text resource for the given relative path within the template
351 * @param relativePath relative path within the template
379 * @param relativePath the path relative to the template directory
573 // The relative path here is within the output directory:
603 private IPath getTargetPath(@NonNull String relative) { argument
604 if (relative.indexOf('\\') != -1) {
605 relative = relative.replace('\\', '/');
607 return new Path(relative);
[all...]

Completed in 1344 milliseconds