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

1 2 3 4 5 6 7 8

  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 71 * Execute the match pattern step relative to another step.
112 for (int relative = traverser.first(context); DTM.NULL != relative;
113 relative = traverser.next(context, relative))
117 xctxt.pushCurrentNode(relative);
124 // predContext, relative);
132 && (DTM.ELEMENT_NODE == dtm.getNodeType(relative)))
139 for (int arelative = atraverser.first(relative);
141 arelative = atraverser.next(relative, arelative)
    [all...]
  /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...]
  /external/webkit/LayoutTests/fast/url/script-tests/
relative-unix.js 1 description("Test resolution of relative UNIX-like URLs.");
5 // On Unix we fall back to relative behavior since there's nothing else
9 // Even on Windows, we don't allow relative drive specs when the base
path-url.js 6 // Disabled because this gets treated as a relative URL.
  /build/tools/
fileslist.py 30 relative = dir[base:]
35 os.path.sep.join((relative, f)),
  /cts/tools/signature-tools/templates/
Styles.st 24 position:relative;
40 position: relative;
  /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...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 177 * @param relative {@code >= 0;} the relative offset
180 public final int getAbsoluteOffset(int relative) {
181 if (relative < 0) {
182 throw new IllegalArgumentException("relative < 0");
189 return fileOffset + relative;
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 177 * @param relative {@code >= 0;} the relative offset
180 public final int getAbsoluteOffset(int relative) {
181 if (relative < 0) {
182 throw new IllegalArgumentException("relative < 0");
189 return fileOffset + relative;
  /external/doclava/src/com/google/doclava/
SampleCode.java 67 public void writeDirectory(File dir, String relative) {
68 writeDirectory(dir, relative, false);
71 public void writeDirectory(File dir, String relative, boolean offline) {
75 String subdir = relative; // .substring(mDest.length());
83 String out = relative + name;
99 writeDirectory(f, relative + name + "/", offline);
121 if (!offline) relative = "/" + relative;
122 ClearPage.write(hdf, "sampleindex.cs", relative + "index" + Doclava.htmlExtension);
  /external/chromium/chrome/browser/resources/ntp4/
tile_page.css 21 position: relative;
  /external/replicaisland/src/com/replica/replicaisland/
RenderComponent.java 22 * objects may be set to be "camera-relative" (meaning their screen position is relative to the
23 * location of the camera focus in the scene) or not (meaning their screen position is relative to
99 public void setCameraRelative(boolean relative) {
100 mCameraRelative = relative;
  /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();
  /libcore/luni/src/main/java/java/net/
URI.java 51 * <h3>Absolute vs. Relative URIs</h3>
52 * URIs are either {@link #isAbsolute() absolute or relative}.
55 * <li><strong>Relative:</strong> {@code robots.txt}
61 * <p>Relative URIs do not have a scheme and cannot be converted to URLs. If you
62 * have the absolute URI that a relative URI is relative to, you can use {@link
64 * {@link #relativize} to compute the relative URI from one URI to another.
67 * URI relative = new URI("robots.txt");
71 * System.out.println(absolute.resolve(relative));
78 * Absolute URIs are either {@link #isOpaque() opaque or hierarchical}. Relative
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
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...]
  /external/chromium/chrome/browser/resources/options/
subpages_tab_controls.css 8 position: relative;
13 position: relative;
  /external/chromium/googleurl/src/
gurl.h 141 // Resolves a URL that's possibly relative to this object's URL, and returns
146 // "standard" (SchemeIsStandard() == false) and the input looks relative, we
154 // It is an error to resolve a URL relative to an invalid URL. The result
156 GURL_API GURL Resolve(const std::string& relative) const;
157 GURL_API GURL Resolve(const string16& relative) const;
167 const std::string& relative,
170 const string16& relative,
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_events_c.h 58 extern int SDL_PrivateMouseMotion(Uint8 buttonstate, int relative,
  /external/webkit/Source/WebCore/platform/
KURLGooglePrivate.h 55 void init(const KURL& base, const String& relative,
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/button/
button.edc 111 relative: 0.0 0.0;
115 relative: 1.0 1.0;
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/entry/
entry.edc 62 relative: 0.0 0.0;
66 relative: 1.0 1.0;
  /build/tools/droiddoc/templates-sdk/assets/
android-developer-resource-browser.css 9 position: relative;
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 149 relative: 1.0 0.0;
153 relative: 1.0 1.0;
218 relative: 0.5 0.5;
223 relative: 0.5 0.5;
  /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);

Completed in 706 milliseconds

1 2 3 4 5 6 7 8