HomeSort by relevance Sort by last modified time
    Searched refs:to (Results 1 - 25 of 9058) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/string/
stpcpy.c 16 * may be used to endorse or promote products derived from this software
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40 stpcpy(char *to, const char *from)
42 for (; (*to = *from) != '\0'; ++from, ++to);
43 return(to);
strcpy.c 16 * may be used to endorse or promote products derived from this software
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40 strcpy(char *to, const char *from)
42 char *save = to;
44 for (; (*to = *from) != '\0'; ++from, ++to);
  /external/libpng/tests/
pngvalid-gamma-16-to-8 2 exec ./pngvalid --gamma-16-to-8
  /external/libutf/
utfecpy.c 4 * Permission to use, copy, modify, and distribute this software for any
20 utfecpy(char *to, char *e, const char *from)
24 if(to >= e)
25 return to;
26 end = (char*)memccpy(to, from, '\0', e - to);
29 while(end>to && (*--end&0xC0)==0x80)
  /external/clang/test/SemaCXX/
constexpr-duffs-device.cpp 4 constexpr void copy(const char *from, unsigned long count, char *to) {
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++;
  /ndk/tests/build/test-gnustl-chrono/jni/
hanoi.c 3 void hanoi(int from, int to, int mid, int n, void (*callback)(int, int)) {
5 callback(from, to);
7 hanoi(from, mid, to, n - 1, callback);
8 callback(from, to);
9 hanoi(mid, to, from, n - 1, callback);
  /external/valgrind/gdbserver_tests/
mchelp.stderrB.exp 1 sending command help to pid ....
2 sending command help debug to pid ....
3 sending command v.kill to pid ....
mcinvokeRU.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
mcinvokeWS.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_mem_funcs.h 10 * Unless required by applicable law or agreed to in writing, software
26 Permission to distribute, modify and use this file under the standard license
58 #define pv_memset(to, c, n) memset(to, c, n)
61 #define pv_memcpy(to, from, n) memcpy(to, from, n)
62 #define pv_memmove(to, from, n) memmove(to, from, n)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
mp3_mem_funcs.h 10 * Unless required by applicable law or agreed to in writing, software
64 #define pv_memset(to, c, n) memset(to, c, n)
67 #define pv_memcpy(to, from, n) memcpy(to, from, n)
68 #define pv_memmove(to, from, n) memmove(to, from, n)
  /external/llvm/test/MC/ARM/
coproc-diag.s 1 # Special test to make sure we don't error on VFP co-proc access
  /external/valgrind/none/tests/
pth_blockedsig.stdout.exp 1 thread CHILD sending SIGUSR1 to thread MAIN
  /external/valgrind/none/tests/s390x/
ecag.stdout.exp 1 just to silence the consistency checker
  /frameworks/native/libs/binder/
TextOutput.cpp 10 * Unless required by applicable law or agreed to in writing, software
40 TextOutput& operator<<(TextOutput& to, bool val)
42 if (val) to.print("true", 4);
43 else to.print("false", 5);
44 return to;
47 TextOutput& operator<<(TextOutput& to, int val)
51 to.print(buf, strlen(buf));
52 return to;
55 TextOutput& operator<<(TextOutput& to, long val)
59 to.print(buf, strlen(buf))
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CaseFormatTest.java 10 * Unless required by applicable law or agreed to in writing, software
40 assertSame(from + " to " + from, "foo", from.to(from, "foo"));
41 for (CaseFormat to : CaseFormat.values()) {
42 assertEquals(from + " to " + to, "", from.to(to, ""));
43 assertEquals(from + " to " + to, " ", from.to(to, " "))
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
CaseFormatTest.java 10 * Unless required by applicable law or agreed to in writing, software
42 assertSame(from + " to " + from, "foo", from.to(from, "foo"));
43 for (CaseFormat to : CaseFormat.values()) {
44 assertEquals(from + " to " + to, "", from.to(to, ""));
45 assertEquals(from + " to " + to, " ", from.to(to, " "))
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcpcpy.c 16 * may be used to endorse or promote products derived from this software
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from)
44 for (; (*to = *from); ++from, ++to);
45 return(to);
  /external/clang/test/CodeGen/
2002-03-12-StructInitialize.c 5 long to; member in struct:Connection_Type
2002-03-12-StructInitializer.c 9 long to; member in struct:Connection_Type
  /external/wpa_supplicant_8/src/pae/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegment.java 10 * Unless required by applicable law or agreed to in writing, software
23 * It is used to represent the layers of the composing text ({@link ComposingText}).
33 public int to; field in class:StrSegment
65 * @param to The end position
67 public StrSegment(String str, int from, int to) {
70 this.to = to;
  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 10 * Unless required by applicable law or agreed to in writing, software
32 * state to go from A to B for any character that is either 1,2,3 or in
39 private final InternalState to; field in class:StateTableTransition
44 * specified and is subject to change.
50 return String.format("Expression: %s; From: %s; To: %s",
51 expression, from, to);
55 InternalState to) {
59 Preconditions.checkNotNull(to);
62 this.to = to
    [all...]
  /frameworks/native/include/binder/
TextOutput.h 10 * Unless required by applicable law or agreed to in writing, software
42 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); }
54 // Text output stream for printing to the log (via utils/Log.h).
57 // Text output stream for printing to stdout.
60 // Text output stream for printing to stderr.
65 TextOutput& endl(TextOutput& to);
66 TextOutput& indent(TextOutput& to);
67 TextOutput& dedent(TextOutput& to);
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 5 WriteModifiers(FILE* to, int mod, int mask)
10 fprintf(to, "@Override ");
14 fprintf(to, "public ");
17 fprintf(to, "private ");
20 fprintf(to, "protected ");
24 fprintf(to, "static ");
28 fprintf(to, "final ");
32 fprintf(to, "abstract ");
37 WriteArgumentList(FILE* to, const vector<Expression*>& arguments)
41 arguments[i]->Write(to);
    [all...]

Completed in 820 milliseconds

1 2 3 4 5 6 7 8 91011>>