Searched defs:from (Results 1 - 25 of 578) sorted by relevance

1234567891011>>

/external/libutf/
H A Dutfecpy.c20 utfecpy(char *to, char *e, const char *from) argument
26 end = (char*)memccpy(to, from, '\0', e - to);
/external/icu/icu4c/source/i18n/
H A Dzonemeta.h21 UDate from; member in struct:OlsonToMetaMappingEntry
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar32_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[10]= {0}; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
H A Dwchar_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar16_t_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
H A Dchar16_t_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
H A Dchar32_t_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
H A Dchar32_t_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
/external/skia/src/c/
H A Dsk_c_from_to.h8 static bool find_sk(CType from, SKType* to) { argument
10 if (CTypeSkTypeMap[i].fC == from) {
20 static bool find_c(SKType from, CType* to) { argument
22 if (CTypeSkTypeMap[i].fSK == from) {
/external/toybox/toys/lsb/
H A Ddmesg.c40 char *data, *to, *from; local
46 data = to = from = xmalloc(size+1);
52 if (!(toys.optflags & FLAG_r)) while ((from - data) < size) {
53 if (from == data || from[-1] == '\n') {
56 if (*from == '<' && (to = strchr(from, '>'))) from = ++to;
57 if ((toys.optflags&FLAG_t) && *from == '[' && (to = strchr(from, ']')))
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { argument
7 case 0: do { *to++ = *from++;
8 case 7: *to++ = *from++;
9 case 6: *to++ = *from++;
10 case 5: *to++ = *from++;
11 case 4: *to++ = *from++;
12 case 3: *to++ = *from++;
13 case 2: *to++ = *from++;
14 case 1: *to++ = *from++;
/external/compiler-rt/test/asan/TestCases/
H A Dstrcat_strict.c14 void test1(char *to, int to_size, char *from) { argument
16 char* r = strcat(to + to_size, from);
19 void test2(char *to, int to_size, char *from) { argument
22 char* r = strcat(to, from);
29 char *from = (char*)malloc(from_size); local
30 memset(from, 'z', from_size);
31 from[from_size - 1] = '\0';
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
42 free(from);
[all...]
H A Dstrncat_strict.c14 void test1(char *to, int to_size, char *from) { argument
16 char* r = strncat(to + to_size, from, 2);
19 void test2(char *to, int to_size, char *from) { argument
22 char* r = strncat(to, from, 1);
29 char *from = (char*)malloc(from_size); local
30 memset(from, 'z', from_size);
31 from[from_size - 1] = '\0';
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
42 free(from);
[all...]
/external/guava/guava/src/com/google/common/hash/
H A DFunnel.java22 * An object which can send data from an object of type {@code T} into a {@code PrimitiveSink}.
46 * Sends a stream of data from the {@code from} object into the sink {@code into}. There
52 void funnel(T from, PrimitiveSink into); argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalIterable.java69 public static <E> MinimalIterable<E> from(final Collection<E> elements) { method in class:MinimalIterable
/external/icu/icu4c/source/common/
H A Ddtintrv.cpp23 DateInterval::DateInterval(UDate from, UDate to) argument
24 : fromDate(from),
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFind.java34 public void run(String from, String to, DepHandler handler) throws IOException { argument
57 cp = new ClassPathIterator(curDir, from, null);
H A DTextDepHandler.java31 protected void handle(String from, String to) throws IOException { argument
32 w.println(from + " -> " + to);
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DStandaloneJarProcessor.java28 public static void run(File from, File to, JarProcessor proc) throws IOException { argument
31 JarFile in = new JarFile(from);
/external/libgsm/src/
H A Ddebug.c21 void gsm_debug_words P4( (name, from, to, ptr), argument
23 int from,
29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
30 while (from <= to) {
31 fprintf(stderr, "%d ", ptr[ from ] );
32 from++;
35 if (from < to) putc('\n', stderr);
41 void gsm_debug_longwords P4( (name, from, to, ptr), argument
43 int from,
49 fprintf( stderr, "%s [%d .. %d]: ", name, from, t
[all...]
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldCopier.java11 public <T> void copyValue(T from, T to, Field field) throws IllegalAccessException { argument
12 Object value = field.get(from);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DFromParser.java43 public FromParser(String from) { argument
44 super(from);
53 From from = new From();
59 super.parse(from);
61 return from;
77 * Obtained from:
85 * Obtained from:
88 * Moved some changes from jain-sip-1.2 to java.net
94 * CVS: Obtained from:
95 * CVS: If this change has been taken from anothe
[all...]
/external/openssh/openbsd-compat/
H A Dbsd-statvfs.c37 copy_statfs_to_statvfs(struct statvfs *to, struct statfs *from) argument
39 to->f_bsize = from->f_bsize;
40 to->f_frsize = from->f_bsize; /* no exact equivalent */
41 to->f_blocks = from->f_blocks;
42 to->f_bfree = from->f_bfree;
43 to->f_bavail = from->f_bavail;
44 to->f_files = from->f_files;
45 to->f_ffree = from->f_ffree;
46 to->f_favail = from->f_ffree; /* no exact equivalent */
49 to->f_flag = from
[all...]

Completed in 746 milliseconds

1234567891011>>