Searched refs:to (Results 276 - 300 of 7771) sorted by last modified time

<<11121314151617181920>>

/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java9 // unless required by applicable law or agreed to in writing, TagSoup
115 be absolutized (relative to their base URIs) before reporting.
127 slower calls to String.equals(). (We always intern.)
204 elements to be the root element.
225 attempt to restart the restartable elements.
249 Used to see some syntax events that are essential in some
276 // Due to sucky Java order of initialization issues, these
279 // to keep them in sync.
309 // Private clone of Boolean.valueOf that is guaranteed to return
526 private int theEntity = 0; // needs to suppor
[all...]
/external/tcpdump/
H A Dconfigure10 # gives unlimited permission to copy, distribute and modify it.
21 # is contrary to our usage. Disable this feature.
84 # there to prevent editors from complaining about space-tab.
86 # splitting by setting IFS to empty value.)
105 # in which case we are not to be found in the path.
135 # Use a proper internal environment variable to ensure we don't fall
139 # We cannot yet assume a decent shell, so we have to provide a
142 # Preserve -v and -x to the replacement shell.
158 # We don't want this to propagate to othe
[all...]
/external/stlport/
H A Dconfigure45 pass extra options to C++ compiler
47 pass extra options to C compiler
49 pass extra options to linker (via C/C++)
68 Use this option to customize the generated library name.
73 --without-thread Per default STLport libraries are built in order to be usable
81 to link statically with STLport but using the dynamic C runtime use
82 --with-dynamic-rtl; if you want to link dynamicaly with STLport but using the
84 Don't forget to signal the link method when building your appli or dll, in
99 \$CXXFLAGS pass extra options to C++ compiler
100 \$CFLAGS pass extra options to
[all...]
H A Dconfigure.bat5 REM * to see available options, call with option --help
19 echo Please specify at least the compiler you are going to use,
20 echo use "configure --help" to see the available ones.
121 echo You must run the WCE*.BAT file you wish to build STLport for before
131 echo win98 Windows 98 and up to Windows XP excluded
143 echo to link statically with STLport but using the dynamic C runtime use
144 echo --with-dynamic-rtl; if you want to link dynamicaly with STLport but using the
146 echo Don't forget to signal the link method when building your appli or dll, in
154 echo type_traits library is used to get type information and to implemen
[all...]
H A Dlibstlport.mk3 # We put the STL libraries in front of any user libraries, but we need to
/external/stlport/etc/
H A DSTLport-4.5.1.spec30 would like to use your code with STLport add
80 - upgrade to 4.5.1
89 - upgrade to 4.5
92 - upgrade to 4.1-b3
H A DSTLport-4.5.3.spec30 would like to use your code with STLport add
80 - upgrade to 4.5.1
89 - upgrade to 4.5
92 - upgrade to 4.1-b3
H A DSTLport-4.6.spec30 would like to use your code with STLport add
80 - upgrade to 4.6
83 - upgrade to 4.5.1
92 - upgrade to 4.5
95 - upgrade to 4.1-b3
/external/stlport/src/c_locale_dummy/
H A Dc_locale_dummy.c11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
274 wchar_t *to,
277 { *to = *from; return 1; }
280 char *to, size_t n UNUSED,
283 { *to = (char)c; return 1; }
273 _WLocale_mbtowc(struct _Locale_codecvt *lcodecvt UNUSED, wchar_t *to, const char *from, size_t n UNUSED, mbstate_t *st UNUSED) argument
279 _WLocale_wctomb(struct _Locale_codecvt *lcodecvt UNUSED, char *to, size_t n UNUSED, const wchar_t c, mbstate_t *st UNUSED) argument
/external/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c104 try to see locale category LC should be used from environment;
344 wchar_t *to,
347 { *to = *from; return 1; }
350 char *to, size_t n,
353 { *to = (char)c; return 1; }
551 /* We are forced to manually handled the "C" locale for consistency with
561 /* We are forced to manually handled the "C" locale for consistency with
343 _WLocale_mbtowc(struct _Locale_codecvt *lcodecvt, wchar_t *to, const char *from, size_t n, mbstate_t *st) argument
349 _WLocale_wctomb(struct _Locale_codecvt *lcodecvt, char *to, size_t n, const wchar_t c, mbstate_t *st) argument
/external/stlport/src/c_locale_win32/
H A Dc_wlocale_win32.c8 * Permission to use or copy this software for any purpose is hereby granted
10 * Permission to modify the code and to distribute modified code is granted,
143 size_t _WLocale_mbtowc(_Locale_codecvt_t *lcodecvt, wchar_t *to, argument
148 result = MultiByteToWideChar(lcodecvt->cp, lcodecvt->mbtowc_flags, from, 1, to, 1);
156 retval = __mbtowc(lcodecvt, to, from, count);
168 size_t _WLocale_wctomb(_Locale_codecvt_t *lcodecvt, char *to, size_t n, argument
176 /* Limiting the output buf size to INT_MAX seems like reasonable to transform a single wchar_t. */
179 WideCharToMultiByte(lcodecvt->cp, lcodecvt->wctomb_flags, &c, 1, to, (in
[all...]
/external/stlport/src/
H A Dcodecvt.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
87 extern_type* to,
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
91 copy(from, from + len, to);
93 to_next = to + len;
102 intern_type* to,
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
107 __REINTERPRET_CAST(const unsigned char*, from) + len, to);
83 do_out(state_type& , const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
98 do_in(state_type& , const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_limit, intern_type*& to_next) const argument
114 do_unshift(state_type& , extern_type* to, extern_type* , extern_type*& to_next) const argument
[all...]
H A Dfacets_byname.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
58 // We have to do this, instead of just pointer twiddling, because
310 extern_type* to,
313 while (from != from_end && to != to_limit) {
315 to, to_limit - to, *from,
319 to_next = to;
324 to_next = to;
306 do_out(state_type& state, const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
338 do_in(state_type& state, const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_end, intern_type*& to_next) const argument
371 do_unshift(state_type& state, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
[all...]
/external/stlport/src/details/
H A Dfstream_win32io.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
146 // For Read/Write access we have to guess
234 // requires them both to behave same.
329 // Associated the filebuf with a file descriptor pointing to an already-
330 // open file. Mode is set to be consistent with the way that the file
387 // Read up to n characters into a buffer. Return value is number of
391 //Here cast to size_t is safe as n cannot be negative.
393 // The following, while validating that we are still able to extrac
405 char *to = buf + readen; local
[all...]
/external/stlport/stlport/
H A Dfloat.h8 * Permission to use or copy this software for any purpose is hereby granted
10 * Permission to modify the code and to distribute modified code is granted,
22 # error This header is only reentrant once, it should be modified if it has to be included more.
/external/stlport/stlport/stl/
H A D_ioserr.h2 * This file is included in every header that needs the STLport library to be
9 # error STLport iostreams header cannot be used; you chose not to use iostreams in the STLport configuration file (stlport/stl/config/user_config.h).
H A D_pthread_alloc.h18 * Permission to use or copy this software for any purpose is hereby granted
20 * Permission to modify the code and to distribute modified code is granted,
31 * This is similar to the default allocator, except that free-list
35 * It is not an error to allocate memory in thread A and deallocate
45 # error POSIX specific allocator implementation. Your system do not seems to \
47 or report to the STLport forum.
127 // __n is permitted to be 0. The C++ standard says nothing about what
163 * This method do not have to be part of a user defined allocator implementation
244 //The default allocator implementation which is recognize thanks to th
[all...]
/external/stlport/stlport/stl/config/
H A Dcompat.h78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
H A Dfeatures.h18 * Permission to use or copy this software for any purpose is hereby granted
20 * Permission to modify the code and to distribute modified code is granted,
59 /* Placeholder for user to override settings.
60 * It could be also used to mask settings from
87 # error If you do not use iostreams you do not need to build the STLport library.
104 /* some fixes to configuration. This also includes modifications
106 * or settings applicable to a group of compilers, such as
107 * to all who use EDG front-end.
152 # error Sorry but asking for both STLport to b
[all...]
/external/stlport/test/eh/
H A Dbcb.mak13 # It is recommended to use the IDE to change any of the values in this
H A Dcomo.mak8 # point this to proper location
31 # __COMO__ appears not to be defined automatically ;(
H A Dcygwin.mak8 # point this to proper location
39 # dwa 12/22/99 -- had to turn off -ansi flag so we could use SGI IOSTREAMS
H A Ddeccxx.mak11 # point this to proper location
42 # This is to test with native STL
H A Ddjgpp.mak8 # point this to proper location
39 # dwa 12/22/99 -- had to turn off -ansi flag so we could use SGI IOSTREAMS
H A Degcs.mak8 # point this to proper location

Completed in 3880 milliseconds

<<11121314151617181920>>