HomeSort by relevance Sort by last modified time
    Searched refs:access (Results 1 - 25 of 297) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 51 * @param hasNative True if the method has natives, in which case its access should be
68 public void visit(int version, int access, String name,
75 access = access & ~(Opcodes.ACC_PRIVATE | Opcodes.ACC_PROTECTED);
76 access |= Opcodes.ACC_PUBLIC;
78 access = access & ~Opcodes.ACC_FINAL;
82 mIsInterface = ((access & Opcodes.ACC_INTERFACE) != 0);
83 super.visit(version, access, name, signature, superName, interfaces);
88 public void visitInnerClass(String name, String outerName, String innerName, int access) {
    [all...]
ClassHasNativeVisitor.java 37 public void visit(int version, int access, String name, String signature,
55 public FieldVisitor visitField(int access, String name, String desc,
62 String innerName, int access) {
66 public MethodVisitor visitMethod(int access, String name, String desc,
68 mHasNativeMethods |= ((access & Opcodes.ACC_NATIVE) != 0);
  /bionic/libc/arch-arm/syscalls/
access.S 5 .type access, #function
6 .globl access
10 access: label
  /libcore/support/src/test/java/tests/resources/
hyts_signed.jar 
hyts_signed_inc.jar 
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
ClassStubber.java 37 public void visit(int version, int access,
42 super.visit(version, access, name, signature, superName, interfaces);
61 public MethodVisitor visitMethod(int access, String name, String desc, String signature,
63 MethodVisitor mw = super.visitMethod(access, name, desc, signature, exceptions);
64 return new MethodStubber(mw, access, name, desc, signature, exceptions);
68 public FieldVisitor visitField(int access, String name, String desc, String signature,
70 return super.visitField(access, name, desc, signature, value);
74 public void visitInnerClass(String name, String outerName, String innerName, int access) {
75 super.visitInnerClass(name, outerName, innerName, access);
  /bionic/libc/arch-sh/syscalls/
access.S 5 .type access, @function
6 .globl access
9 access: label
  /bionic/libc/arch-x86/syscalls/
access.S 5 .type access, @function
6 .globl access
9 access: label
  /development/tools/mkstubs/src/com/android/mkstubs/
FilterClassAdapter.java 29 * either private, default-access or rejected by the {@link Filter}.
42 public void visit(int version, int access, String name, String signature,
46 super.visit(version, access, name, signature, superName, interfaces);
65 public FieldVisitor visitField(int access, String name, String desc,
68 if ((access & (Opcodes.ACC_PUBLIC | Opcodes.ACC_PROTECTED)) == 0) {
82 return super.visitField(access, name, desc, signature, value);
96 public MethodVisitor visitMethod(int access, String name, String desc,
100 if ((access & (Opcodes.ACC_PUBLIC | Opcodes.ACC_PROTECTED)) == 0) {
124 return super.visitMethod(access, name, desc, signature, exceptions);
140 public void visitInnerClass(String name, String outerName, String innerName, int access) {
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
ClassSourcer.java 47 public void visit(int version, int access, String name, String signature,
55 // dump access keywords. Note: do not dump "super" here
56 mAccessSourcer.write(access & ~Opcodes.ACC_SUPER, AccessSourcer.IS_CLASS);
109 public FieldVisitor visitField(int access, String name, String desc, String signature,
112 if ((access & Opcodes.ACC_SYNTHETIC) != 0) {
116 return new FieldSourcer(mOutput, access, name, desc, signature);
119 public MethodVisitor visitMethod(int access, String name, String desc, String signature,
123 return new MethodSourcer(mOutput, mClassName, access, name, desc, signature, exceptions);
126 public void visitInnerClass(String name, String outerName, String innerName, int access) {
FieldSourcer.java 36 public FieldSourcer(Output output, int access, String name, String desc, String signature) {
38 mAccess = access;
  /external/proguard/src/proguard/ant/
ClassSpecificationElement.java 40 private String access; field in class:ClassSpecificationElement
76 String access = classSpecificationElement.access; local
93 requiredAccessFlags(true, access, type),
94 requiredAccessFlags(false, access, type),
116 public void setAccess(String access)
118 this.access = access;
202 String access,
208 if (access != null
    [all...]
MemberSpecificationElement.java 39 private String access; field in class:MemberSpecificationElement
67 String access = memberSpecificationElement.access; local
116 new MemberSpecification(requiredAccessFlags(true, access),
117 requiredAccessFlags(false, access),
129 public void setAccess(String access)
131 this.access = access;
171 String access)
176 if (access != null
    [all...]
  /external/chromium/base/
platform_file_win.cc 40 DWORD access = (flags & PLATFORM_FILE_READ) ? GENERIC_READ : 0; local
42 access |= GENERIC_WRITE;
58 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL,
registry.cc 159 RegKey::RegKey(HKEY rootkey, const tchar* subkey, REGSAM access)
162 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK))
163 this->Create(rootkey, subkey, access);
165 this->Open(rootkey, subkey, access);
179 bool RegKey::Create(HKEY rootkey, const tchar* subkey, REGSAM access) {
181 return CreateWithDisposition(rootkey, subkey, &disposition_value, access);
185 DWORD* disposition, REGSAM access) {
186 assert(rootkey && subkey && access && disposition);
194 access,
206 bool RegKey::Open(HKEY rootkey, const tchar* subkey, REGSAM access) {
    [all...]
registry.h 29 RegKey(HKEY rootkey = NULL, CTP subkey = NULL, REGSAM access = KEY_READ);
34 bool Create(HKEY rootkey, CTP subkey, REGSAM access = KEY_READ);
37 REGSAM access = KEY_READ);
39 bool Open(HKEY rootkey, CTP subkey, REGSAM access = KEY_READ);
42 bool CreateKey(CTP name, REGSAM access);
45 bool OpenKey(CTP name, REGSAM access);
75 // The key must have been opened with the KEY_NOTIFY access
  /external/v8/src/
execution.cc 216 ExecutionAccess access; local
223 ExecutionAccess access; local
224 if (IsSet(access)) {
225 set_limits(kInterruptLimit, access);
231 ExecutionAccess access; local
247 ExecutionAccess access; local
248 reset_limits(access);
258 ExecutionAccess access; local
264 ExecutionAccess access; local
266 set_limits(kInterruptLimit, access);
271 ExecutionAccess access; local
277 ExecutionAccess access; local
284 ExecutionAccess access; local
290 ExecutionAccess access; local
298 ExecutionAccess access; local
304 ExecutionAccess access; local
311 ExecutionAccess access; local
318 ExecutionAccess access; local
326 ExecutionAccess access; local
340 ExecutionAccess access; local
349 ExecutionAccess access; local
    [all...]
  /hardware/libhardware/
hardware.c 143 if (access(path, R_OK) == 0) break;
147 if (access(path, R_OK) == 0) break;
151 if (access(path, R_OK) == 0) break;
  /external/webkit/WebCore/rendering/style/
RenderStyle.h 100 group.access()->variable = value;
543 FillLayer* accessBackgroundLayers() { return &(background.access()->m_background); }
556 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
    [all...]
DataRef.h 38 T* access() function in class:WebCore::DataRef
  /external/zlib/examples/
zran.c 1 /* zran.c -- example of zlib/gzip stream indexing and random access
7 for random access of a compressed file. A file containing a zlib or gzip
9 its entirety, and an index built with access points about every SPAN bytes
14 An access point can be created at the start of any deflate block, by saving
21 a new access point. If so, that point is saved in a data structure that
34 requests for random access reads from the compressed data would try to use
39 access, mainly copying the 32K byte dictionary. So if small pieces of the
44 not be constrained to have access points at block boundaries, but requires
45 more memory per access point, and also cannot be saved to file due to the
57 #define SPAN 1048576L /* desired distance between access points *
70 struct access { struct
    [all...]
  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardwareBase.cpp 125 if (access(kSleepFileName, R_OK) || access(kWakeFileName, R_OK)) {
126 if (access(kOldSleepFileName, R_OK) || access(kOldWakeFileName, R_OK)) {
138 return (((access(kSleepFileName, R_OK) == 0 &&
139 access(kWakeFileName, R_OK) == 0) ||
140 (access(kOldSleepFileName, R_OK) == 0 &&
141 access(kOldWakeFileName, R_OK) == 0)) &&
142 access(kFbconSysDir, F_OK) != 0) ? NO_ERROR : NO_INIT;
  /external/webkit/WebCore/platform/posix/
FileSystemPOSIX.cpp 127 if (!access(fullPath.data(), F_OK))
138 if (access(fullPath.data(), F_OK))
143 if (access(fullPath.data(), F_OK))
  /external/oprofile/libpopt/
findme.c 39 if (!access(buf, X_OK))
  /frameworks/base/services/jni/
com_android_server_BatteryService.cpp 257 if (access(path, R_OK) == 0)
262 if (access(path, R_OK) == 0)
267 if (access(path, R_OK) == 0)
270 if (access(path, R_OK) == 0)
273 if (access(path, R_OK) == 0)
276 if (access(path, R_OK) == 0)
280 if (access(path, R_OK) == 0) {
286 if (access(path, R_OK) == 0)
291 if (access(path, R_OK) == 0) {
295 if (access(path, R_OK) == 0
    [all...]

Completed in 6126 milliseconds

1 2 3 4 5 6 7 8 91011>>