HomeSort by relevance Sort by last modified time
    Searched refs:to (Results 126 - 150 of 16679) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char32_t_unshift.pass.cpp 15 // externT* to, externT* to_end, externT*& to_next) const;
27 std::vector<char> to(3);
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
32 assert(to_next == to.data());
char_unshift.pass.cpp 15 // externT* to, externT* to_end, externT*& to_next) const;
27 std::vector<char> to(3);
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
32 assert(to_next == to.data());
wchar_t_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
31 std::vector<char> to(from.size()+1);
36 to.data(), to.data() + to.size(), to_next);
39 assert(to_next - to.data() == from.size());
40 assert(to.data() == std::string("some text"));
45 std::vector<char> to(from.size()+1);
50 to.data(), to.data() + to.size(), to_next)
    [all...]
wchar_t_unshift.pass.cpp 15 // externT* to, externT* to_end, externT*& to_next) const;
29 std::vector<F::extern_type> to(3);
33 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::ok);
34 assert(to_next == to.data());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
serial2.l 2 .*:5: Error: Unable to mix instructions as specified
3 .*:6: Error: Unable to mix instructions as specified
4 .*:8: Error: Unable to mix instructions as specified
5 .*:9: Error: Unable to mix instructions as specified
6 .*:11: Error: Unable to mix instructions as specified
7 .*:12: Error: Unable to mix instructions as specified
8 .*:13: Error: Unable to mix instructions as specified
9 .*:14: Error: Unable to mix instructions as specified
10 .*:16: Error: Unable to mix instructions as specified
11 .*:17: Error: Unable to mix instructions as specifie
    [all...]
  /external/v8/test/mjsunit/
function-length-accessor.js 10 // long comment to trigger lazy compilation.
11 // long comment to trigger lazy compilation.
12 // long comment to trigger lazy compilation.
13 // long comment to trigger lazy compilation.
14 // long comment to trigger lazy compilation.
15 // long comment to trigger lazy compilation.
16 // long comment to trigger lazy compilation.
17 // long comment to trigger lazy compilation.
18 // long comment to trigger lazy compilation.
19 // long comment to trigger lazy compilation
    [all...]
  /prebuilts/go/darwin-x86/test/
escape_field.go 7 // Test escape analysis with respect to field assignments.
24 i := 0 // ERROR "moved to heap: i$"
26 x.p1 = &i // ERROR "&i escapes to heap$"
27 sink = x.p1 // ERROR "x\.p1 escapes to heap"
31 i := 0 // ERROR "moved to heap: i$"
34 x.p1 = &i // ERROR "&i escapes to heap$"
35 sink = x.p2 // ERROR "x\.p2 escapes to heap"
39 i := 0 // ERROR "moved to heap: i$"
41 x.p1 = &i // ERROR "&i escapes to heap$"
42 sink = x // ERROR "x escapes to heap
    [all...]
escape_closure.go 14 x := 0 // ERROR "moved to heap: x"
17 // BAD: x should not escape to heap here
18 }(&x) // ERROR "&x escapes to heap"
22 x := 0 // ERROR "moved to heap: x"
26 // BAD: x should not escape to heap here
27 }(&x) // ERROR "&x escapes to heap"
34 x := 0 // ERROR "moved to heap: x"
37 }(&x) // ERROR "&x escapes to heap"
42 x := 0 // ERROR "moved to heap: x"
44 sink = p // ERROR "p escapes to heap
    [all...]
escape_struct_param2.go 25 func (u U) SP() *string { // ERROR "leaking param: u to result ~r0 level=0$"
29 func (u U) SPP() **string { // ERROR "leaking param: u to result ~r0 level=0$"
33 func (u U) SPPi() *string { // ERROR "leaking param: u to result ~r0 level=1$"
38 s := "cat" // ERROR "moved to heap: s$"
39 ps := &s // ERROR "&s escapes to heap$"
46 s := "cat" // ERROR "moved to heap: s$"
47 ps := &s // ERROR "&s escapes to heap$"
53 // BAD: need fine-grained analysis to avoid spurious escape of ps
55 s := "cat" // ERROR "moved to heap: s$"
56 ps := &s // ERROR "&s escapes to heap$" "moved to heap: ps$
    [all...]
escape_struct_param1.go 25 func (u *U) SP() *string { // ERROR "leaking param: u to result ~r0 level=1$"
29 func (u *U) SPP() **string { // ERROR "leaking param: u to result ~r0 level=1$"
33 func (u *U) SPPi() *string { // ERROR "leaking param: u to result ~r0 level=2$"
38 s := "cat" // ERROR "moved to heap: s$"
39 ps := &s // ERROR "&s escapes to heap$"
46 s := "cat" // ERROR "moved to heap: s$"
47 ps := &s // ERROR "&s escapes to heap$"
53 // BAD: need fine-grained (field-sensitive) analysis to avoid spurious escape of ps
55 s := "cat" // ERROR "moved to heap: s$"
56 ps := &s // ERROR "&s escapes to heap$" "moved to heap: ps$
    [all...]
  /prebuilts/go/linux-x86/test/
escape_field.go 7 // Test escape analysis with respect to field assignments.
24 i := 0 // ERROR "moved to heap: i$"
26 x.p1 = &i // ERROR "&i escapes to heap$"
27 sink = x.p1 // ERROR "x\.p1 escapes to heap"
31 i := 0 // ERROR "moved to heap: i$"
34 x.p1 = &i // ERROR "&i escapes to heap$"
35 sink = x.p2 // ERROR "x\.p2 escapes to heap"
39 i := 0 // ERROR "moved to heap: i$"
41 x.p1 = &i // ERROR "&i escapes to heap$"
42 sink = x // ERROR "x escapes to heap
    [all...]
escape_closure.go 14 x := 0 // ERROR "moved to heap: x"
17 // BAD: x should not escape to heap here
18 }(&x) // ERROR "&x escapes to heap"
22 x := 0 // ERROR "moved to heap: x"
26 // BAD: x should not escape to heap here
27 }(&x) // ERROR "&x escapes to heap"
34 x := 0 // ERROR "moved to heap: x"
37 }(&x) // ERROR "&x escapes to heap"
42 x := 0 // ERROR "moved to heap: x"
44 sink = p // ERROR "p escapes to heap
    [all...]
escape_struct_param2.go 25 func (u U) SP() *string { // ERROR "leaking param: u to result ~r0 level=0$"
29 func (u U) SPP() **string { // ERROR "leaking param: u to result ~r0 level=0$"
33 func (u U) SPPi() *string { // ERROR "leaking param: u to result ~r0 level=1$"
38 s := "cat" // ERROR "moved to heap: s$"
39 ps := &s // ERROR "&s escapes to heap$"
46 s := "cat" // ERROR "moved to heap: s$"
47 ps := &s // ERROR "&s escapes to heap$"
53 // BAD: need fine-grained analysis to avoid spurious escape of ps
55 s := "cat" // ERROR "moved to heap: s$"
56 ps := &s // ERROR "&s escapes to heap$" "moved to heap: ps$
    [all...]
escape_struct_param1.go 25 func (u *U) SP() *string { // ERROR "leaking param: u to result ~r0 level=1$"
29 func (u *U) SPP() **string { // ERROR "leaking param: u to result ~r0 level=1$"
33 func (u *U) SPPi() *string { // ERROR "leaking param: u to result ~r0 level=2$"
38 s := "cat" // ERROR "moved to heap: s$"
39 ps := &s // ERROR "&s escapes to heap$"
46 s := "cat" // ERROR "moved to heap: s$"
47 ps := &s // ERROR "&s escapes to heap$"
53 // BAD: need fine-grained (field-sensitive) analysis to avoid spurious escape of ps
55 s := "cat" // ERROR "moved to heap: s$"
56 ps := &s // ERROR "&s escapes to heap$" "moved to heap: ps$
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cfi/
cfi-alpha-3.d 17 DW_CFA_advance_loc: 4 to 0+0004
19 DW_CFA_advance_loc: 4 to 0+0008
21 DW_CFA_advance_loc: 4 to 0+000c
23 DW_CFA_advance_loc: 4 to 0+0010
25 DW_CFA_advance_loc: 4 to 0+0014
27 DW_CFA_advance_loc: 4 to 0+0018
29 DW_CFA_advance_loc: 36 to 0+003c
cfi-common-2.d 15 DW_CFA_advance_loc: 4 to .*
17 DW_CFA_advance_loc: 4 to .*
19 DW_CFA_advance_loc: 4 to .*
21 DW_CFA_advance_loc: 4 to .*
23 DW_CFA_advance_loc: 4 to .*
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-dw2-4.d 8 \[0x.*\] Extended opcode 2: set Address to 0x0
9 \[0x.*\] Special opcode .*: advance Address by 0 to 0x0 and Line by 7 to 8
10 \[0x.*\] Advance PC by 32780 to 0x800c
11 \[0x.*\] Special opcode .*: advance Address by 0 to 0x800c and Line by 3 to 11
12 \[0x.*\] Advance PC by 2 to 0x800e
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips@loc-swap.d 8 # into a branch delay slot is updated to point to the branch instead
44 \[0x.*\] Extended opcode 2: set Address to 0x1
45 \[0x.*\] Special opcode 11: advance Address by 0 to 0x1 and Line by 6 to 7
46 \[0x.*\] Special opcode 35: advance Address by 2 to 0x3 and Line by 2 to 9
47 \[0x.*\] Special opcode 64: advance Address by 4 to 0x7 and Line by 3 to 12
48 \[0x.*\] Special opcode 7: advance Address by 0 to 0x7 and Line by 2 to 1
    [all...]
  /external/libgsm/src/
debug.c 14 * calls to functions in this module are #defined to nothing
21 void gsm_debug_words P4( (name, from, to, ptr),
24 int to,
29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
30 while (from <= to) {
35 if (from < to) putc('\n', stderr);
41 void gsm_debug_longwords P4( (name, from, to, ptr),
44 int to,
49 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
    [all...]
  /external/valgrind/gdbserver_tests/
mcinfcallWSRU.stderr.exp 2 Brussels ready to sleep and/or burn
3 London ready to sleep and/or burn
4 Petaouchnok ready to sleep and/or burn
5 main ready to sleep and/or burn
7 Reset valgrind output to log (orderly_finish)
nlvgdbsigqueue.stderr.exp 7 Brussels ready to sleep and/or burn
8 London ready to sleep and/or burn
9 Petaouchnok ready to sleep and/or burn
10 main ready to sleep and/or burn
11 Gdb request to kill this process
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/cfi/
cfi-common-2.d 15 DW_CFA_advance_loc: 4 to .*
17 DW_CFA_advance_loc: 4 to .*
19 DW_CFA_advance_loc: 4 to .*
21 DW_CFA_advance_loc: 4 to .*
23 DW_CFA_advance_loc: 4 to .*
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
lbranch.s 8 jbra Lend ; Must be switched to a jmp
9 jbsr toto ; -> to a jsr
10 jbne toto ; -> to a beq+jmp
11 jbeq toto ; -> to a bne+jmp
12 jbcs toto ; -> to a bcc+jmp
13 jbcc toto ; -> to a bcs+jmp
16 beq bidule ; -> to a bne+jmp
17 bcs bidule ; -> to a bcc+jmp
18 bcc bidule ; -> to a bcs+jmp
22 bne Lend ; -> to a beq+jm
    [all...]
  /system/tools/aidl/
ast_cpp.cpp 10 * Unless required by applicable law or agreed to in writing, software
44 void ClassDecl::Write(CodeWriter* to) const {
45 to->Write("class %s ", name_.c_str());
48 to->Write(": public %s ", parent_.c_str());
50 to->Write("{\n");
53 to->Write("public:\n");
56 dec->Write(to);
59 to->Write("private:\n");
62 dec->Write(to);
64 to->Write("}; // class %s\n", name_.c_str())
    [all...]
  /external/droiddriver/
contributing_aosp.md 5 Follow instructions at https://source.android.com/source/downloading.html except those noted below. You need to set up authentication to be able to submit changes.
8 Create a dir for AOSP, e.g. ~/android/aosp. It should be separate from your work on the internal repo to avoid confusion.
18 The code should be downloaded to the current dir. You may see some lines in the output like:
25 [Submitting patches to Android](https://source.android.com/source/submit-patches.html)
32 After submitting a branch to gerrit for review, each commit will show up as an individual patch set on gerrit. First the code needs to be code reviewed (+2), then verified & submitted by an approver. Reviewers without approval rights are limited to adding a code review +1.
34 If commits are uploaded together (on the same branch) then they are considered dependent upon eachother. To submit an individual commit without requiring other commits to be merged first, that commit must b (…)
    [all...]

Completed in 758 milliseconds

1 2 3 4 56 7 8 91011>>