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

1 2

  /external/chromium/base/third_party/xdg_user_dirs/
xdg_user_dir_lookup.cc 57 int relative; local
125 relative = 0;
129 relative = 1;
134 if (relative)
  /external/dbus/bus/
test.c 298 DBusString relative; local
315 _dbus_string_init_const (&relative, filename);
317 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 });
198 // Relative Layout
  /external/chromium/googleurl/src/
url_util.cc 158 // Remove any whitespace from the middle of the relative URL, possibly
231 // Remove any whitespace from the middle of the relative URL, possibly
235 const CHAR* relative = RemoveURLWhitespace(in_relative, in_relative_length, local
247 relative, relative_length,
256 // Relative, resolve and canonicalize.
260 file_base_scheme, relative,
265 // Not relative, canonicalize the input.
266 return DoCanonicalize(relative, relative_length, charset_converter,
383 const char* relative,
389 relative, relative_length
    [all...]
gurl_unittest.cc 155 // The tricky cases for relative URL resolving are tested in the
160 const char* relative; member in struct:ResolveCase
180 GURL output = input.Resolve(resolve_cases[i].relative);
187 input.Resolve(ConvertUTF8ToUTF16(resolve_cases[i].relative));
417 // Relative path resolver.
  /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...]
  /system/core/sh/
histedit.c 414 * relative histnums.
484 int relative = 0; local
490 relative = 1;
497 if (relative) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URITest.java 73 // relative path with empty fragment;
104 "/relative", // relative starting with /
105 "//relative", // relative starting with //
106 "relative", // relative with no /
107 "#fragment",// relative just with fragment
375 // relative path with scheme
376 construct1("http", "user", "hostname", -1, "relative", "query"
1621 URI relative = base.relativize(uri); local
    [all...]
  /libcore/luni/src/test/java/tests/sql/
ResultSetTest.java 612 * Test method for {@link java.sql.ResultSet#relative(int)}.
617 method = "relative",
627 assertFalse(target.relative(0));
630 assertTrue(target.relative(1));
634 assertTrue(target.relative(1));
639 assertFalse(target.relative(2));
648 target.relative(-2);
658 assertFalse(emptyTarget.relative(Integer.MAX_VALUE));
669 * Test method for {@link java.sql.ResultSet#relative(int)}.
675 method = "relative",
    [all...]
  /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);
  /external/webkit/WebCore/svg/
SVGParserUtilities.cpp 204 * relative coordinates to absolute ones, and convert all curves to cubic beziers.
224 void calculateArc(bool relative, double& curx, double& cury, double angle, double x, double y, double r1, double r2, bool largeArcFlag, bool sweepFlag);
247 bool relative = false; local
252 relative = true;
259 subpathx = curx = relative ? curx + tox : tox;
260 subpathy = cury = relative ? cury + toy : toy;
264 svgMoveTo(narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), closed, !relative); local
269 relative = true;
276 curx = relative ? curx + tox : tox;
277 cury = relative ? cury + toy : toy
282 svgLineTo(narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), !relative); local
372 narrowPrecisionToFloat(y2), narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), !relative); local
408 narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), !relative); local
437 narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), !relative); local
472 svgCurveToQuadraticSmooth(narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), !relative); local
499 narrowPrecisionToFloat(angle), largeArc, sweep, !relative); local
    [all...]
  /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/main/java/org/apache/xpath/compiler/
XPathParser.java 436 * Retrieve a token relative to the current token.
438 * @param i Position relative to current token.
447 int relative = m_queueMark + i; local
449 if ((relative > 0) && (relative < m_ops.getTokenQueueSize()))
451 tok = (String) m_ops.m_tokenQueue.elementAt(relative);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 587 public boolean relative(int rows) throws SQLException { method in class:Impl_RowSet
  /build/tools/droiddoc/src/
DroidDoc.java 625 public static void writeDirectory(File dir, String relative)
632 String templ = relative + f.getName();
641 DocFile.writePage(f.getAbsolutePath(), relative, filename); local
648 writeDirectory(f, relative + f.getName() + "/");
    [all...]
  /external/bluetooth/glib/gio/
glocalfile.c 1577 char *relative; local
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 1496 MethodEntry *relative = pTimed->method; local
    [all...]
  /external/webkit/JavaScriptCore/assembler/
ARMv7Assembler.h 1706 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
    [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 966 milliseconds

1 2