Searched refs:Helper (Results 1 - 21 of 21) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dstatic-local-in-local-class.cpp26 struct Helper { struct
31 Helper::Execute();
H A Dreference-cast.cpp186 struct Helper { struct in namespace:PR10650
189 unsigned long long test(Helper *obj) {
/external/clang/test/SemaTemplate/
H A Dinstantiate-static-var.cpp48 static char Helper(T);
49 static const int value = sizeof(Helper(T()));
62 static T &Helper();
63 static const int value = sizeof(typeid(Helper()));
/external/chromium/net/proxy/
H A Dproxy_config_service_mac.h33 class Helper;
71 scoped_refptr<Helper> helper_;
H A Dproxy_config_service_mac.cc167 class ProxyConfigServiceMac::Helper class in class:net::ProxyConfigServiceMac
168 : public base::RefCountedThreadSafe<ProxyConfigServiceMac::Helper> {
170 explicit Helper(ProxyConfigServiceMac* parent) : parent_(parent) { function in class:net::ProxyConfigServiceMac::Helper
192 helper_(new Helper(this)),
254 helper_.get(), &Helper::OnProxyConfigChanged, new_config));
/external/clang/test/SemaCXX/
H A Dvararg-non-pod.cpp79 int Helper(...);
80 const int size = sizeof(Helper(Foo()));
/external/gtest/test/
H A Dgtest_nc.cc203 class Helper { class
206 Helper() { testing::StaticAssertTypeEq<int, T>(); } function in class:Helper
212 Helper<bool> h;
/external/protobuf/gtest/test/
H A Dgtest_nc.cc203 class Helper { class
206 Helper() { testing::StaticAssertTypeEq<int, T>(); } function in class:Helper
212 Helper<bool> h;
/external/chromium/base/
H A Dbind_helpers.h76 // Yes NotTheCheckWeWant(Helper<&C::TargetFunc>*);
101 // No GoodCheck(Helper<&C::TargetFunc>*);
112 // We've reversed the roles of the variadic, and Helper overloads.
113 // GoodCheck(Helper<&C::TargetFunc>*), when C = Base, fails to be a valid
117 // will prefer GoodCheck(Helper<&C::TargetFunc>*).
148 template <void(BaseMixin::*)(void)> struct Helper {}; struct in class:base::internal::SupportsAddRefAndRelease
151 static No& Check(Helper<&C::AddRef>*, Helper<&C::Release>*);
/external/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs160 #region Helper methods
/external/clang/lib/Analysis/
H A DCFG.cpp3280 StmtPrinterHelper* Helper; member in class:__anon2774::CFGBlockTerminatorPrint
3285 : OS(os), Helper(helper), Policy(Policy) {}
3289 I->getCond()->printPretty(OS,Helper,Policy);
3294 Terminator->printPretty(OS, Helper, Policy);
3303 C->printPretty(OS, Helper, Policy);
3313 C->printPretty(OS, Helper, Policy);
3319 C->printPretty(OS, Helper, Policy);
3324 Terminator->getCond()->printPretty(OS, Helper, Policy);
3332 C->getCond()->printPretty(OS, Helper, Policy);
3338 C->getCond()->printPretty(OS, Helper, Polic
3373 print_elem(raw_ostream &OS, StmtPrinterHelper* Helper, const CFGElement &E) argument
3464 print_block(raw_ostream &OS, const CFG* cfg, const CFGBlock &B, StmtPrinterHelper* Helper, bool print_edges) argument
[all...]
/external/clang/lib/AST/
H A DStmtPrinter.cpp34 clang::PrinterHelper* Helper; member in class:__anon2759::StmtPrinter
41 : OS(os), Context(C), IndentLevel(Indentation), Helper(helper),
86 if (Helper && Helper->handledStmt(S,OS))
1243 Size->printPretty(s, Context, Helper, Policy);
1611 PrinterHelper* Helper,
1624 StmtPrinter P(OS, Context, Helper, Policy, Indentation);
1610 printPretty(raw_ostream &OS, ASTContext& Context, PrinterHelper* Helper, const PrintingPolicy &Policy, unsigned Indentation) const argument
/external/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp157 /// Helper object for minimizing an active set of changes.
327 DeltaActiveSetHelper Helper(*this, Required);
328 changeset_ty CurrentMinSet = Helper.Run(CurrentSet);
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h730 // Helper for suppressing false warning from Clang on a const char*
851 // Helper(x), the compiler will pick the first version if x can be
857 // size of Helper(x), which can be done at compile time, we can tell
858 // which version of Helper() is used, and hence whether x can be
860 static char Helper(To);
861 static char (&Helper(...))[2]; // NOLINT
874 sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
883 sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
1196 // Helper macro for defining tests.
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h756 // Helper for suppressing false warning from Clang on a const char*
878 // Helper(x), the compiler will pick the first version if x can be
884 // size of Helper(x), which can be done at compile time, we can tell
885 // which version of Helper() is used, and hence whether x can be
887 static char Helper(To);
888 static char (&Helper(...))[2]; // NOLINT
901 sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
910 sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
1223 // Helper macro for defining tests.
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
H A DSDL_syscdrom.c54 #pragma mark -- Helper Functions --
/external/chromium/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc503 MOCK_METHOD2(Helper, void(int* array, int size));
516 EXPECT_CALL(helper, Helper(_, _))
518 helper.Helper(array, 2);
H A Dgmock-matchers_test.cc1869 // Helper to allow easy testing of AllOf matchers with num parameters.
2045 // Helper to allow easy testing of AnyOf matchers with num parameters.
2361 MOCK_METHOD2(Helper, int(char x, int y));
2369 ON_CALL(helper, Helper(_, _))
2372 EXPECT_CALL(helper, Helper(_, _));
2373 EXPECT_CALL(helper, Helper(_, _))
2377 EXPECT_EQ(1, helper.Helper('\1', 2));
2378 EXPECT_EQ(2, helper.Helper('a', 1));
/external/clang/include/clang/AST/
H A DStmt.h282 void printPretty(raw_ostream &OS, PrinterHelper *Helper, argument
285 printPretty(OS, *(ASTContext*)0, Helper, Policy, Indentation);
288 PrinterHelper *Helper,
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php161 * Helper function used to scan for <meta>/<link> tags and extract information
/external/dropbear/libtomcrypt/
H A Dcrypt.tex2538 Helper functions are provided to make parsing memory buffers and files easier. The following functions are provided:
2624 Helper functions are provided to make parsing memory buffers and files easier. The following functions are provided:

Completed in 436 milliseconds