HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 26 - 50 of 1004) 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 126 // Buffer access operators.
145 BufferAccess const access(GetParam());
148 EXPECT_EQ(simplified1.LoadBuffer(access), simplified2.LoadBuffer(access));
149 EXPECT_EQ(simplified1.StoreBuffer(access), simplified2.StoreBuffer(access));
155 BufferAccess const access(GetParam());
156 const Operator* op = simplified.LoadBuffer(access);
161 EXPECT_EQ(access, BufferAccessOf(op));
176 BufferAccess const access(GetParam())
259 const ElementAccess& access = GetParam(); local
280 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...]
  /external/skia/src/gpu/gl/debug/
GrBufferObj.h 32 void access() { function in class:GrBufferObj
33 // cannot access the buffer if it is currently mapped
  /external/v8/src/compiler/
store-store-elimination.cc 76 // and (2) we only add/overwrite to the dictionary when the field access has
129 Offset ToOffset(const FieldAccess& access) { return ToOffset(access.offset); }
178 size_t rep_size_of(FieldAccess access) {
179 return rep_size_of(access.machine_type.representation());
206 FieldAccess access = OpParameter<FieldAccess>(current_node->op()); local
207 Offset offset = ToOffset(access);
212 CHECK(rep_size_of(access) <= rep_size_of(MachineRepresentation::kTagged));
213 if (rep_size_of(access) == rep_size_of(MachineRepresentation::kTagged)) {
  /external/v8/test/cctest/
test-constantpool.cc 16 const ConstantPoolEntry::Access kRegAccess = ConstantPoolEntry::REGULAR;
17 const ConstantPoolEntry::Access kOvflAccess = ConstantPoolEntry::OVERFLOWED;
26 ConstantPoolEntry::Access access; local
33 access = builder.AddEntry(pos++, value++, sharing_ok);
34 CHECK_EQ(access, kRegAccess);
39 access = builder.AddEntry(pos, value, sharing_ok);
40 CHECK_EQ(access, kOvflAccess);
47 ConstantPoolEntry::Access access; local
70 ConstantPoolEntry::Access access; local
110 ConstantPoolEntry::Access access; local
154 ConstantPoolEntry::Access access; local
203 ConstantPoolEntry::Access access; local
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testshape.c 56 int access = 0; local
154 SDL_QueryTexture(pictures[current_picture].texture,(Uint32 *)&pixelFormat,(int *)&access,&texture_dimensions.w,&texture_dimensions.h);
173 SDL_QueryTexture(pictures[current_picture].texture,(Uint32 *)&pixelFormat,(int *)&access,&texture_dimensions.w,&texture_dimensions.h);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/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...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Field.java 308 String access = ""; local
310 access += JDWPConstants.FieldAccess
314 access += JDWPConstants.FieldAccess
318 access += JDWPConstants.FieldAccess
323 access += JDWPConstants.FieldAccess
328 access += JDWPConstants.FieldAccess
333 access += JDWPConstants.FieldAccess
338 access += JDWPConstants.FieldAccess
343 return str + access;
  /external/clang/test/CodeGenCXX/
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp 453 namespace access { namespace
466 // MANGLING-DAG: @"\01?prot@B@access@@$2PPPPPPPM@A@AEXXZ"
469 // MANGLING-DAG: @"\01?priv@B@access@@$0PPPPPPPM@A@AEXXZ"
477 // MANGLING-DAG: @"\01?prot@B@access@@$R277PPPPPPPM@7AEXXZ"
478 // MANGLING-DAG: @"\01?priv@B@access@@$R077PPPPPPPM@7AEXXZ"
  /external/deqp/framework/delibs/deutil/
deFile.c 70 /* Read, write or read and write access is required. */
243 DWORD access = 0; local
247 /* Read, write or read and write access is required. */
261 access |= GENERIC_READ;
264 access |= GENERIC_WRITE;
287 handle = CreateFile(filename, access, FILE_SHARE_DELETE|FILE_SHARE_READ|FILE_SHARE_WRITE, DE_NULL, create, FILE_ATTRIBUTE_NORMAL, DE_NULL);

Completed in 850 milliseconds

12 3 4 5 6 7 8 91011>>