HomeSort by relevance Sort by last modified time
    Searched refs:attributes (Results 226 - 250 of 679) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlSerializer.java 53 NamedNodeMap attributes = element.getAttributes(); local
54 for (int i = 0; i < attributes.getLength(); i++) {
55 Attr attribute = (Attr)attributes.item(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 43 // Public attributes names, attributes descriptors and elements descriptors
182 ArrayList<AttributeDescriptor> attributes = new ArrayList<AttributeDescriptor>(); local
189 DescriptorsUtils.appendAttribute(attributes,
196 // Process all View attributes
197 DescriptorsUtils.appendAttributes(attributes,
209 attributes.add(new SeparatorAttributeDescriptor(
210 String.format("Attributes from %1$s", link.getShortClassName())));
211 DescriptorsUtils.appendAttributes(attributes,
220 // Process all LayoutParams attributes
277 ArrayList<AttributeDescriptor> attributes = new ArrayList<AttributeDescriptor>(); local
    [all...]
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 76 AttributeList attributes = cf.getAttributes();
83 att = attributes.findFirst(
86 for (;att != null; att = attributes.findNext(att)) {
91 att = attributes.findFirst(
94 for (;att != null; att = attributes.findNext(att)) {
102 att = attributes.findFirst(
105 for (;att != null; att = attributes.findNext(att)) {
110 att = attributes.findFirst(
113 for (;att != null; att = attributes.findNext(att)) {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
AttributeCertificateInfo.java 21 private ASN1Sequence attributes; field in class:AttributeCertificateInfo
61 this.attributes = ASN1Sequence.getInstance(seq.getObjectAt(6));
110 return attributes;
133 * attributes SEQUENCE OF Attribute,
151 v.add(attributes);
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 103 // add all attributes set on the embed object
104 if (NamedNodeMap* attributes = element->attributes()) {
105 for (unsigned i = 0; i < attributes->length(); ++i) {
106 Attribute* it = attributes->attributeItem(i);
  /libcore/luni/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 51 * @param attributes An array of allowed attribute defs, or null.
56 XSLTElementDef[] elements, XSLTAttributeDef[] attributes,
59 build(namespace, name, nameAlias, elements, attributes, contentHandler,
79 * @param attributes An array of allowed attribute defs, or null.
85 XSLTElementDef[] elements, XSLTAttributeDef[] attributes,
89 build(namespace, name, nameAlias, elements, attributes, contentHandler,
110 * @param attributes An array of allowed attribute defs, or null.
117 XSLTElementDef[] elements, XSLTAttributeDef[] attributes,
122 elements, attributes,
134 * @param attributes An array of allowed attribute defs, or null
    [all...]
ProcessorAttributeSet.java 28 import org.xml.sax.Attributes;
51 * @param attributes The attributes attached to the element. If
52 * there are no attributes, it shall be an empty
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
92 * @param attributes The specified or defaulted attributes
    [all...]
ProcessorExsltFuncResult.java 29 import org.xml.sax.Attributes;
46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
51 super.startElement(handler, uri, localName, rawName, attributes);
ProcessorNamespaceAlias.java 25 import org.xml.sax.Attributes;
57 * @param attributes The attributes attached to the element. If
58 * there are no attributes, it shall be an empty
59 * Attributes object.
62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
68 setPropertiesFromAttributes(handler, rawName, attributes, na);
ProcessorPreserveSpace.java 29 import org.xml.sax.Attributes;
54 * @param attributes The attributes attached to the element. If
55 * there are no attributes, it shall be an empty
56 * Attributes object.
60 Attributes attributes)
65 setPropertiesFromAttributes(handler, rawName, attributes, paths);
ProcessorStripSpace.java 29 import org.xml.sax.Attributes;
54 * @param attributes The attributes attached to the element. If
55 * there are no attributes, it shall be an empty
56 * Attributes object.
59 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 setPropertiesFromAttributes(handler, rawName, attributes, paths);
  /external/bluetooth/glib/gio/
gfileinputstream.c 69 const char *attributes,
117 * @attributes: a file attribute query string.
122 * Queries a file input stream the given @attributes. This function blocks
132 const char *attributes,
154 info = class->query_info (stream, attributes, cancellable, error);
183 * @attributes: a file attribute query string.
205 const char *attributes,
233 klass->query_info_async (stream, attributes, io_priority, cancellable,
392 char *attributes; member in struct:__anon2028
401 g_free (data->attributes);
    [all...]
gfileoutputstream.c 73 const char *attributes,
120 * @attributes: a file attribute query string.
124 * Queries a file output stream for the given @attributes.
146 const char *attributes,
168 info = class->query_info (stream, attributes, cancellable, error);
197 * @attributes: a file attribute query string.
214 const char *attributes,
242 klass->query_info_async (stream, attributes, io_priority, cancellable,
494 char *attributes; member in struct:__anon2035
503 g_free (data->attributes);
    [all...]
gfileinfo.c 25 * @short_description: File Information and Attributes
31 * contain, and allows for manipulation of extended attributes.
34 * information on how GIO handles file attributes.
41 * To change the actual attributes of a file, you should then set the
45 * However, not all attributes can be changed in the file. For instance,
48 * g_file_query_writable_namespaces() to discover the settable attributes
52 * attributes.
78 GArray *attributes; member in struct:_GFileInfo
102 static char ***attributes = NULL; variable
109 * This way the attributes gets sorted in namespace orde
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
FieldListParser.java 79 AttributeList attributes) {
81 new StdField(getDefiner(), accessFlags, nat, attributes);
MethodListParser.java 79 AttributeList attributes) {
81 new StdMethod(getDefiner(), accessFlags, nat, attributes);
  /external/webkit/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 67 newNode->attributes()->setAttributes(*nodeToReplace->attributes());
  /external/webkit/WebKitTools/Scripts/
update-sources-list.py 49 if sourceGroup.attributes.has_key("var"):
50 groupName = sourceGroup.attributes["var"].value
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 28 * attributes and not only characters. An
31 * attributes with the same values.
36 * Defines keys for text attributes.
151 * Returns a set of attributes present in the {@code
152 * AttributedCharacterIterator}. An empty set is returned if no attributes
170 * Returns a map of all attributes of the current character. If no
171 * attributes were defined for the current character then an empty map is
174 * @return a map of all attributes for the current character or an empty
181 * attributes as the current character.
199 * attribute values for the attributes in the set as the current character
    [all...]
  /cts/tests/tests/sax/src/android/sax/cts/
ElementTest.java 24 import org.xml.sax.Attributes;
137 public void start(Attributes attributes) {
138 assertEquals(Y2009, attributes.getValue(0));
149 public void start(Attributes attributes) {
150 assertEquals(Y2000, attributes.getValue(0));
160 public void start(Attributes attributes) {
  /external/webkit/JavaScriptCore/runtime/
Structure.h 74 static PassRefPtr<Structure> addPropertyTransition(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
75 static PassRefPtr<Structure> addPropertyTransitionToExistingStructure(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
88 size_t addPropertyWithoutTransition(const Identifier& propertyName, unsigned attributes, JSCell* specificValue);
109 size_t get(const UString::Rep* rep, unsigned& attributes, JSCell*& specificValue);
110 size_t get(const Identifier& propertyName, unsigned& attributes, JSCell*& specificValue)
113 return get(propertyName.ustring().rep(), attributes, specificValue);
119 bool hasTransition(UString::Rep*, unsigned attributes);
120 bool hasTransition(const Identifier& propertyName, unsigned attributes)
122 return hasTransition(propertyName._ustring.rep(), attributes);
154 size_t put(const Identifier& propertyName, unsigned attributes, JSCell* specificValue)
    [all...]
  /external/webkit/WebCore/rendering/
RenderEmbeddedObject.cpp 177 // Use the attributes from the EMBED tag instead of the OBJECT tag including WIDTH and HEIGHT.
196 // Get the attributes from the params if there is no EMBED tag.
230 // Turn the attributes of either the EMBED tag or OBJECT tag into arrays, but don't override PARAM values.
231 NamedNodeMap* attributes = embedOrObject->attributes(); local
232 if (attributes) {
233 for (unsigned i = 0; i < attributes->length(); ++i) {
234 Attribute* it = attributes->attributeItem(i);
284 // add all attributes set on the embed object
285 NamedNodeMap* attributes = embedElement->attributes()
    [all...]
  /external/qemu/hw/
bt-sdp.c 39 int attributes; member in struct:bt_l2cap_sdp_state_s::sdp_service_record_s
236 for (i = 0; i < record->attributes; i ++)
264 for (i = 0; i < record->attributes; i ++)
304 for (i = 0; i < record->attributes; i ++)
363 for (j = 0; j < record->attributes; j ++)
382 for (j = 0; j < sdp->service_list[i].attributes; j ++)
447 for (j = 0; j < record->attributes; j ++)
591 } attributes[]; member in struct:sdp_def_service_s
706 while (def->attributes[record->attributes].data.type)
    [all...]
  /external/webkit/WebCore/bindings/js/
JSDOMWindowShell.h 76 virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, unsigned attributes);
80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
81 virtual void defineSetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* setterFunction, unsigned attributes);
  /dalvik/vm/compiler/
Frontend.c 205 static int analyzeInlineTarget(DecodedInstruction *dalvikInsn, int attributes,
213 attributes &= ~METHOD_IS_LEAF;
219 attributes &= ~METHOD_IS_GETTER;
223 attributes &= ~METHOD_IS_SETTER;
234 attributes &= ~METHOD_IS_GETTER;
237 attributes &= ~METHOD_IS_SETTER;
242 attributes &= ~METHOD_IS_THROW_FREE;
246 attributes |= METHOD_IS_EMPTY;
255 attributes &= ~(METHOD_IS_GETTER | METHOD_IS_SETTER);
258 return attributes;
310 int attributes; local
    [all...]

Completed in 241 milliseconds

1 2 3 4 5 6 7 8 91011>>