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

12

/external/doclava/src/com/google/doclava/
H A DDocFile.java75 public static void writePage(String docfile, String relative, String outfile) { argument
79 * System.out.println("docfile='" + docfile + "' relative='" + relative + "'" + "' outfile='" +
H A DSampleCode.java67 public void writeDirectory(File dir, String relative) { argument
68 writeDirectory(dir, relative, false);
71 public void writeDirectory(File dir, String relative, boolean offline) { argument
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);
H A DDoclava.java723 private static void writeDirectory(File dir, String relative, JSilver js) { argument
729 String templ = relative + f.getName();
737 DocFile.writePage(f.getAbsolutePath(), relative, filename);
742 writeDirectory(f, relative + f.getName() + "/", js);
/external/replicaisland/src/com/replica/replicaisland/
H A DRenderComponent.java22 * 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) { argument
100 mCameraRelative = relative;
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessorQt.cpp93 virtual QUrl resolve(const QUrl& relative, const QUrl& baseURI) const;
105 QUrl XSLTUriResolver::resolve(const QUrl& relative, const QUrl& baseURI) const argument
107 QUrl url = baseURI.resolved(relative);
/external/dbus/bus/
H A Dtest.c299 DBusString relative; local
316 _dbus_string_init_const (&relative, filename);
318 if (!_dbus_concat_dir_and_file (&config_file, &relative))
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DSection.java177 * @param relative {@code >= 0;} the relative offset
180 public final int getAbsoluteOffset(int relative) { argument
181 if (relative < 0) {
182 throw new IllegalArgumentException("relative < 0");
189 return fileOffset + relative;
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_mouse.c113 int SDL_PrivateMouseMotion(Uint8 buttonstate, int relative, Sint16 x, Sint16 y) argument
127 if ( relative ) {
153 /* If not relative mode, generate relative motion from clamped X/Y.
154 This prevents lots of extraneous large delta relative motion when
157 if ( ! relative ) {
/external/skia/emoji/
H A DEmojiFont.cpp148 // 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,
/external/skia/src/utils/
H A DSkParsePath.cpp50 bool isRelative, SkPoint* relative) {
54 value[index].fX += relative->fX;
55 value[index].fY += relative->fY;
62 bool isRelative, SkScalar relative) {
65 *value += relative;
78 bool relative = false; local
91 relative = false;
94 relative = true;
101 data = find_points(data, points, 1, relative, &c);
107 data = find_points(data, points, 1, relative,
49 find_points(const char str[], SkPoint value[], int count, bool isRelative, SkPoint* relative) argument
61 find_scalar(const char str[], SkScalar* value, bool isRelative, SkScalar relative) argument
[all...]
/external/chromium/googleurl/src/
H A Dgurl.cc167 GURL GURL::Resolve(const std::string& relative) const {
168 return ResolveWithCharsetConverter(relative, NULL);
170 GURL GURL::Resolve(const string16& relative) const {
171 return ResolveWithCharsetConverter(relative, NULL);
176 const std::string& relative,
191 relative.data(), static_cast<int>(relative.length()),
204 const string16& relative,
219 relative.data(), static_cast<int>(relative
175 ResolveWithCharsetConverter( const std::string& relative, url_canon::CharsetConverter* charset_converter) const argument
203 ResolveWithCharsetConverter( const string16& relative, url_canon::CharsetConverter* charset_converter) const argument
[all...]
H A Dgurl_unittest.cc156 // 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));
H A Durl_util.cc149 // 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,
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,
447 const char16* relative,
431 ResolveRelative(const char* base_spec, int base_spec_len, const url_parse::Parsed& base_parsed, const char* relative, int relative_length, url_canon::CharsetConverter* charset_converter, url_canon::CanonOutput* output, url_parse::Parsed* output_parsed) argument
444 ResolveRelative(const char* base_spec, int base_spec_len, const url_parse::Parsed& base_parsed, const char16* relative, int relative_length, url_canon::CharsetConverter* charset_converter, url_canon::CanonOutput* output, url_parse::Parsed* output_parsed) argument
[all...]
/external/skia/src/animator/
H A DSkParseSVGPath.cpp92 bool isRelative, SkPoint* relative)
97 value[index].fX += relative->fX;
98 value[index].fY += relative->fY;
105 bool isRelative, SkScalar relative)
109 *value += relative;
122 bool relative = false; local
134 relative = false;
137 relative = true;
144 data = find_points(data, points, 1, relative, &c);
150 data = find_points(data, points, 1, relative,
91 find_points(const char str[], SkPoint value[], int count, bool isRelative, SkPoint* relative) argument
104 find_scalar(const char str[], SkScalar* value, bool isRelative, SkScalar relative) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbevents.c711 void FB_vgamousecallback(int button, int relative, int dx, int dy) argument
720 posted += SDL_PrivateMouseMotion(0, relative, dx, dy);
767 static int relative = 1; local
920 FB_vgamousecallback(button, relative, dx, dy);
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5events.c296 static void post_mouse_motion(int relative, Sint16 x, Sint16 y) argument
302 0, relative, x, y);
347 /* When in relative mode, warp the OS's idea of where the cursor is to
/external/webkit/Source/WebCore/platform/
H A DKURLGoogle.cpp211 const String& relative,
214 init(base, relative.characters(), relative.length(), queryEncoding);
245 // (for example, resolving a relative URL on a non-hierarchical base), it
377 // Constructs a new URL given a base URL and a possibly relative input URL.
379 KURL::KURL(const KURL& base, const String& relative) argument
381 m_url.init(base, relative, 0);
384 // Constructs a new URL given a base URL and a possibly relative input URL.
385 // Any query portion of the relative URL will be encoded in the given encoding.
387 const String& relative,
210 init(const KURL& base, const String& relative, const TextEncoding* queryEncoding) argument
386 KURL(const KURL& base, const String& relative, const TextEncoding& encoding) argument
[all...]
H A DKURL.cpp329 KURL::KURL(const KURL& base, const String& relative) argument
331 init(base, relative, UTF8Encoding());
334 KURL::KURL(const KURL& base, const String& relative, const TextEncoding& encoding) argument
340 init(base, relative, encoding.encodingForFormSubmission());
351 void KURL::init(const KURL& base, const String& relative, const TextEncoding& encoding) argument
356 m_string = relative;
363 String rel = relative;
426 // unless the relative URL is a single fragment.
432 m_string = relative;
470 // must be relative
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java587 public boolean relative(int rows) throws SQLException { method in class:Impl_RowSet
/external/chromium/third_party/libjingle/source/talk/base/
H A Dproxydetect.cc451 bool relative = true; local
458 relative = true;
465 relative = (line.at(11) != '0');
468 if (relative) {
/external/valgrind/main/memcheck/
H A Dmc_errors.c326 const Char* relative; local
330 relative = "before";
333 relative = "after";
336 relative = "inside";
341 a, delta, relative, ai->Addr.Block.block_desc,
/external/kernel-headers/original/asm-mips/
H A Dsgiarcs.h157 absolute, relative enumerator in enum:linux_seekmode
/external/chromium/chrome/common/extensions/
H A Dextension.cc205 // The relative priority of various external sources is not important,
836 std::string relative; local
837 if (!js->Get(script_index, &value) || !value->GetAsString(&relative)) {
843 GURL url = GetResourceURL(relative);
844 ExtensionResource resource = GetResource(relative);
854 std::string relative; local
855 if (!css->Get(script_index, &value) || !value->GetAsString(&relative)) {
861 GURL url = GetResourceURL(relative);
862 ExtensionResource resource = GetResource(relative);
1266 // Ensure the launch path is a valid relative UR
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DARMv7Assembler.h1975 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
1979 relative -= 2;
1980 return ((relative << 23) >> 23) == relative;
1988 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
1992 relative -= 2;
1993 return ((relative << 20) >> 20) == relative;
2001 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
2012 bool targetInFirstPage = (relative >
2022 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
2045 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
2063 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
2083 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
2100 intptr_t relative = reinterpret_cast<intptr_t>(target) - (reinterpret_cast<intptr_t>(instruction)); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.frameworkadmin.equinox_1.0.200.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 707 milliseconds

12