HomeSort by relevance Sort by last modified time
    Searched refs:access (Results 1 - 25 of 449) 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,
76 access = access & ~(Opcodes.ACC_PRIVATE | Opcodes.ACC_PROTECTED);
77 access |= Opcodes.ACC_PUBLIC;
80 access = access & ~Opcodes.ACC_FINAL;
84 mIsInterface = ((access & Opcodes.ACC_INTERFACE) != 0);
85 super.visit(version, access, name, signature, superName, interfaces);
90 public void visitInnerClass(String name, String outerName, String innerName, int access) {
    [all...]
DelegateClassAdapter.java 72 public MethodVisitor visitMethod(int access, String name, String desc,
75 boolean isStatic = (access & Opcodes.ACC_STATIC) != 0;
76 boolean isNative = (access & Opcodes.ACC_NATIVE) != 0;
84 return super.visitMethod(access, name, desc, signature, exceptions);
99 access = access & ~Opcodes.ACC_NATIVE;
100 MethodVisitor mwDelegate = super.visitMethod(access, name, desc, signature, exceptions);
118 int accessDelegate = access;
119 // change access to public for the original one
121 access &= ~(Opcodes.ACC_PROTECTED | Opcodes.ACC_PRIVATE)
    [all...]
ClassHasNativeVisitor.java 45 public void visit(int version, int access, String name, String signature,
63 public FieldVisitor visitField(int access, String name, String desc,
70 String innerName, int access) {
74 public MethodVisitor visitMethod(int access, String name, String desc,
76 if ((access & Opcodes.ACC_NATIVE) != 0) {
  /bionic/libc/arch-arm/syscalls/
access.S 5 ENTRY(access) function
14 END(access)
  /external/apache-harmony/security/src/test/resources/PermissionCollection/
signedBKS.jar 
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_signed.jar 
  /external/qemu/
kvm-android.c 21 if (access("/dev/kvm",F_OK)) {
27 /* Can we access it? */
28 if (access("/dev/kvm",R_OK)) {
  /libcore/support/src/test/java/tests/resources/
hyts_signed.jar 
hyts_signed_inc.jar 
  /external/javassist/src/main/javassist/bytecode/analysis/
Subroutine.java 31 private Set access = new HashSet(); field in class:Subroutine
47 public void access(int index) { method in class:Subroutine
48 access.add(new Integer(index));
52 return access.contains(new Integer(index));
56 return access;
  /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 31 * either private, default-access or rejected by the {@link Filter}.
46 public void visit(int version, int access, String name, String signature,
50 super.visit(version, access, name, signature, superName, interfaces);
69 public FieldVisitor visitField(int access, String name, String desc,
72 if ((access & (Opcodes.ACC_PUBLIC | Opcodes.ACC_PROTECTED)) == 0) {
86 return super.visitField(access, name, desc, signature, value);
100 public MethodVisitor visitMethod(int access, String name, String desc,
104 if ((access & (Opcodes.ACC_PUBLIC | Opcodes.ACC_PROTECTED)) == 0) {
128 return super.visitMethod(access, name, desc, signature, exceptions);
144 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/win/
registry.h 28 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
34 DWORD* disposition, REGSAM access);
36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG OpenKey(const wchar_t* name, REGSAM access);
75 // The key must have been opened with the KEY_NOTIFY access privilege.
registry.cc 24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
29 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK))
30 Create(rootkey, subkey, access);
32 Open(rootkey, subkey, access);
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
44 return CreateWithDisposition(rootkey, subkey, &disposition_value, access);
48 DWORD* disposition, REGSAM access) {
50 DCHECK(rootkey && subkey && access && disposition);
54 REG_OPTION_NON_VOLATILE, access, NULL, &key_,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 150 fill.access()->opacity = obj;
156 fill.access()->paint = obj;
162 stroke.access()->opacity = obj;
168 stroke.access()->paint = obj;
174 stroke.access()->dashArray = obj;
180 stroke.access()->miterLimit = obj;
186 stroke.access()->width = obj;
192 stroke.access()->dashOffset = obj;
198 text.access()->kerning = obj;
204 stops.access()->opacity = obj
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
Extensions3DChromium.cpp 80 void* Extensions3DChromium::mapBufferSubDataCHROMIUM(unsigned target, int offset, int size, unsigned access)
82 return m_internal->mapBufferSubDataCHROMIUM(target, offset, size, access);
90 void* Extensions3DChromium::mapTexSubImage2DCHROMIUM(unsigned target, int level, int xoffset, int yoffset, int width, int height, unsigned format, unsigned type, unsigned access)
92 return m_internal->mapTexSubImage2DCHROMIUM(target, level, xoffset, yoffset, width, height, format, type, access);
  /packages/apps/Nfc/src/com/android/nfc/
NfceeAccessControl.java 55 * Map from UID to NFCEE access, used as a cache.
84 boolean access = false;
91 // Ensure the package has access permissions
93 access = true;
99 mUidCache.put(uid, access);
100 return access;
111 Boolean access = mUidCache.get(info.uid); local
112 if (access == null) {
113 access = checkPackageNfceeAccess(info.packageName);
114 mUidCache.put(info.uid, access);
    [all...]
  /development/tools/emulator/opengl/system/gralloc/
Android.mk 13 # Need to access the special OPENGL TLS Slot
  /external/chromium/net/disk_cache/
cache_util_win.cc 64 // There is an error, but we share delete access so let's see if there is a
69 DWORD access = SYNCHRONIZE; local
71 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));

Completed in 1501 milliseconds

1 2 3 4 5 6 7 8 91011>>