/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/anyhow-1.0.93/tests/ |
D | test_ensure.rs | 93 let test = || Ok(ensure!( in test_recursion() localVariable 109 let test = || { in test_low_precedence_control_flow() localVariable 126 let test = || Ok(ensure!(false == true && false)); in test_low_precedence_binary_operator() localVariable 130 let test = || Ok(ensure!(while false == true && false {} < ())); in test_low_precedence_binary_operator() localVariable 138 let test = || Ok(ensure!(a <= b || a - b <= 10)); in test_low_precedence_binary_operator() localVariable 146 let test = || Ok(ensure!(a - b <= 10)); in test_high_precedence_binary_operator() localVariable 155 let test = || Ok(ensure!(S + move || 1 == 1)); in test_closure() localVariable 158 let test = || Ok(ensure!(S + || 1 == 1)); in test_closure() localVariable 163 let test = || Ok(ensure!(S + move |()| 1 == 1)); in test_closure() localVariable 166 let test = || Ok(ensure!(S + |()| 1 == 1)); in test_closure() localVariable [all …]
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/anyhow-1.0.93/tests/ |
D | test_ensure.rs | 93 let test = || Ok(ensure!( in test_recursion() localVariable 109 let test = || { in test_low_precedence_control_flow() localVariable 126 let test = || Ok(ensure!(false == true && false)); in test_low_precedence_binary_operator() localVariable 130 let test = || Ok(ensure!(while false == true && false {} < ())); in test_low_precedence_binary_operator() localVariable 138 let test = || Ok(ensure!(a <= b || a - b <= 10)); in test_low_precedence_binary_operator() localVariable 146 let test = || Ok(ensure!(a - b <= 10)); in test_high_precedence_binary_operator() localVariable 155 let test = || Ok(ensure!(S + move || 1 == 1)); in test_closure() localVariable 158 let test = || Ok(ensure!(S + || 1 == 1)); in test_closure() localVariable 163 let test = || Ok(ensure!(S + move |()| 1 == 1)); in test_closure() localVariable 166 let test = || Ok(ensure!(S + |()| 1 == 1)); in test_closure() localVariable [all …]
|
/external/rust/android-crates-io/crates/anyhow/tests/ |
D | test_ensure.rs | 94 let test = || Ok(ensure!( in test_recursion() localVariable 110 let test = || { in test_low_precedence_control_flow() localVariable 127 let test = || Ok(ensure!(false == true && false)); in test_low_precedence_binary_operator() localVariable 131 let test = || Ok(ensure!(while false == true && false {} < ())); in test_low_precedence_binary_operator() localVariable 139 let test = || Ok(ensure!(a <= b || a - b <= 10)); in test_low_precedence_binary_operator() localVariable 147 let test = || Ok(ensure!(a - b <= 10)); in test_high_precedence_binary_operator() localVariable 156 let test = || Ok(ensure!(S + move || 1 == 1)); in test_closure() localVariable 159 let test = || Ok(ensure!(S + || 1 == 1)); in test_closure() localVariable 164 let test = || Ok(ensure!(S + move |()| 1 == 1)); in test_closure() localVariable 167 let test = || Ok(ensure!(S + |()| 1 == 1)); in test_closure() localVariable [all …]
|
/external/clang/test/Lexer/ |
D | char-escapes.c | 3 int test['\\' == 92 ? 1 : -1]; variable 4 int test['\"' == 34 ? 1 : -1]; variable 5 int test['\'' == 39 ? 1 : -1]; variable 6 int test['\?' == 63 ? 1 : -1]; variable 7 int test['\a' == 7 ? 1 : -1]; variable 8 int test['\b' == 8 ? 1 : -1]; variable 9 int test['\e' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable 10 int test['\E' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable 11 int test['\f' == 12 ? 1 : -1]; variable 12 int test['\n' == 10 ? 1 : -1]; variable [all …]
|
/external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
D | ctor_comp_alloc.pass.cpp | 22 struct test struct 25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 29 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 30 test(const value_compare& comp, const test_allocator<int>& a) in test() argument 32 test(const value_compare& comp, const container_type& c, in test() argument 35 test(const value_compare& comp, container_type&& c, in test() argument 37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_alloc.pass.cpp | 22 struct test struct 25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 29 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 30 test(const value_compare& comp, const test_allocator<int>& a) in test() function 32 test(const value_compare& comp, const container_type& c, in test() function 35 test(const value_compare& comp, container_type&& c, in test() argument 37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_comp_rcont_alloc.pass.cpp | 33 struct test struct 36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 40 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 41 test(const value_compare& comp, const test_allocator<int>& a) in test() argument 43 test(const value_compare& comp, const container_type& c, in test() argument 46 test(const value_compare& comp, container_type&& c, in test() argument 48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 50 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_move_alloc.pass.cpp | 36 struct test struct 39 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 43 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 44 test(const value_compare& comp, const test_allocator<int>& a) in test() function 46 test(const value_compare& comp, const container_type& c, in test() function 48 test(const value_compare& comp, container_type&& c, in test() argument 50 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 51 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_comp_cont_alloc.pass.cpp | 33 struct test struct 36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 40 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 41 test(const value_compare& comp, const test_allocator<int>& a) in test() argument 43 test(const value_compare& comp, const container_type& c, in test() function 46 test(const value_compare& comp, container_type&& c, in test() argument 48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 50 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_copy_alloc.pass.cpp | 31 struct test struct 34 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 38 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 39 test(const value_compare& comp, const test_allocator<int>& a) in test() function 41 test(const value_compare& comp, const container_type& c, in test() argument 43 test(const test& q, const test_allocator<int>& a) : base(q, a) {} in test() argument 44 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
/external/cronet/stable/third_party/libc++/src/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
D | ctor_comp_alloc.pass.cpp | 21 struct test struct 24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 28 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 29 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 31 test(const value_compare& compare, const container_type& container, in test() function 34 test(const value_compare& compare, container_type&& container, in test() function 36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_alloc.pass.cpp | 21 struct test struct 24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 28 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 29 test(const value_compare& comp, const test_allocator<int>& a) in test() function 31 test(const value_compare& comp, const container_type& container, in test() function 34 test(const value_compare& comp, container_type&& container, in test() argument 36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_comp_rcont_alloc.pass.cpp | 32 struct test struct 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 40 test(const value_compare& compare, const test_allocator<int>& a) in test() function 42 test(const value_compare& compare, const container_type& container, in test() argument 45 test(const value_compare& compare, container_type&& container, in test() function 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 49 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_comp_cont_alloc.pass.cpp | 32 struct test struct 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 40 test(const value_compare& compare, const test_allocator<int>& a) in test() function 42 test(const value_compare& compare, const container_type& container, in test() function 45 test(const value_compare& compare, container_type&& container, in test() argument 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 49 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_move_alloc.pass.cpp | 36 struct test struct 39 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 43 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 44 test(const value_compare& compare, const test_allocator<int>& a) in test() function 46 test(const value_compare& compare, const container_type& container, in test() function 48 test(const value_compare& compare, container_type&& container, in test() function 50 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 51 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
/external/cronet/tot/third_party/libc++/src/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
D | ctor_comp_alloc.pass.cpp | 21 struct test struct 24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 28 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 29 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 31 test(const value_compare& compare, const container_type& container, in test() function 34 test(const value_compare& compare, container_type&& container, in test() function 36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_alloc.pass.cpp | 21 struct test struct 24 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 28 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 29 test(const value_compare& comp, const test_allocator<int>& a) in test() argument 31 test(const value_compare& comp, const container_type& container, in test() argument 34 test(const value_compare& comp, container_type&& container, in test() function 36 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 38 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_comp_rcont_alloc.pass.cpp | 32 struct test struct 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 40 test(const value_compare& compare, const test_allocator<int>& a) in test() argument 42 test(const value_compare& compare, const container_type& container, in test() argument 45 test(const value_compare& compare, container_type&& container, in test() function 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 49 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_move_alloc.pass.cpp | 36 struct test struct 39 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 43 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 44 test(const value_compare& compare, const test_allocator<int>& a) in test() function 46 test(const value_compare& compare, const container_type& container, in test() function 48 test(const value_compare& compare, container_type&& container, in test() function 50 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 51 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
D | ctor_comp_cont_alloc.pass.cpp | 32 struct test struct 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; argument 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 40 test(const value_compare& compare, const test_allocator<int>& a) in test() function 42 test(const value_compare& compare, const container_type& container, in test() argument 45 test(const value_compare& compare, container_type&& container, in test() function 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 49 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
/external/cronet/tot/third_party/icu/source/test/intltest/ |
D | itmajor.cpp | 58 IntlTestUtilities test; in runIndexedTest() local 67 IntlTestNormalize test; in runIndexedTest() local 77 IntlTestCollator test; in runIndexedTest() local 87 RegexTest test; in runIndexedTest() local 97 IntlTestFormat test; in runIndexedTest() local 107 IntlTestTransliterator test; in runIndexedTest() local 117 IntlTestRBBI test; in runIndexedTest() local 126 IntlTestRBNF test; in runIndexedTest() local 135 RbnfRoundTripTest test; in runIndexedTest() local 145 ICUServiceTest test; in runIndexedTest() local [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | itmajor.cpp | 58 IntlTestUtilities test; in runIndexedTest() local 67 IntlTestNormalize test; in runIndexedTest() local 77 IntlTestCollator test; in runIndexedTest() local 87 RegexTest test; in runIndexedTest() local 97 IntlTestFormat test; in runIndexedTest() local 107 IntlTestTransliterator test; in runIndexedTest() local 117 IntlTestRBBI test; in runIndexedTest() local 126 IntlTestRBNF test; in runIndexedTest() local 135 RbnfRoundTripTest test; in runIndexedTest() local 145 ICUServiceTest test; in runIndexedTest() local [all …]
|
/external/cronet/stable/third_party/icu/source/test/intltest/ |
D | itmajor.cpp | 58 IntlTestUtilities test; in runIndexedTest() local 67 IntlTestNormalize test; in runIndexedTest() local 77 IntlTestCollator test; in runIndexedTest() local 87 RegexTest test; in runIndexedTest() local 97 IntlTestFormat test; in runIndexedTest() local 107 IntlTestTransliterator test; in runIndexedTest() local 117 IntlTestRBBI test; in runIndexedTest() local 126 IntlTestRBNF test; in runIndexedTest() local 135 RbnfRoundTripTest test; in runIndexedTest() local 145 ICUServiceTest test; in runIndexedTest() local [all …]
|
/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/ |
D | ctor_alloc.pass.cpp | 21 struct test struct 24 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; argument 26 explicit test(const test_allocator<int>& a) : base(a) {} in test() argument 27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() function 29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() function 30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() argument 32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|
/external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/ |
D | ctor_alloc.pass.cpp | 21 struct test struct 24 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; argument 26 explicit test(const test_allocator<int>& a) : base(a) {} in test() function 27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() function 29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() argument 30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() function 32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() argument
|