Searched defs:access (Results 76 - 100 of 263) sorted by relevance

1234567891011

/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DFieldProviderTransformer.java48 private int access; field in class:FieldProviderTransformer
51 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { argument
52 if (!TypeUtils.isAbstract(access)) {
55 this.access = access;
57 super.begin_class(version, access, className, superType, interfaces, sourceFile);
60 public void declare_field(int access, String name, Type type, Object value) { argument
61 super.declare_field(access, name, type, value);
63 if (!TypeUtils.isStatic(access)) {
69 if (!TypeUtils.isInterface(access)) {
[all...]
H A DInterceptFieldTransformer.java47 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { argument
48 if (!TypeUtils.isInterface(access)) {
49 super.begin_class(version, access, className, superType, TypeUtils.add(interfaces, ENABLED), sourceFile);
70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
74 public void declare_field(int access, String name, Type type, Object value) { argument
75 super.declare_field(access, name, type, value);
76 if (!TypeUtils.isStatic(access)) {
145 public CodeEmitter begin_method(int access, Signature sig, Type[] exceptions) { argument
146 return new CodeEmitter(super.begin_method(access, sig, exceptions)) {
/external/pixman/test/
H A Dpixel-test.c134 access (pixman_image_t *image, int x, int y) function
196 uint32_t computed = access (dest, i, j);
/external/proguard/src/proguard/ant/
H A DClassSpecificationElement.java40 private String access; field in class:ClassSpecificationElement
76 String access = classSpecificationElement.access;
93 requiredAccessFlags(true, access, type),
94 requiredAccessFlags(false, access, type),
116 public void setAccess(String access) argument
118 this.access = access;
202 String access,
208 if (access !
201 requiredAccessFlags(boolean set, String access, String type) argument
[all...]
/external/skia/src/gpu/
H A DGrEffect.cpp91 void GrEffect::addTextureAccess(const GrTextureAccess* access) { argument
92 fTextureAccesses.push_back(access);
/external/skia/src/gpu/gl/debug/
H A DGrBufferObj.h32 void access() { function in class:GrBufferObj
33 // cannot access the buffer if it is currently mapped
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconnect.h39 // access[i]: accessibility of state i.
44 SccVisitor(vector<StateId> *scc, vector<bool> *access, argument
46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
190 vector<StateId> *scc_stack_; // SCC stack (w/ random access)
205 vector<bool> access; local
208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
211 for (StateId s = 0; s < (StateId)access.size(); ++s)
212 if (!access[s] || !coaccess[s])
/external/zlib/src/examples/
H A Dzran.c1 /* zran.c -- example of zlib/gzip stream indexing and random access
12 for random access of a compressed file. A file containing a zlib or gzip
14 its entirety, and an index built with access points about every SPAN bytes
19 An access point can be created at the start of any deflate block, by saving
26 a new access point. If so, that point is saved in a data structure that
39 requests for random access reads from the compressed data would try to use
44 access, mainly copying the 32K byte dictionary. So if small pieces of the
49 not be constrained to have access points at block boundaries, but requires
50 more memory per access point, and also cannot be saved to file due to the
62 #define SPAN 1048576L /* desired distance between access point
75 struct access { struct
[all...]
/external/chromium_org/base/files/
H A Dfile_win.cc57 DWORD access = 0; local
59 access = GENERIC_WRITE;
61 DCHECK(!access);
62 access = FILE_APPEND_DATA;
65 access |= GENERIC_READ;
67 access |= FILE_WRITE_ATTRIBUTES;
69 access |= GENERIC_EXECUTE;
89 file_.Set(CreateFile(name.value().c_str(), access, sharing, NULL,
/external/chromium_org/base/
H A Dtools_sanity_unittest.cc190 int* volatile access = &array[5]; local
191 *access = 43;
204 int* volatile access = g_asan_test_global_array - 1; local
205 *access = 43;
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler.cc80 const std::string& access) {
81 file_access_permission_flags_ |= GetAccessPermissionFlagFromString(access);
158 // Initialize access permissions (optional).
168 std::string access; local
169 if (!access_list_value->GetString(i, &access) ||
170 result->AddFileAccessPermission(access)) {
182 // Initialize file filters (mandatory, unless "create" access is specified,
79 AddFileAccessPermission( const std::string& access) argument
/external/chromium_org/chrome/installer/mini_installer/
H A Ddecompress.cc69 DWORD access = 0; local
73 access = GENERIC_READ | GENERIC_WRITE;
75 access = GENERIC_WRITE;
77 access = GENERIC_READ;
87 HANDLE file = CreateFileW(path, access, FILE_SHARE_READ, NULL, disposition,
/external/chromium_org/cloud_print/service/win/
H A Dservice_controller.cc64 HRESULT OpenService(const base::string16& name, DWORD access, argument
74 service->Set(::OpenService(scm.Get(), name.c_str(), access));
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_ui_proxy.cc67 // Tab may have gone away, or has no delegate from which to request access.
256 void FakeMediaStreamUIProxy::SetMicAccess(bool access) { argument
257 mic_access_ = access;
260 void FakeMediaStreamUIProxy::SetCameraAccess(bool access) { argument
261 camera_access_ = access;
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dgraphics_3d_resource.cc127 GLenum access) {
119 MapTexSubImage2DCHROMIUM(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLenum access) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfuse.h216 // Called by access()
217 int (*access)(const char* path, int mode); member in struct:fuse_operations
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile_win.cc84 DWORD access = GENERIC_READ | GENERIC_WRITE | DELETE; local
86 base::File(CreateFile(name.value().c_str(), access, sharing, NULL,
97 base::File(CreateFile(name.value().c_str(), access, sharing, NULL,
/external/chromium_org/ppapi/shared_impl/
H A Dppb_graphics_3d_shared.cc84 GLenum access) {
86 target, level, xoffset, yoffset, width, height, format, type, access);
76 MapTexSubImage2DCHROMIUM(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLenum access) argument
/external/chromium_org/sandbox/win/src/
H A DWow64.cc103 DWORD access = EVENT_MODIFY_STATE | SYNCHRONIZE; local
105 &remote_load, access, FALSE, 0))
108 &remote_continue, access, FALSE, 0))
H A Dtarget_process.cc262 DWORD access = FILE_MAP_READ | FILE_MAP_WRITE; local
266 &target_shared_section, access, FALSE, 0)) {
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIOutput.cpp176 MIDIOutput* MIDIOutput::create(MIDIAccess* access, unsigned portIndex, const String& id, const String& manufacturer, const String& name, const String& version) argument
178 ASSERT(access);
179 return adoptRefCountedGarbageCollectedWillBeNoop(new MIDIOutput(access, portIndex, id, manufacturer, name, version));
182 MIDIOutput::MIDIOutput(MIDIAccess* access, unsigned portIndex, const String& id, const String& manufacturer, const String& name, const String& version) argument
183 : MIDIPort(access, id, manufacturer, name, MIDIPortTypeOutput, version)
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dutext.h41 * access to the actual text.
79 * or UTF-32, for example. When coding to the UText access API, no assumptions
107 * Most UText access functions have as their first parameter a (UText *) pointer,
349 * This is true for read access only with shallow clones, and for both read and
350 * write access with deep clones.
360 * @param readOnly TRUE to request that the cloned UText have read only access to the
681 * #define inline versions of selected performance-critical text access functions
907 * are always an error while UText access is occuring because the underlying
933 * deleted, not just until the next time the access() function is called
1014 * Function type declaration for UText.access()
1257 UTextAccess *access; member in struct:UTextFuncs
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_miptree.c235 unsigned access = 0; local
242 access |= NOUVEAU_BO_RD;
244 access |= NOUVEAU_BO_WR;
246 ret = nouveau_bo_map(tx->tmp.bo, access, nv30->base.client);
H A Dnv30_winsys.h44 struct nouveau_bo *bo, uint32_t access)
46 nouveau_bufctx_refn(bufctx(push), bin, bo, access); local
51 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
54 bo, offset, access | NOUVEAU_BO_LOW, 0, 0)->priv = NULL;
60 struct nouveau_bo *bo, uint32_t access, uint32_t vor, uint32_t tor)
63 bo, 0, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL;
72 struct nouveau_bo *bo, uint32_t data, uint32_t access,
76 bo, data, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL;
85 struct nouveau_bo *bo, uint32_t data, uint32_t access,
90 bo, data, access | NOUVEAU_BO_O
43 PUSH_REFN(struct nouveau_pushbuf *push, int bin, struct nouveau_bo *bo, uint32_t access) argument
50 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, int bin, struct nouveau_bo *bo, uint32_t offset, uint32_t access) argument
59 PUSH_MTHDo(struct nouveau_pushbuf *push, int subc, int mthd, int bin, struct nouveau_bo *bo, uint32_t access, uint32_t vor, uint32_t tor) argument
71 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd, int bin, struct nouveau_bo *bo, uint32_t data, uint32_t access, uint32_t vor, uint32_t tor) argument
84 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd, int bin, struct nouveau_bo *bo, uint32_t data, uint32_t access, uint32_t vor, uint32_t tor) argument
103 PUSH_RESRC(struct nouveau_pushbuf *push, int subc, int mthd, int bin, struct nv04_resource *r, uint32_t data, uint32_t access, uint32_t vor, uint32_t tor) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Drepresentation-change.h304 MachineType TypeForBasePointer(const FieldAccess& access) { argument
305 return access.tag() != 0 ? kMachAnyTagged : kMachPtr;
308 MachineType TypeForBasePointer(const ElementAccess& access) { argument
309 return access.tag() != 0 ? kMachAnyTagged : kMachPtr;

Completed in 503 milliseconds

1234567891011