HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 26 - 50 of 936) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/support/src/test/java/tests/resources/
hyts_signed_sha256digest_sha256withrsa.jar 
hyts_signed_sha256withrsa.jar 
hyts_signed_sha512digest_sha512withecdsa.jar 
hyts_signed_validChain.jar 
hyts_signed_wrong_cert.jar 
  /external/parameter-framework/upstream/parameter/
Parameter.cpp 98 /// Actual parameter access
99 // String access
112 // Boolean access
113 bool CParameter::access(bool &bValue, bool bSet, function in class:CParameter
119 // Integer Access
120 bool CParameter::access(uint32_t &uiValue, bool bSet, function in class:CParameter
126 // Signed Integer Access
127 bool CParameter::access(int32_t &iValue, bool bSet, function in class:CParameter
133 // Double Access
134 bool CParameter::access(double &dValue, bool bSet function in class:CParameter
    [all...]
  /external/selinux/sepolgen/tests/
test_access.py 24 import sepolgen.access as access namespace
29 a = access.AccessVector()
38 a = access.AccessVector()
44 l = access.AccessVector(['foo', 'bar', 'file', 'read', 'write'])
51 a = access.AccessVector()
57 l = access.AccessVector()
65 a = access.AccessVector()
81 a = access.AccessVector()
104 a = access.AccessVector(
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 43 const GrTextureAccess& access = proc.textureAccess(i); local
44 GrGLTexture* texture = static_cast<GrGLTexture*>(access.getTexture());
  /external/skia/src/gpu/vk/
GrVkProgramDesc.cpp 31 const GrTextureAccess& access = proc.textureAccess(i); local
32 GrTexture* texture = access.getTexture();
  /external/v8/test/unittests/compiler/
simplified-operator-unittest.cc 124 // Buffer access operators.
143 BufferAccess const access(GetParam());
146 EXPECT_EQ(simplified1.LoadBuffer(access), simplified2.LoadBuffer(access));
147 EXPECT_EQ(simplified1.StoreBuffer(access), simplified2.StoreBuffer(access));
153 BufferAccess const access(GetParam());
154 const Operator* op = simplified.LoadBuffer(access);
158 EXPECT_EQ(access, BufferAccessOf(op));
173 BufferAccess const access(GetParam())
248 const ElementAccess& access = GetParam(); local
268 const ElementAccess& access = GetParam(); local
    [all...]
  /external/dbus-binding-generator/chromeos-dbus-bindings/
interface.h 59 : name(name_in), type(type_in), access(access_in) {}
62 std::string access; member in struct:chromeos_dbus_bindings::Interface::Property
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 119 unsigned access = MO.getTargetFlags() & PPCII::MO_ACCESS_MASK; local
121 switch (access) {
161 switch (access) {
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
FieldWriter.java 50 * Access flags of this field.
52 private final int access; field in class:FieldWriter
101 * @param access the field's access flags (see {@link Opcodes}).
109 final int access,
122 this.access = access;
181 if ((access & Opcodes.ACC_SYNTHETIC) != 0
187 if ((access & Opcodes.ACC_DEPRECATED) != 0) {
215 out.putShort(access).putShort(name).putShort(desc);
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
FieldNode.java 44 * The field's access flags (see {@link org.mockito.asm.Opcodes}). This
47 public int access; field in class:FieldNode
74 * @param access the field's access flags (see
87 final int access,
93 this.access = access;
106 FieldVisitor fv = cv.visitField(access, name, desc, signature, value);
MethodNode.java 52 * The method's access flags (see {@link Opcodes}). This field also
55 public int access; field in class:MethodNode
152 * @param access the method's access flags (see {@link Opcodes}). This
163 final int access,
170 this.access = access;
177 boolean isAbstract = (access & Opcodes.ACC_ABSTRACT) != 0;
406 MethodVisitor mv = cv.visitMethod(access,
  /external/proguard/src/proguard/ant/
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/selinux/sepolgen/src/sepolgen/
matching.py 21 Classes and algorithms for matching requested access to access vectors.
26 from . import access namespace
102 # to be a strong penalty - stronger than access to
107 if a == b or access.is_idparam(b):
125 """Determine the 'distance' between 2 access vectors.
127 This function is used to find an access vector that matches
128 a 'required' access. To do this we comput a signed numeric
129 value that indicates how close the req access is to the
130 'provided' access vector. The closer the value is to
    [all...]