/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/ |
CertificationRequestInfo.java | 37 * attributes [0] IMPLICIT Attributes } 41 * Attributes ::= SET OF Attribute 52 /** the value of attributes field of the structure */ 53 private final List<?> attributes; field in class:CertificationRequestInfo 59 SubjectPublicKeyInfo subjectPublicKeyInfo, List<?> attributes, byte [] encoding) { 63 this.attributes = attributes; 97 res.append("\n attributes: "); 98 if (attributes != null) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/ |
PrivateKeyInfo.java | 40 * attributes [0] IMPLICIT Attributes OPTIONAL } 48 * Attributes ::= SET OF Attribute 54 private final List<?> attributes; field in class:PrivateKeyInfo 58 byte[] privateKey, List attributes) { 62 this.attributes = attributes; 67 List attributes, byte[] encoding) { 68 this(version, privateKeyAlgorithm, privateKey, attributes); 81 return attributes; [all...] |
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
DexDepsXmlHandler.java | 19 import org.xml.sax.Attributes; 49 public void startElement(String uri, String localName, String name, Attributes attributes) 51 super.startElement(uri, localName, name, attributes); 53 mCurrentPackageName = CurrentXmlHandler.getValue(attributes, "name"); 56 mCurrentClassName = CurrentXmlHandler.getValue(attributes, "name"); 60 mCurrentMethodName = CurrentXmlHandler.getValue(attributes, "name"); 61 mCurrentMethodReturnType = CurrentXmlHandler.getValue(attributes, "return"); 64 mCurrentParameterTypes.add(CurrentXmlHandler.getValue(attributes, "type"));
|
/dalvik/dx/tests/014-field-attrib-ConstantValue/ |
small-class.txt | 54 # attributes[0] 64 # attributes[0] 74 # attributes[0] 84 # attributes[0] 94 # attributes[0] 104 # attributes[0] 114 # attributes[0] 124 # attributes[0] 134 # attributes[0]
|
/external/chromium_org/chrome/browser/ui/gtk/ |
gtk_input_event_box.cc | 61 GdkWindowAttr attributes; local 67 attributes.x = allocation.x; 68 attributes.y = allocation.y; 69 attributes.width = allocation.width; 70 attributes.height = allocation.height; 72 attributes.window_type = GDK_WINDOW_CHILD; 73 attributes.wclass = GDK_INPUT_ONLY; 75 attributes.event_mask = gtk_widget_get_events(widget) | 83 priv->event_window = gdk_window_new(parent, &attributes, attributes_mask);
|
/packages/apps/Mms/src/com/android/mms/dom/smil/parser/ |
SmilContentHandler.java | 23 import org.xml.sax.Attributes; 56 public void startElement(String uri, String localName, String qName, Attributes attributes) { 61 if (attributes != null) { 62 for (int i = 0; i < attributes.getLength(); i++) { 65 " lname = " + attributes.getLocalName(i) + 66 " value = " + attributes.getValue(i)); 68 element.setAttribute(attributes.getLocalName(i), 69 attributes.getValue(i));
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
VertexDeclarationCache.cpp | 46 GLenum VertexDeclarationCache::applyDeclaration(IDirect3DDevice9 *device, TranslatedAttribute attributes[], gl::ProgramBinary *programBinary, GLsizei instances, GLsizei *repeatDraw) 58 if (attributes[i].active) 60 if (indexedAttribute == gl::MAX_VERTEX_ATTRIBS && attributes[i].divisor == 0) 64 else if (instancedAttribute == gl::MAX_VERTEX_ATTRIBS && attributes[i].divisor != 0) 84 if (attributes[i].active) 87 ASSERT(attributes[i].storage == NULL); 93 // Due to a bug on ATI cards we can't enable instancing when none of the attributes are instanced. 111 if (attributes[i].divisor == 0) 117 frequency = D3DSTREAMSOURCE_INSTANCEDATA | attributes[i].divisor; 125 VertexBuffer9 *vertexBuffer = VertexBuffer9::makeVertexBuffer9(attributes[i].vertexBuffer) [all...] |
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_GLattr.3 | 3 SDL_GLattr \- SDL GL Attributes 4 .SH "ATTRIBUTES" 43 While you can set most OpenGL attributes normally, the attributes list above must be known \fIbefore\fP SDL sets the video mode\&. These attributes a set and read with \fI\fBSDL_GL_SetAttribute\fP\fR and \fI\fBSDL_GL_GetAttribute\fP\fR\&.
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
MenuLoader.java | 55 NamedNodeMap attributes = node.getAttributes(); local 57 if (attributes != null) { 58 int length = attributes.getLength(); 60 Node attr = attributes.item(i); 107 Map<String, String> attributes, Menu root) { 113 if (attributes != null) { 114 for (Map.Entry<String, String> entry : attributes.entrySet()) { 116 menuNode.attributes.put(entry.getKey(), 131 private final TestAttributeSet attributes; field in class:MenuLoader.MenuNode 135 public MenuNode(String name, Map<String, String> attributes) { 157 TestAttributeSet attributes = child.attributes; local [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
NamedNodeMapSetNamedItemNS.java | 42 * http://www.nist.gov", and put its attributes into a named node map. Create a 85 NamedNodeMap attributes; local 96 attributes = element.getAttributes(); 99 attribute = (Attr) attributes.getNamedItemNS( 106 NamedNodeMap attributes; local 116 attributes = element.getAttributes(); 117 attributes.setNamedItemNS(attribute1); 118 attribute = (Attr) attributes.getNamedItemNS( 127 NamedNodeMap attributes; local 140 attributes = element.getAttributes() 164 NamedNodeMap attributes; local 230 NamedNodeMap attributes; local 256 NamedNodeMap attributes; local 282 NamedNodeMap attributes; local [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorKey.java | 29 import org.xml.sax.Attributes; 60 * @param attributes The attributes attached to the element. If 61 * there are no attributes, it shall be an empty 62 * Attributes object. 65 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 73 setPropertiesFromAttributes(handler, rawName, attributes, kd); 83 * @param attributes The list of attributes [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmInfoRequestTest.java | 66 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local 67 attributes.put("Hello", ""); 68 attributes.put("World", null); 69 attributes.put("Hello World", "Hello World"); 71 // Store all the attributes in DrmInfoRequest object request. 73 Iterator<String> keys = attributes.keySet().iterator(); 76 request.put(key, attributes.get(key)); 79 // Request object must have all the keys that attributes does. 83 assertEquals(request.get(key), attributes.get(key)); 86 // Attributes object must have all the keys that request does [all...] |
DrmInfoTest.java | 76 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local 77 attributes.put("Hello", ""); 78 attributes.put("World", null); 79 attributes.put("Hello World", "Hello World"); 81 // Store all the attributes in DrmInfo object info. 83 Iterator<String> keys = attributes.keySet().iterator(); 86 info.put(key, attributes.get(key)); 89 // info object must have all the keys that attributes does. 93 assertEquals(info.get(key), attributes.get(key)); 96 // Attributes object must have all the keys that info does [all...] |
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AwPdfExporter.java | 40 public void exportToPdf(final ParcelFileDescriptor fd, PrintAttributes attributes, 52 if (attributes.getMediaSize() == null) { 53 throw new IllegalArgumentException("attributes must specify a media size"); 55 if (attributes.getResolution() == null) { 56 throw new IllegalArgumentException("attributes must specify print resolution"); 58 if (attributes.getMinMargins() == null) { 59 throw new IllegalArgumentException("attributes must specify margins"); 66 mAttributes = attributes; 82 private static int getPrintDpi(PrintAttributes attributes) { 83 // TODO(sgurun) android print attributes support horizontal an [all...] |
/external/chromium_org/content/common/gpu/client/ |
gpu_in_process_context_tests.cc | 22 blink::WebGraphicsContext3D::Attributes attributes; local 24 CreateOffscreenContext(attributes);
|
/external/llvm/test/Transforms/IPConstantProp/ |
user-with-multiple-uses.ll | 32 ; CHECK: attributes #0 = { noreturn nounwind } 33 ; CHECK: attributes #1 = { nounwind readnone } 34 ; CHECK: attributes [[NUW]] = { nounwind }
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/ |
ClassCache.java | 11 import java.util.jar.Attributes; 18 private static final Attributes.Name VERSION_ATTRIBUTE = new Attributes.Name("version"); 31 Attributes attributes = manifest.getEntries().get("robolectric"); local 32 if (attributes != null) { 33 String cacheVersionStr = (String) attributes.get(VERSION_ATTRIBUTE); 51 Attributes attributes = new Attributes(); [all...] |
/external/smack/src/com/kenai/jbosh/ |
CMSessionParams.java | 85 resp.getAttribute(Attributes.ACK)); 86 String rid = req.getAttribute(Attributes.RID); 91 getRequiredAttribute(resp, Attributes.SID)), 93 getRequiredAttribute(resp, Attributes.WAIT)), 95 resp.getAttribute(Attributes.VER)), 97 resp.getAttribute(Attributes.POLLING)), 99 resp.getAttribute(Attributes.INACTIVITY)), 101 resp.getAttribute(Attributes.REQUESTS)), 103 resp.getAttribute(Attributes.HOLD)), 105 resp.getAttribute(Attributes.ACCEPT)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cd.py | 15 # attributes. More comprehensive examples can be found in Demo/cd and 19 # touch all the attributes of cd without doing anything 21 print 'Touching cd module attributes...'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cd.py | 15 # attributes. More comprehensive examples can be found in Demo/cd and 19 # touch all the attributes of cd without doing anything 21 print 'Touching cd module attributes...'
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
AttributesImplSerializer.java | 26 import org.xml.sax.Attributes; 31 * xml.sax.Attributes. But for optimization this class adds a Hashtable for 35 * @see org.xml.sax.Attributes 43 * of an attributes qName. qNames are in uppercase in the hash table 54 * This is the number of attributes before switching to the hash table, 60 * One less than the number of attributes before switching to 69 * @see org.xml.sax.Attributes#getIndex(String) 77 // if we haven't got too many attributes let the 82 // we have too many attributes and the super class is slow 112 // (index + 1) is now the number of attributes [all...] |
/dalvik/dx/tests/011-class-attrib-Synthetic/ |
expected.txt | 23 attributes[0]: 26 end attributes[0]
|
/dalvik/dx/tests/012-class-attrib-SourceFile/ |
expected.txt | 24 attributes[0]: 28 end attributes[0]
|
/dalvik/dx/tests/013-class-attrib-Deprecated/ |
expected.txt | 23 attributes[0]: 26 end attributes[0]
|
/dalvik/dx/tests/025-class-attrib-Signature/ |
expected.txt | 24 attributes[0]: 28 end attributes[0]
|