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

  /external/v8/test/mjsunit/
closures.js 35 function MyFunction() {
39 for (var i = 0; i < 5; ++i) MyFunction();
40 %OptimizeFunctionOnNextCall(MyFunction)
41 runner(MyFunction, n * 2);
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 326 typedef int MyFunction(bool, int);
328 class MyActionImpl : public ActionInterface<MyFunction> {
341 Action<MyFunction> action = MakeAction(new MyActionImpl);
354 Action<MyFunction> action(new MyActionImpl);
359 const Action<MyFunction> action(new MyActionImpl);
367 Action<MyFunction> a1(new MyActionImpl);
368 Action<MyFunction> a2(a1); // Tests the copy constructor.
701 typedef void MyFunction(bool, int*, char*);
702 Action<MyFunction> a = SetArgPointee<1>(2);
722 typedef void MyFunction(std::string*, const char**)
    [all...]
gmock-more-actions_test.cc 619 typedef void MyFunction(bool, int*, char*);
621 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers + 3);
655 typedef void MyFunction(bool, int*);
657 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers);
671 typedef void MyFunction(bool, char*);
673 Action<MyFunction> a = SetArrayArgument<1>(codes, codes + 3);
686 typedef void MyFunction(bool, std::back_insert_iterator<std::string>);
688 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end());
  /external/google-breakpad/src/testing/gtest/test/
gtest-printers_test.cc 520 void MyFunction(int /* n */) {}
523 // We cannot directly cast &MyFunction to const void* because the
529 reinterpret_cast<internal::BiggestInt>(&MyFunction))),
530 Print(&MyFunction));
    [all...]
  /external/gtest/test/
gtest-printers_test.cc 526 void MyFunction(int /* n */) {}
529 // We cannot directly cast &MyFunction to const void* because the
535 reinterpret_cast<internal::BiggestInt>(&MyFunction))),
536 Print(&MyFunction));
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-printers_test.cc 526 void MyFunction(int /* n */) {}
529 // We cannot directly cast &MyFunction to const void* because the
535 reinterpret_cast<internal::BiggestInt>(&MyFunction))),
536 Print(&MyFunction));
    [all...]

Completed in 194 milliseconds