/libcore/support/src/test/java/tests/resources/ |
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...] |
ArrayParameter.cpp | 120 /// Actual parameter access 121 // String access 136 bool CArrayParameter::access(std::vector<bool> &abValues, bool bSet, function in class:CArrayParameter 143 bool CArrayParameter::access(std::vector<uint32_t> &auiValues, bool bSet, function in class:CArrayParameter 149 // Signed Integer Access 150 bool CArrayParameter::access(std::vector<int32_t> &aiValues, bool bSet, function in class:CArrayParameter 156 // Double Access 157 bool CArrayParameter::access(std::vector<double> &adValues, bool bSet, function in class:CArrayParameter 163 // String Access 164 bool CArrayParameter::access(std::vector<string> &astrValues, bool bSet function in class:CArrayParameter [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
LongFilePathOs.py | 21 def access(path, mode):
function 22 return os.access(LongFilePath(path), mode)
|
/external/llvm/lib/Target/PowerPC/ |
PPCMCInstLower.cpp | 87 unsigned access = MO.getTargetFlags() & PPCII::MO_ACCESS_MASK; local 89 switch (access) { 129 switch (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...] |
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...] |
/external/skia/src/gpu/gl/ |
GrGLProgram.cpp | 153 const GrProcessor::BufferAccess& access = processor.bufferAccess(i); local 154 fGpu->bindTexelBuffer((*nextSamplerIdx)++, access.texelConfig(), 155 static_cast<GrGLBuffer*>(access.buffer())); 158 const GrProcessor::ImageStorageAccess& access = processor.imageStorageAccess(i); local 159 fGpu->bindImageStorage((*nextSamplerIdx)++, access.ioType(), 160 static_cast<GrGLTexture *>(access.texture()));
|
/external/skia/tools/gpu/gl/debug/ |
GrBufferObj.h | 32 void access() { function in class:GrBufferObj 33 // cannot access the buffer if it is currently mapped
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
Buffer.h | 48 GLbitfield access() const { return mAccess; } function in class:es2::Buffer 50 void* mapRange(GLintptr offset, GLsizeiptr length, GLbitfield access);
|
/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);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
Field.java | 310 String access = ""; local 312 access += JDWPConstants.FieldAccess 316 access += JDWPConstants.FieldAccess 320 access += JDWPConstants.FieldAccess 325 access += JDWPConstants.FieldAccess 330 access += JDWPConstants.FieldAccess 335 access += JDWPConstants.FieldAccess 340 access += JDWPConstants.FieldAccess 345 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);
|
/external/deqp/modules/glshared/ |
glsRandomShaderProgram.cpp | 186 rsg::ExecValueAccess access = m_execCtx.getValue(attribVar); local 196 access.component(0).asFloat(ndx) = attribValue[0]; 197 if (numComponents >= 2) access.component(1).asFloat(ndx) = attribValue[1]; 198 if (numComponents >= 3) access.component(2).asFloat(ndx) = attribValue[2]; 199 if (numComponents >= 4) access.component(3).asFloat(ndx) = attribValue[3]; 207 const rsg::ExecConstValueAccess access = m_execCtx.getValue(m_positionVar); local 214 packet->position[0] = access.component(0).asFloat(ndx); 215 packet->position[1] = access.component(1).asFloat(ndx); 216 packet->position[2] = access.component(2).asFloat(ndx); 217 packet->position[3] = access.component(3).asFloat(ndx) 227 const rsg::ExecConstValueAccess access = m_execCtx.getValue(var); local 265 rsg::ExecValueAccess access = m_execCtx.getValue(var); local [all...] |
/external/libdrm/nouveau/ |
private.h | 87 uint32_t access; member in struct:nouveau_bo_priv
|
/external/skia/src/gpu/ |
GrProgramDesc.cpp | 90 const GrProcessor::BufferAccess& access = proc.bufferAccess(i); local 91 k16[j] = sampler_key(kBufferSampler_GrSLType, access.texelConfig(), access.visibility(),
|
/external/v8/src/compiler/ |
js-global-object-specialization.cc | 8 #include "src/compiler/access-builder.h" 60 FieldAccess access = {kTaggedBase, PropertyCell::kValueOffset, name, type, r, local 62 return access;
|
typed-optimization.cc | 163 FieldAccess const& access = FieldAccessOf(node->op()); local 164 if (access.base_is_tagged == kTaggedBase && 165 access.offset == HeapObject::kMapOffset) {
|
/external/zlib/src/examples/ |
zran.c | 1 /* 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 points * 75 struct access { struct [all...] |
/hardware/qcom/display/msm8998/sdm/include/utils/ |
sys.h | 57 typedef int (*access)(const char *, int); typedef in class:sdm::Sys 72 static access access_;
|
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
noembed.h | 100 #ifdef access 101 #undef access macro
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Executor.java | 56 * If a subroutine is passed, the access flags will be modified if this instruction accesses 424 access(index, Type.INTEGER, subroutine); method 786 access(index, type, subroutine); method 875 access(index, type, subroutine); method 980 private void access(int index, Type type, Subroutine subroutine) { method in class:Executor [all...] |