Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 55) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/src/
Dnum_put.cpp31 __insert_grouping_aux(Char* first, Char* last, const string& grouping, in __insert_grouping_aux() argument
36 if (first == last) in __insert_grouping_aux()
47 Char* cur_group = last; // Points immediately beyond the rightmost in __insert_grouping_aux()
63 ++last; in __insert_grouping_aux()
64 copy_backward(cur_group, last, last + 1); in __insert_grouping_aux()
68 return (last - first) + sign + basechars; in __insert_grouping_aux()
135 __insert_grouping(char * first, char * last, const string& grouping, in __insert_grouping() argument
137 return __insert_grouping_aux(first, last, grouping, in __insert_grouping()
149 __insert_grouping(wchar_t* first, wchar_t* last, const string& grouping, in __insert_grouping() argument
152 return __insert_grouping_aux(first, last, grouping, separator, in __insert_grouping()
Dtime_facets.cpp171 static void __append(__iostring &buf, char *first, char *last, const ctype<char>& /* ct */) in __append() argument
172 { buf.append(first, last); } in __append()
174 static void __append(__iowstring &buf, char *first, char *last, const ctype<wchar_t>& ct) { in __append() argument
176 ct.widen(first, last, _wbuf); in __append()
177 buf.append(_wbuf, _wbuf + (last - first)); in __append()
Dfacets_byname.cpp76 ctype_byname<char>::do_toupper(char* first, const char* last) const { in do_toupper()
77 for ( ; first != last ; ++first) in do_toupper()
79 return last; in do_toupper()
83 ctype_byname<char>::do_tolower(char* first, const char* last) const { in do_tolower()
84 for ( ; first != last ; ++first) in do_tolower()
86 return last; in do_tolower()
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Drecursion13 $(MAKE) -f #MAKEFILE# last
14 last:
25 make 'CFLAGS=-O' -f #MAKEFILE# last
35 #MAKEPATH# -f #MAKEFILE# last
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Drecall.sed1 # Check that the empty regex recalls the last *executed* regex,
2 # not the last *compiled* regex
Duniq.sed4 # On the last line, print and exit
14 # If the @code{N} command had added the last line, print and exit
/ndk/tests/device/test-gnustl-full/unit/
Dfind_test.cpp130 char *last = find(pstr, pstr + str_size, 'x'); in find_char() local
131 CPPUNIT_ASSERT( last == pstr + str_size ); in find_char()
/ndk/tests/device/test-stlport/unit/
Dfind_test.cpp130 char *last = find(pstr, pstr + str_size, 'x'); in find_char() local
131 CPPUNIT_ASSERT( last == pstr + str_size ); in find_char()
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_win32io.cpp407 char *last = from + numberOfBytesRead - 1; in _M_read() local
408 for (; from <= last && *from != _STLP_CTRLZ; ++from) { in _M_read()
412 if (from < last) { // not at buffer end in _M_read()
451 if (from <= last) { // terminated due to CTRLZ in _M_read()
452 SetFilePointer(_M_file_id, -(LONG)((last + 1) - from), 0, FILE_CURRENT); in _M_read()
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dsuffix4 $details = "The suffix function will return the string following the last _._\n"
45 # to send the name of the last logfile created. You may also use
Ddir32 # to send the name of the last logfile created. You may also use
Dfindstring35 # to send the name of the last logfile created. You may also use
Daddprefix32 # to send the name of the last logfile created. You may also use
Dnotdir32 # to send the name of the last logfile created. You may also use
Djoin32 # to send the name of the last logfile created. You may also use
Dbasename32 # to send the name of the last logfile created. You may also use
Dandor8 # For $(and ...), it will either be empty or the last value
/ndk/sources/host-tools/sed-4.2.1/doc/
Dsed.info92 * tail:: Printing the last lines
238 refers to the last line of each file, and files invoked from the
352 This address matches the last line of the last file of input, or
353 the last line of each file when the `-i' or `-s' options are
361 The empty regular expression `//' repeats the last regular
539 in the list, make it the first or last; to include `^' put it
639 the last of which is an `A'.
836 last ending with a `\', which are removed from the output) to be
855 (each but the last ending with a `\', which are removed from the
861 the lines of text which follow this command (each but the last
[all …]
Dsed-in.texi124 * tail:: Printing the last lines
355 of each file, @code{$} refers to the last line of each file,
479 @cindex Address, last line
481 @cindex Line, selecting last
482 This address matches the last line of the last file of input, or
483 the last line of each file when the @option{-i} or @option{-s} options
495 The empty regular expression @samp{//} repeats the last regular
757 make it the first or last; to include @code{^} put
872 the last of which is an @samp{A}.
1167 (each but the last ending with a @code{\},
[all …]
Dsed.texi125 * tail:: Printing the last lines
356 of each file, @code{$} refers to the last line of each file,
480 @cindex Address, last line
482 @cindex Line, selecting last
483 This address matches the last line of the last file of input, or
484 the last line of each file when the @option{-i} or @option{-s} options
496 The empty regular expression @samp{//} repeats the last regular
758 make it the first or last; to include @code{^} put
873 the last of which is an @samp{A}.
1168 (each but the last ending with a @code{\},
[all …]
/ndk/sources/host-tools/make-3.81/
Dfiledef.h43 struct file *last; /* Last entry for the same file name. */ member
Dmain.c1825 register struct dep *d, *last; in main() local
1826 last = 0; in main()
1848 if (last == 0) in main()
1851 last->next = d->next; in main()
1856 d = last == 0 ? read_makefiles : last->next; in main()
1867 last = d; in main()
/ndk/sources/host-tools/sed-4.2.1/
DNEWS107 * // matches the last regular expression even in POSIXLY_CORRECT mode.
189 * fix `sed n' printing the last line twice.
258 * Remove last vestiges of super-sed
334 * Bug fix: the // empty regular expressions now refers to the last
335 regular expression that was matched, rather than to the last
422 instead of "repeat the last REmatch". As far as I can tell
/ndk/build/gmsl/
D__gmsl186 # Function: last
188 # Returns: Returns the last element of a list
191 last = $(__gmsl_tr1)$(lastword $1)
193 last = $(__gmsl_tr1)$(if $1,$(word $(words $1),$1))
206 # Returns: Returns the list with the last element removed
268 $(if $(filter $(call last,$1),$(call chop,$1)),,$(call last,$1))))
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_num_put.h166 extern ptrdiff_t _STLP_CALL __insert_grouping(char* first, char* last, const string&, char, char, c…

123