Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 67) sorted by relevance

123

/ndk/sources/host-tools/sed-4.2.1/lib/
Dbasename.c34 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); in last_component() local
38 while (ISSLASH (*base)) in last_component()
39 base++; in last_component()
41 for (p = base; *p; p++) in last_component()
47 base = p; in last_component()
52 return (char *) base; in last_component()
76 char const *base = last_component (name); in base_name() local
81 if (! *base) in base_name()
85 length = base_len (base); in base_name()
86 if (ISSLASH (base[length])) in base_name()
[all …]
Dstripslash.c32 char *base = last_component (file); in strip_trailing_slashes() local
38 if (! *base) in strip_trailing_slashes()
39 base = file; in strip_trailing_slashes()
40 base_lim = base + base_len (base); in strip_trailing_slashes()
Dlocalcharset.c124 const char *base = "charset.alias"; in get_charset_aliases() local
136 size_t base_len = strlen (base); in get_charset_aliases()
144 memcpy (file_name + dir_len + add_slash, base, base_len + 1); in get_charset_aliases()
Dstdlib.in.h345 extern long long strtoll (const char *string, char **endptr, int base);
366 extern unsigned long long strtoull (const char *string, char **endptr, int base);
/ndk/build/tools/toolchain-patches/python/Python-2.7.3/
D0004-MINGW-FIXES-sysconfig-like-posix.patch31 'data' : '{base}',
34 - 'stdlib': '{base}/Lib',
35 - 'platstdlib': '{base}/Lib',
36 - 'purelib': '{base}/Lib/site-packages',
37 - 'platlib': '{base}/Lib/site-packages',
38 - 'include': '{base}/Include',
39 - 'platinclude': '{base}/Include',
40 - 'scripts': '{base}/Scripts',
41 + 'stdlib': '{base}/lib/python{py_version_short}',
42 + 'platstdlib': '{base}/lib/python{py_version_short}',
[all …]
/ndk/sources/host-tools/sed-4.2.1/build-aux/
Ddepcomp227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
229 tmpdepfile1=$dir$base.u
230 tmpdepfile2=$base.u
231 tmpdepfile3=$dir.libs/$base.u
234 tmpdepfile1=$dir$base.u
235 tmpdepfile2=$dir$base.u
236 tmpdepfile3=$dir$base.u
314 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
316 tmpdepfile1=$dir$base.d
317 tmpdepfile2=$dir.libs/$base.d
[all …]
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_unistd.cpp318 void* base; in _M_mmap() local
320 base = MMAP(0, len, PROT_READ, MAP_PRIVATE, _M_file_id, offset); in _M_mmap()
321 if (base != (void*)MAP_FAILED) { in _M_mmap()
323 this->_M_unmap(base, len); in _M_mmap()
324 base = 0; in _M_mmap()
327 base =0; in _M_mmap()
331 base = 0; in _M_mmap()
333 return base; in _M_mmap()
336 void _Filebuf_base::_M_unmap(void* base, streamoff len) in _M_unmap() argument
340 munmap((char*)base, len); in _M_unmap()
[all …]
Dfstream_win32io.cpp585 void* base; in _M_mmap() local
601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart, in _M_mmap()
608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) { in _M_mmap()
609 this->_M_unmap(base, len); in _M_mmap()
610 base = 0; in _M_mmap()
613 base = 0; in _M_mmap()
615 return base; in _M_mmap()
618 void _Filebuf_base::_M_unmap(void* base, streamoff len) { in _M_unmap() argument
620 if (base != NULL) in _M_unmap()
621 UnmapViewOfFile(base); in _M_unmap()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_iterator_old.h84 _BidirectionalIterator base() const { return current; } in base() function
137 { return __x.base() == __y.base(); }
176 reverse_iterator(const _Self& __x) : __current(__x.base()) {} in reverse_iterator()
178 _Self& operator=(const _Self& __x) {__current = __x.base(); return *this; }
180 _RandomAccessIterator base() const { return __current; } in base() function
245 return __x.base() == __y.base();
256 return __y.base() < __x.base();
311 return __y.base() - __x.base();
323 Reference__, _Distance>(__x.base() - __n);
D_iterator.h66 _Self& operator = (const _Self& __x) { current = __x.base(); return *this; }
69 reverse_iterator(const reverse_iterator<_Iter>& __x) : current(__x.base()) {} in reverse_iterator()
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
74 iterator_type base() const { return current; } in base() function
115 { return __x.base() == __y.base(); }
120 { return __y.base() < __x.base(); }
152 { return __y.base() - __x.base(); }
/ndk/sources/host-tools/make-3.81/config/
Ddepcomp287 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
303 tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
304 tmpdepfile2=$dir$base.o.d # libtool 1.5
305 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
306 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
309 tmpdepfile1=$dir$base.o.d
310 tmpdepfile2=$dir$base.d
311 tmpdepfile3=$dir$base.d
312 tmpdepfile4=$dir$base.d
/ndk/sources/host-tools/sed-4.2.1/sed/
Dcompile.c63 const unsigned char *base; member
214 CAST(unsigned long)(prog.cur-prog.base),
256 if (prog.cur <= prog.base || *--prog.cur != ch)
305 convert_number(result, buf, bufend, base, maxdigits, default_char) in convert_number() argument
309 int base;
338 if (d < 0 || base <= d)
340 n = n * base + d;
777 char *base; local
785 base = MEMDUP(text, length, char);
786 length = normalize_text(base, length, TEXT_REPLACEMENT);
[all …]
Dutils.c196 ck_mkstemp (p_filename, tmpdir, base) in ck_mkstemp() argument
198 char *base, *tmpdir;
218 template = xmalloc (strlen (tmpdir) + strlen (base) + 8);
219 sprintf (template, "%s/%sXXXXXX", tmpdir, base);
/ndk/build/tools/
Ddev-platform-import.sh380 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
385 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
392 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
402 copy_system_headers $ANDROID_ROOT/frameworks/base/native/include \
416 copy_system_headers $ANDROID_ROOT/frameworks/base/native/include \
433 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
Ddev-system-import.sh570 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
575 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
582 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
592 copy_system_headers $ANDROID_ROOT/frameworks/base/native/include \
606 copy_system_headers $ANDROID_ROOT/frameworks/base/native/include \
623 copy_system_headers $ANDROID_ROOT/frameworks/base/opengl/include \
/ndk/tests/device/test-stlport/unit/
Duninitialized_test.cpp81 struct base {}; struct
82 struct derived : public base {};
220 vector<base*> dst(src.begin(), src.end()); in copy_test()
221 vector<base*>::iterator it(dst.begin()), end(dst.end()); in copy_test()
Dcodecvt_test.cpp56 typedef codecvt<char,char,mbstate_t> base; typedef
58 explicit eater_codecvt(size_t refs = 0) : base(refs) {} in eater_codecvt()
61 virtual base::result
149 typedef codecvt<char,char,mbstate_t> base; typedef
151 explicit generator_codecvt(size_t refs = 0) : base(refs) {} in generator_codecvt()
154 virtual base::result
Dtype_traits_test.cpp130 struct base struct
132 struct derived : public base
260 base b; in manips()
263 base *pb = &b; in manips()
/ndk/tests/device/test-gnustl-full/unit/
Duninitialized_test.cpp81 struct base {}; struct
82 struct derived : public base {};
220 vector<base*> dst(src.begin(), src.end()); in copy_test()
221 vector<base*>::iterator it(dst.begin()), end(dst.end()); in copy_test()
Dcodecvt_test.cpp56 typedef codecvt<char,char,mbstate_t> base; typedef
58 explicit eater_codecvt(size_t refs = 0) : base(refs) {} in eater_codecvt()
61 virtual base::result
149 typedef codecvt<char,char,mbstate_t> base; typedef
151 explicit generator_codecvt(size_t refs = 0) : base(refs) {} in generator_codecvt()
154 virtual base::result
Dtype_traits_test.cpp130 struct base struct
132 struct derived : public base
260 base b; in manips()
263 base *pb = &b; in manips()
/ndk/build/tools/toolchain-patches/gdb/
D0006-Fix-mingw64-builds.patch21 #include "ser-base.h"
33 #include "ser-base.h"
45 #include "ser-base.h"
/ndk/sources/host-tools/make-3.81/doc/
DMakefile.in335 for base in $$list; do \
336 case $$base in \
337 $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
339 if test -f $$base; then d=.; else d=$(srcdir); fi; \
340 for file in $$d/$$base*; do \
/ndk/sources/cxx-stl/stlport/stlport/
Dbitset32 // base class _Base_bitset. The base class works with whole words, not with
/ndk/sources/host-tools/sed-4.2.1/doc/
DMakefile.in741 for base in $$list; do \
742 case $$base in \
743 $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
745 if test -f $$base; then d=.; else d=$(srcdir); fi; \
746 base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
747 …for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][…

123