HomeSort by relevance Sort by last modified time
    Searched full:private (Results 1 - 25 of 27648) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/gmodule/
gmodule.symbols 6 g_module_name PRIVATE
10 g_module_open PRIVATE
  /external/webkit/LayoutTests/storage/
private-browsing-noread-nowrite-expected.txt 1 This test makes sure that attempts to change the database during private browsing fail.
4 Private browsing statement 1 completed with an error
6 Private browsing statement 2 completed with an error
8 Private browsing statement 3 completed with an error
10 Private browsing statement 4 completed with an error
12 Private browsing statement 5 completed with an error
  /dalvik/tests/024-illegal-access/src2/
SemiPrivate.java 4 * Version with private access.
7 private static String mPrivvy = "stuff";
  /frameworks/base/include/private/
README 1 This folder contains private include files.
3 These include files are part of the private implementation details of
  /external/clang/test/SemaObjC/
ivar-access-tests.m 5 @private
6 int private;
20 access = s->private;
33 access = s->private; // expected-error {{instance variable 'private' is private}}
36 access = m->private; // expected-error {{instance variable 'private' is private}}
49 access = s->private; // expected-error {{instance variable 'private' is private}
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
AsymmetricCipherKeyPair.java 4 * a holding class for public/private parameter pairs.
8 private CipherParameters publicParam;
9 private CipherParameters privateParam;
15 * @param privateParam the corresponding private key parameters.
36 * return the private key parameters.
38 * @return the private key parameters.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/os/
FileUtils.java 22 private static final int S_IFSOCK = 0140000;
23 private static final int S_IFLNK = 0120000;
24 private static final int S_IFREG = 0100000;
25 private static final int S_IFBLK = 0060000;
26 private static final int S_IFDIR = 0040000;
27 private static final int S_IFCHR = 0020000;
28 private static final int S_IFIFO = 0010000;
30 private static final int S_ISUID = 0004000;
31 private static final int S_ISGID = 0002000;
32 private static final int S_ISVTX = 0001000
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/spec/
ECPrivateKeySpec.java 6 * Elliptic Curve private key specification.
11 private BigInteger d;
16 * @param d the private number for the key.
29 * return the private number D
  /external/clang/test/CXX/class.access/class.access.base/
p5.cpp 19 private: static int x; // expected-note 5 {{declared private here}}
23 static int test() { return x; } // expected-error {{private member}}
25 struct C : private A {
26 static int test() { return x; } // expected-error {{private member}}
33 struct E : private D { // expected-note{{constrained by private inheritance}}
38 return A::x // expected-error {{private member}}
39 + B::x // expected-error {{private member}}
40 + C::x // expected-error {{private member}
    [all...]
p1.cpp 13 private: int priv; static int spriv; // expected-note 8 {{declared private here}}
22 priv++; // expected-error {{private member}}
23 spriv++; // expected-error {{private member}}
29 Base::priv++; // expected-error {{private member}}
30 Base::spriv++; // expected-error {{private member}}
39 t->priv++; // expected-error {{private member}}
40 t->spriv++; // expected-error {{private member}}
46 t->Base::priv++; // expected-error {{private member}}
47 t->Base::spriv++; // expected-error {{private member}
    [all...]
  /external/clang/test/CXX/class/class.local/
p2.cpp 6 struct B : private A {}; // expected-note{{declared private here}}
10 A *a = &b; // expected-error{{cannot cast 'B' to its private base class 'A'}}
  /external/clang/test/SemaCXX/
access-control-check.cpp 8 int iP; // expected-note {{declared private here}}
9 int PPR(); // expected-note {{declared private here}}
14 int PR() { return iP + PPR(); } // expected-error 2 {{private member of 'P'}}
access.cpp 4 struct S; // expected-note {{previously declared 'private' here}}
13 private:
14 class C { }; // expected-error {{'C' redeclared with 'private' access}}
21 private:
22 template<typename T> struct A {}; // expected-error {{'A' redeclared with 'private' access}}
28 private:
29 class X; // expected-note {{previously declared 'private' here}}
access-base-class.cpp 5 class B : private A { }; // expected-note {{declared private here}}
8 A *a = b; // expected-error{{cannot cast 'T1::B' to its private base class 'T1::A'}}
16 class B : A { }; // expected-note {{implicitly declared private here}}
19 A *a = b; // expected-error {{cannot cast 'T2::B' to its private base class 'T2::A'}}
39 class B : private virtual A {};
54 class B : private A {
66 class B : private A { // expected-note {{declared private here}} expected-note {{constrained by private inheritance here}
    [all...]
access-member-pointer.cpp 5 class B : private A { public: void foo(); }; // expected-note {{declared private here}}
10 (void)static_cast<void(A::*)()>(&B::foo); // expected-error {{cannot cast 'B' to its private base class 'A'}}
  /external/nist-sip/java/javax/sip/
IOExceptionEvent.java 6 private String mHost;
7 private int mPort;
8 private String mTransport;
  /external/clang/test/CXX/class.access/
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/qemu/distrib/sdl-1.2.12/src/video/wscons/
SDL_wsconsvideo.c 169 private->fd = open(devname, O_RDWR | O_NONBLOCK, 0);
170 if (private->fd == -1) {
174 if (ioctl(private->fd, WSDISPLAYIO_GINFO, &private->info) == -1) {
178 if (ioctl(private->fd, WSDISPLAYIO_GTYPE, &wstype) == -1) {
182 if (ioctl(private->fd, WSDISPLAYIO_LINEBYTES, &private->physlinebytes) == -1) {
186 if (private->info.depth > 8) {
192 private->redMask = 0x0000ff;
193 private->greenMask = 0x00ff00
    [all...]
  /external/junit/src/junit/framework/
ComparisonCompactor.java 5 private static final String ELLIPSIS= "...";
6 private static final String DELTA_END= "]";
7 private static final String DELTA_START= "[";
9 private int fContextLength;
10 private String fExpected;
11 private String fActual;
12 private int fPrefix;
13 private int fSuffix;
32 private String compactString(String source) {
41 private void findCommonPrefix()
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
StreamItemEntryBuilder.java 23 private long mId;
24 private String mText;
25 private String mComment;
26 private long mTimestamp;
27 private String mAccountType;
28 private String mAccountName;
29 private String mDataSet;
30 private String mResPackage;
31 private String mIconRes;
32 private String mLabelRes
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo.java 28 private Button mlocalvideo;
29 private Button mresourcesvideo;
30 private Button mstreamvideo;
31 private Button mlocalaudio;
32 private Button mresourcesaudio;
33 private Button mstreamaudio;
34 private static final String MEDIA = "media";
35 private static final int LOCAL_AUDIO = 1;
36 private static final int STREAM_AUDIO = 2;
37 private static final int RESOURCES_AUDIO = 3
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 30 private final String algorithm;
35 private final int evp_md;
40 private final int size;
45 private final int blockSize;
52 private int ctx;
57 private final byte[] singleByte = new byte[1];
63 private OpenSSLDigest(String algorithm, int evp_md, int size, int blockSize) {
102 private int getCtx() {
109 private void free() {
126 private static final int EVP_MD = NativeCrypto.EVP_get_digestbyname("md5")
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
RSAPrivateCrtKeyParameters.java 8 private BigInteger e;
9 private BigInteger p;
10 private BigInteger q;
11 private BigInteger dP;
12 private BigInteger dQ;
13 private BigInteger qInv;
  /external/qemu/distrib/sdl-1.2.12/src/video/epoc/
SDL_epocvideo.cpp 195 error = Private->EPOC_WsSession.Connect();
197 Private->EPOC_WsScreen=new(ELeave) CWsScreenDevice(Private->EPOC_WsSession);
198 User::LeaveIfError(Private->EPOC_WsScreen->Construct());
199 User::LeaveIfError(Private->EPOC_WsScreen->CreateContext(Private->EPOC_WindowGc));
201 Private->EPOC_WsWindowGroup=RWindowGroup(Private->EPOC_WsSession);
202 User::LeaveIfError(Private->EPOC_WsWindowGroup.Construct(WindowClientHandle));
203 Private->EPOC_WsWindowGroup.SetOrdinalPosition(0)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
LazyDERConstructionEnumeration.java 9 private ASN1InputStream aIn;
10 private Object nextObj;
32 private Object readObject()

Completed in 1004 milliseconds

1 2 3 4 5 6 7 8 91011>>