HomeSort by relevance Sort by last modified time
    Searched refs:do_stuff (Results 1 - 2 of 2) sorted by null

  /external/autotest/client/common_lib/test_utils/
mock_demo.py 52 # say we want to test that do_stuff is doing what we think it is doing
53 def do_stuff(a, b, func): function
99 do_stuff(m1, m2, f)
  /external/clang/test/SemaCXX/
constant-expression-cxx1y.cpp 191 constexpr int do_stuff(int k1, int k2) { function in namespace:array_resize
196 static_assert(do_stuff(1, 2) == 3, "");
197 static_assert(do_stuff(0, 0) == 5, "");
198 static_assert(do_stuff(1233, 1233) == 5, "");
199 static_assert(do_stuff(1233, 0) == 1, "");
200 static_assert(do_stuff(1234, 0) == 1, ""); // expected-error {{constant expression}} expected-note {{in call}}
201 static_assert(do_stuff(1235, 0) == 1, ""); // expected-error {{constant expression}} expected-note {{in call}}
202 static_assert(do_stuff(-1, 0) == 1, ""); // expected-error {{constant expression}} expected-note {{in call}}

Completed in 294 milliseconds