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

1 2

  /prebuilts/go/darwin-x86/src/go/doc/testdata/
f.go 11 type private struct{} type
14 func Exported() private {}
  /prebuilts/go/darwin-x86/test/fixedbugs/bug324.dir/
prog.go 12 private()
17 func (p *Implementation) private() {} func
24 x.private() // main.Implementation.private()
31 // px.private undefined (cannot refer to unexported field or method private)
32 // px.private()
35 // *Implementation does not implement p.Exported (missing p.private method)
39 // p.Exported does not implement Exported (missing private method)
51 // it invokes the method private in p
    [all...]
p.go 8 private()
13 func (p *Implementation) private() { println("p.Implementation.private()") } func
  /prebuilts/go/darwin-x86/test/interface/private.dir/
prog.go 13 private()
18 func (p *Implementation) private() {} func
23 x.private()
28 px.private() // ERROR "private"
30 px = new(Implementation) // ERROR "private"
32 x = px // ERROR "private"
private1.go 5 // Imported by private.go, which should not be able to see the private method.
10 private()
15 func (p *Implementation) private() {} func
  /prebuilts/go/linux-x86/src/go/doc/testdata/
f.go 11 type private struct{} type
14 func Exported() private {}
  /prebuilts/go/linux-x86/test/fixedbugs/bug324.dir/
prog.go 12 private()
17 func (p *Implementation) private() {} func
24 x.private() // main.Implementation.private()
31 // px.private undefined (cannot refer to unexported field or method private)
32 // px.private()
35 // *Implementation does not implement p.Exported (missing p.private method)
39 // p.Exported does not implement Exported (missing private method)
51 // it invokes the method private in p
    [all...]
p.go 8 private()
13 func (p *Implementation) private() { println("p.Implementation.private()") } func
  /prebuilts/go/linux-x86/test/interface/private.dir/
prog.go 13 private()
18 func (p *Implementation) private() {} func
23 x.private()
28 px.private() // ERROR "private"
30 px = new(Implementation) // ERROR "private"
32 x = px // ERROR "private"
private1.go 5 // Imported by private.go, which should not be able to see the private method.
10 private()
15 func (p *Implementation) private() {} func
  /external/libedit/src/
sys.h 69 #ifndef private
70 # define private static /* Always hidden internals */ macro
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_dri2.c 70 BufferPrivatePtr private = buffer->driverPrivate; local
85 private->pPixmap = (*pScreen->CreatePixmap)(pScreen, pDraw->width,
142 if (!private->pPixmap) {
143 private->pPixmap = pPixmap;
148 /* First call to make sure we have a pixmap private */
149 exaMoveInPixmap(private->pPixmap);
150 xorg_exa_set_shared_usage(private->pPixmap);
151 pScreen->ModifyPixmapHeader(private->pPixmap, 0, 0, 0, 0, 0, NULL);
153 exaMoveInPixmap(private->pPixmap);
154 tex = xorg_exa_get_texture(private->pPixmap)
188 BufferPrivatePtr private = buffer->driverPrivate; local
203 BufferPrivatePtr private; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ostream.c 137 private: member in struct:_SPutBackC
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_ostream.c 137 private: member in struct:_SPutBackC
  /toolchain/binutils/binutils-2.25/opcodes/
h8500-dis.c 36 struct private struct
49 ((addr) <= ((struct private *)(info->private_data))->max_fetched \
56 struct private *priv = (struct private *) info->private_data;
81 struct private priv;
ppc-dis.c 42 } private; variable in typeref:struct:dis_private
259 priv = &private;
vax-dis.c 72 struct private struct
85 ((addr) <= ((struct private *)(info->private_data))->max_fetched \
92 struct private *priv = (struct private *) info->private_data;
382 struct private priv;
ns32k-dis.c 54 struct private struct
68 ((addr) <= ((struct private *)(info->private_data))->max_fetched \
75 struct private *priv = (struct private *) info->private_data;
747 struct private priv;
  /external/chromium-trace/catapult/third_party/WebOb/webob/
cachecontrol.py 196 private = value_property('private', none='*', type='response') variable in class:CacheControl
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glxinit.c 210 ** Release the private memory referred to in a display private
600 XExtData **privList, *private, *found; local
608 /* See if a display private already exists. If so, return it */
622 private = (XExtData *) Xmalloc(sizeof(XExtData));
623 if (!private)
627 Xfree(private);
632 ** Init the display private and then read in the screen config
640 Xfree(private);
645 ** Fill in the private structure. This is the actual structure tha
    [all...]
  /hardware/intel/common/libwsbm/src/
wsbm_fencemgr.c 64 void *private; member in struct:_WsbmFenceMgr
85 * Note that @private may point to a structure with its own
92 void *private; member in struct:_WsbmFenceObject
177 if (fence->private)
178 mgr->info.unreference(mgr, &fence->private);
232 ret = mgr->info.finish(mgr, fence->private, fence_type, lazy_hint);
263 ret = mgr->info.signaled(mgr, fence->private, flush_type, signaled);
299 void *private, size_t private_size)
318 fence->private = private;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
misctest.cpp 24 #undef private macro
414 private:
511 private:
573 private:
695 private:
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
testing.go 274 // A private method to prevent users implementing the
277 private()
291 func (c *common) private() {} func
  /prebuilts/go/linux-x86/src/testing/
testing.go 274 // A private method to prevent users implementing the
277 private()
291 func (c *common) private() {} func
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 72 #define private macro
157 private

Completed in 863 milliseconds

1 2