HomeSort by relevance Sort by last modified time
    Searched defs:relative (Results 1 - 25 of 49) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
Match.java 16 package com.android.ide.common.layout.relative;
ConstraintType.java 16 package com.android.ide.common.layout.relative;
126 * Whether this constraint is relative to the margin bounds of the node rather than
GuidelinePainter.java 16 package com.android.ide.common.layout.relative;
34 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
MoveHandler.java 16 package com.android.ide.common.layout.relative;
37 import com.android.ide.common.layout.relative.DependencyGraph.ViewData;
ResizeHandler.java 16 package com.android.ide.common.layout.relative;
DependencyGraph.java 16 package com.android.ide.common.layout.relative;
38 * Data structure about relative layout relationships which makes it possible to:
59 /** Constructs a new {@link DependencyGraph} for the given relative layout */
69 // the parent id from a constraint, only via parent-relative params
264 * Info about a specific widget child of a relative layout and its constraints. This
280 * Info about a specific constraint between two widgets in a relative layout. This is
ConstraintPainter.java 16 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 layout constraints
    [all...]
GuidelineHandler.java 16 package com.android.ide.common.layout.relative;
53 import static com.android.ide.common.layout.relative.ConstraintType.ALIGN_BASELINE;
64 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
65 import com.android.ide.common.layout.relative.DependencyGraph.ViewData;
80 * A dependency graph for the relative layout recording constraint relationships
132 * All horizontal segments in the relative layout - top and bottom edges, baseline
138 * All vertical segments in the relative layout - left and right edges, and left and
144 * All center vertical segments in the relative layout. These are kept separate since
150 * All center horizontal segments in the relative layout. These are kept separate
225 * Construct a new {@link GuidelineHandler} for the given relative layout
    [all...]
  /external/dbus/bus/
test.c 299 DBusString relative; local
316 _dbus_string_init_const (&relative, filename);
318 if (!_dbus_concat_dir_and_file (&config_file, &relative))
  /external/skia/emoji/
EmojiFont.cpp 148 // our table is stored relative to GMOJI_PUA_MIN to save space (16bits)
149 uint16_t relative = unichar - GMOJI_PUA_MIN; local
150 int index = SkTSearch<uint16_t>(gGmojiPUA, GMOJI_PUA_COUNT, relative,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParserTest.java 57 // We have button, textview, linear layout, relative layout.
82 "Relative Layout", "", "",
142 MockXmlNode relative = new MockXmlNode(null /* namespace */, "RelativeLayout", local
144 relative.addAttributes(SdkConstants.NS_RESOURCES, "orientation", "toto");
147 Node.ELEMENT_NODE, new MockXmlNode[] { button1, relative });
199 // Relative Layout
  /external/skia/src/animator/
SkParseSVGPath.cpp 100 bool isRelative, SkPoint* relative)
105 value[index].fX += relative->fX;
106 value[index].fY += relative->fY;
113 bool isRelative, SkScalar relative)
117 *value += relative;
130 bool relative = false; local
142 relative = false;
145 relative = true;
152 data = find_points(data, points, 1, relative, &c);
158 data = find_points(data, points, 1, relative, &c)
    [all...]
  /external/skia/src/utils/
SkParsePath.cpp 43 bool isRelative, SkPoint* relative) {
47 value[index].fX += relative->fX;
48 value[index].fY += relative->fY;
55 bool isRelative, SkScalar relative) {
58 *value += relative;
71 bool relative = false; local
84 relative = false;
87 relative = true;
94 data = find_points(data, points, 1, relative, &c);
100 data = find_points(data, points, 1, relative, &c)
    [all...]
  /sdk/anttasks/src/com/android/ant/
RenderScriptTask.java 132 String relative = filePath.substring(sourceFolder.length()); local
133 if (relative.charAt(0) == '/') {
134 relative = relative.substring(1);
137 return new File(mGenFolder, relative).getParent();
  /external/chromium/googleurl/src/
gurl_unittest.cc 156 // The tricky cases for relative URL resolving are tested in the
161 const char* relative; member in struct:ResolveCase
179 GURL output = input.Resolve(resolve_cases[i].relative);
186 input.Resolve(ConvertUTF8ToUTF16(resolve_cases[i].relative));
416 // Relative path resolver.
url_util.cc 149 // Remove any whitespace from the middle of the relative URL, possibly
222 // Remove any whitespace from the middle of the relative URL, possibly
226 const CHAR* relative = RemoveURLWhitespace(in_relative, in_relative_length, local
238 relative, relative_length,
247 // Relative, resolve and canonicalize.
251 file_base_scheme, relative,
256 // Not relative, canonicalize the input.
257 return DoCanonicalize(relative, relative_length, charset_converter,
434 const char* relative,
440 relative, relative_length
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AidlProcessor.java 103 // since the path are relative to the workspace and not the project itself, we need
124 // make a path to the source file relative to the source folder.
125 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); local
126 name = relative.toString();
319 // make a path to the source file relative to the source folder.
320 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); local
322 relative = relative.removeLastSegments(1);
325 IFolder destinationFolder = getGenFolder().getFolder(relative);
RenderScriptProcessor.java 81 // relative to the gen folder. Convert this into a Renderscript source file,
85 IPath relative = file.getFullPath().makeRelativeTo(genFolder.getFullPath()); local
87 relative = relative.removeLastSegments(1);
89 relative = relative.append(file.getName().replaceAll(AdtConstants.RE_DEP_EXT,
101 IFile sourceFile = sourceFolder.getFile(relative);
187 // make a path to the source file relative to the source folder.
188 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); local
189 name = relative.toString()
418 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); local
    [all...]
  /system/core/sh/
histedit.c 414 * relative histnums.
484 int relative = 0; local
490 relative = 1;
497 if (relative) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URITest.java 71 // relative path with empty fragment;
102 "/relative", // relative starting with /
103 "//relative", // relative starting with //
104 "relative", // relative with no /
105 "#fragment",// relative just with fragment
373 // relative path with scheme
374 construct1("http", "user", "hostname", -1, "relative", "query"
1607 URI relative = base.relativize(uri); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetTest.java 348 assertFalse(target.relative(0));
351 assertTrue(target.relative(1));
355 assertTrue(target.relative(1));
358 assertFalse(target.relative(2));
362 target.relative(-2);
371 assertFalse(emptyTarget.relative(Integer.MAX_VALUE));
379 assertFalse(scrollableTarget.relative(0));
382 assertTrue(scrollableTarget.relative(1));
386 assertTrue(scrollableTarget.relative(1));
390 assertFalse(scrollableTarget.relative(2))
    [all...]
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
AbstractCheckTest.java 126 private File makeTestFile(String name, String relative,
129 if (relative != null) {
130 dir = new File(dir, relative);
158 String relative = null; local
162 relative = relativePath.substring(0, index);
164 return makeTestFile(name, relative, xml);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbevents.c 706 void FB_vgamousecallback(int button, int relative, int dx, int dy)
715 posted += SDL_PrivateMouseMotion(0, relative, dx, dy);
762 static int relative = 1; local
911 FB_vgamousecallback(button, relative, dx, dy);
  /libcore/luni/src/main/java/java/sql/
ResultSet.java 1263 public boolean relative(int rows) throws SQLException; method in interface:ResultSet
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URITest.java 583 new URI("http", "host", "relative", null);
588 new URI("http", "host", "relative", null, null);
593 new URI("http", null, "host", -1, "relative", null, null);
607 URI relative = new URI("robots.txt"); local
609 assertEquals(new URI("http://android.com/robots.txt"), absolute.resolve(relative));
610 assertEquals(absolute, relative.resolve(absolute));
611 assertEquals(relative, relative.resolve(relative));
616 URI relative = new URI("robots.txt") local
    [all...]

Completed in 680 milliseconds

1 2