HomeSort by relevance Sort by last modified time
    Searched defs:attrib (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 17 package com.android.dx.cf.attrib;
AttConstantValue.java 17 package com.android.dx.cf.attrib;
AttDeprecated.java 17 package com.android.dx.cf.attrib;
AttLocalVariableTable.java 17 package com.android.dx.cf.attrib;
AttLocalVariableTypeTable.java 17 package com.android.dx.cf.attrib;
AttRuntimeInvisibleAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeInvisibleParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeVisibleAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeVisibleParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttSignature.java 17 package com.android.dx.cf.attrib;
AttSourceFile.java 17 package com.android.dx.cf.attrib;
AttSynthetic.java 17 package com.android.dx.cf.attrib;
BaseAnnotations.java 17 package com.android.dx.cf.attrib;
BaseAttribute.java 17 package com.android.dx.cf.attrib;
BaseLocalVariables.java 17 package com.android.dx.cf.attrib;
BaseParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttEnclosingMethod.java 17 package com.android.dx.cf.attrib;
AttExceptions.java 17 package com.android.dx.cf.attrib;
AttInnerClasses.java 17 package com.android.dx.cf.attrib;
AttLineNumberTable.java 17 package com.android.dx.cf.attrib;
RawAttribute.java 17 package com.android.dx.cf.attrib;
AttCode.java 17 package com.android.dx.cf.attrib;
  /external/openssl/crypto/pkcs12/
p12_attr.c 68 if (X509at_add1_attr_by_NID(&bag->attrib, NID_localKeyID,
93 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
104 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
114 if (X509at_add1_attr_by_NID(&bag->attrib, NID_ms_csp_name,
123 X509_ATTRIBUTE *attrib; local
127 attrib = sk_X509_ATTRIBUTE_value (attrs, i);
128 if (OBJ_obj2nid (attrib->object) == attr_nid) {
129 if (sk_ASN1_TYPE_num (attrib->value.set))
130 return sk_ASN1_TYPE_value(attrib->value.set, 0);
p12_kiss.c 229 ASN1_TYPE *attrib; local
233 if ((attrib = PKCS12_get_attr (bag, NID_friendlyName)))
234 fname = attrib->value.bmpstring;
236 if ((attrib = PKCS12_get_attr (bag, NID_localKeyID)))
237 lkid = attrib->value.octet_string;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 30 EGLint attrib[MAX_ATTRIB]; local
33 attrib[pos++] = EGL_SURFACE_TYPE; attrib[pos++] = EGL_WINDOW_BIT;
34 if (config & CONFIG_DEPTH) {attrib[pos++] = EGL_DEPTH_SIZE; attrib[pos++] = 1;}
35 attrib[pos++] = EGL_NONE;
37 if (!eglChooseConfig(eglDisplay, attrib, &eglConfig, 1, &nConfigs)) {

Completed in 154 milliseconds

1 2 3 4