HomeSort by relevance Sort by last modified time
    Searched defs:Private (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 18 class Private {
19 Private(int); // expected-note {{here}}
21 Private();
36 Private p = 42; // expected-error {{private constructor}}
  /external/llvm/include/llvm/Target/
Mangler.h 33 Private, ///< Emit "private" prefix before each symbol.
34 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
37 private:
  /external/webkit/Source/WebCore/dom/
ContainerNode.h 35 namespace Private {
99 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
104 private:
ContainerNodeAlgorithms.h 31 namespace Private {
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
62 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<GenericNodeContainer*>(n));
84 namespace Private {
  /external/qemu/distrib/sdl-1.2.12/src/video/epoc/
SDL_epocvideo.h 45 #define Private _this->hidden
49 /* Private display data */
  /external/webkit/Source/WebCore/platform/text/
RegularExpression.cpp 37 class RegularExpression::Private : public RefCounted<RegularExpression::Private> {
39 static PassRefPtr<Private> create(const String& pattern, TextCaseSensitivity caseSensitivity)
41 return adoptRef(new Private(pattern, caseSensitivity));
49 private:
50 Private(const String& pattern, TextCaseSensitivity caseSensitivity)
75 : d(Private::create(pattern, caseSensitivity))
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.cc 46 class XmppClient::Private :
52 Private(XmppClient * client) :
101 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected);
102 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead);
103 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed);
281 d_.reset(new Private(this));
321 XmppClient::Private::OnSocketConnected() {
326 XmppClient::Private::OnSocketRead() {
347 XmppClient::Private::OnSocketClosed() {
353 XmppClient::Private::OnStateChange(int state)
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 304 const char *Private = "Private";
305 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
306 Private+strlen(Private));
308 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
309 Private+strlen(Private));
  /external/clang/test/CXX/class.access/
p6.cpp 18 struct Public {}; struct Protected {}; struct Private {};
22 typedef int type; // expected-note {{declared private here}}
26 A::type foo() { } // expected-error {{'type' is a private member}}
40 private:
41 operator Private (); // expected-note {{declared private here}}
42 A(Private); // expected-note {{declared private here}}
49 Private priv = a; // expected-error {{'operator Private' is a private member}
    [all...]
p4.cpp 12 class Private {} PrivateInst;
20 private:
21 void foo(Private&); // expected-note 2 {{declared private here}}
27 op->foo(PrivateInst); // expected-error {{'foo' is a private member}}
31 void (A::*c)(Private&) = &A::foo; // expected-error {{'foo' is a private member}}
50 private:
51 void operator+(Private&); // expected-note {{declared private here}
    [all...]
  /external/giflib/
dgif_lib.c 47 (((GifFilePrivateType*)_gif->Private)->Read ? \
48 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
49 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))
94 GifFilePrivateType *Private;
106 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType));
107 if (Private == NULL) {
124 GifFile->Private = (VoidPtr)Private;
125 Private->FileHandle = FileHandle;
126 Private->File = f
    [all...]
gif_lib.h 93 VoidPtr Private; /* Don't mess with this! */
  /external/chromium/base/metrics/
stats_table.cc 91 // The StatsTable::Private maintains convenience pointers into the
94 class StatsTable::Private {
104 // Construct a new Private based on expected size parameters, or
106 static Private* New(const std::string& name, int size,
137 private:
138 // Constructor is private because you should use New() instead.
139 Private()
166 StatsTable::Private* StatsTable::Private::New(const std::string& name,
173 scoped_ptr<Private> priv(new Private())
    [all...]
  /external/expat/bcb5/
elements.mak 67 Private=0
expat.mak 68 Private=0
expat_static.mak 68 Private=0
expatw.mak 68 Private=0
expatw_static.mak 69 Private=0
outline.mak 67 Private=0
xmlwf.mak 68 Private=0
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 31 namespace Private {
126 private:
144 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
  /external/clang/lib/AST/
Type.cpp 871 /// class) that has no user-declared constructors, no private or
    [all...]
  /external/tcpdump/
print-snmp.c 168 * Private ASN.1 types
171 const char *Private[] = {
224 * Ties together the preceding Universal, Application, Context, and Private
239 defineCLASS(Private),
240 #define PRIVATE 3
279 * private enterprises tree, and the experimental tree.
291 /* .iso.org.dod.internet.private.enterprises */
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 115 private:
830 None, Private, Protected, Public, Package
833 private:
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 48 | Private
    [all...]

Completed in 1079 milliseconds

1 2