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

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorDecimalFormat.java 24 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)
70 setPropertiesFromAttributes(handler, rawName, attributes, dfp);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/descriptors/
ItemElementDescriptor.java 32 * tooltip, SDK url, attributes list, children list and mandatory.
38 * @param attributes The list of allowed attributes. Can be null or empty.
46 String tooltip, String sdk_url, AttributeDescriptor[] attributes,
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
  /external/openssl/crypto/store/
str_lib.c 254 X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[],
264 attributes, parameters);
280 int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[],
304 object, attributes, parameters);
335 int STORE_revoke_certificate(STORE *s, OPENSSL_ITEM attributes[],
342 attributes, parameters))
351 int STORE_delete_certificate(STORE *s, OPENSSL_ITEM attributes[],
358 attributes, parameters))
367 void *STORE_list_certificate_start(STORE *s, OPENSSL_ITEM attributes[],
376 STORE_OBJECT_TYPE_X509_CERTIFICATE, attributes, parameters)
1537 OPENSSL_ITEM *attributes; member in struct:attr_list_ctx_st
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 33 import org.xml.sax.Attributes;
58 public void start(Attributes attributes) {
71 public void start(Attributes attributes) {
245 public void start(Attributes attributes) {
246 String url = attributes.getValue("", "url");
255 public void start(Attributes attributes) {
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 46 private List<AttrImpl> attributes = new ArrayList<AttrImpl>(); field in class:ElementImpl
76 for (int i = 0; i < attributes.size(); i++) {
77 AttrImpl attr = attributes.get(i);
87 for (int i = 0; i < attributes.size(); i++) {
88 AttrImpl attr = attributes.get(i);
124 return attributes.get(i);
134 return attributes.get(i);
148 for (Attr attr : attributes) {
157 * Document.getElementById(): "Attributes with the name "ID"
254 return !attributes.isEmpty()
    [all...]
  /external/bluetooth/glib/gio/
gfileinputstream.h 72 const char *attributes,
76 const char *attributes,
97 const char *attributes,
101 const char *attributes,
gfileoutputstream.h 77 const char *attributes,
81 const char *attributes,
103 const char *attributes,
107 const char *attributes,
  /external/emma/core/java12/com/vladium/jcd/cls/
IClassDefVisitor.java 25 Object visit (IAttributeCollection attributes, Object ctx);
  /external/webkit/JavaScriptCore/API/
JSClassRef.h 40 : getProperty(_getProperty), setProperty(_setProperty), attributes(_attributes)
46 JSPropertyAttributes attributes; member in struct:StaticValueEntry
51 : callAsFunction(_callAsFunction), attributes(_attributes)
56 JSPropertyAttributes attributes; member in struct:StaticFunctionEntry
  /external/webkit/WebCore/bindings/v8/custom/
V8NamedNodesCollection.cpp 49 if (node->hasAttributes() && node->attributes()->id() == id)
  /frameworks/base/opengl/tests/configdump/
configdump.cpp 29 Attribute attributes[] = { variable
79 for (int attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
82 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
setNamedItemNS04.java 86 NamedNodeMap attributes; local
104 attributes = child2.getAttributes();
105 arg = attributes.getNamedItemNS(namespaceURI, localName);
110 setNode = attributes.setNamedItemNS(arg);
  /external/openssl/crypto/x509/
x509_req.c 238 if (!req->req_info->attributes)
240 if (!(req->req_info->attributes = sk_X509_ATTRIBUTE_new_null()))
243 if(!sk_X509_ATTRIBUTE_push(req->req_info->attributes, attr)) goto err;
260 return X509at_get_attr_count(req->req_info->attributes);
266 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos);
272 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos);
277 return X509at_get_attr(req->req_info->attributes, loc);
282 return X509at_delete_attr(req->req_info->attributes, loc);
287 if(X509at_add1_attr(&req->req_info->attributes, attr)) return 1;
295 if(X509at_add1_attr_by_OBJ(&req->req_info->attributes, obj
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 32 * This ClassVisitor sorts the attributes of the classes that it visits.
33 * The sorting order is based on the types of the attributes.
45 // Sort the attributes.
46 Arrays.sort(programClass.attributes, 0, programClass.u2attributesCount, this);
48 // Sort the attributes of the class members.
58 // Sort the attributes.
59 Arrays.sort(programMember.attributes, 0, programMember.u2attributesCount, this);
61 // Sort the attributes of the attributes.
73 // Sort the attributes
    [all...]
  /external/proguard/src/proguard/obfuscate/
AttributeShrinker.java 30 * This ClassVisitor removes attributes that are not marked as being used or
47 // Compact the array for class attributes.
49 shrinkArray(programClass.attributes,
52 // Compact the attributes in fields, methods, and class attributes,
69 // Compact the attributes array.
71 shrinkArray(programMember.attributes,
74 // Compact any attributes of the remaining attributes.
86 // Compact the attributes array
    [all...]
  /external/v8/src/
property.h 37 // Each descriptor has a key, property attributes, property type,
67 details_ = PropertyDetails(details_.attributes(), details_.type(), index);
91 PropertyAttributes attributes,
96 details_(attributes, type, index) { }
107 MapTransitionDescriptor(String* key, Map* map, PropertyAttributes attributes)
108 : Descriptor(key, map, attributes, MAP_TRANSITION) { }
127 PropertyAttributes attributes,
129 : Descriptor(key, Smi::FromInt(field_index), attributes, FIELD, index) {}
137 PropertyAttributes attributes,
139 : Descriptor(key, function, attributes, CONSTANT_FUNCTION, index) {
    [all...]
  /external/webkit/JavaScriptCore/debugger/
DebuggerActivation.h 43 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue, unsigned attributes);
47 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes);
48 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes);
  /external/webkit/JavaScriptCore/runtime/
JSStaticScopeObject.h 46 JSStaticScopeObject(ExecState* exec, const Identifier& ident, JSValue value, unsigned attributes)
50 symbolTable().add(ident.ustring().rep(), SymbolTableEntry(-1, attributes));
58 void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
PropertyDescriptor.h 45 unsigned attributes() const { return m_attributes; } function in class:JSC::PropertyDescriptor
50 void setDescriptor(JSValue value, unsigned attributes);
51 void setAccessorDescriptor(JSValue getter, JSValue setter, unsigned attributes);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrcreatetextnode.java 69 NamedNodeMap attributes; local
75 attributes = testNode.getAttributes();
76 streetAttr = (Attr) attributes.getNamedItem("street");
attrcreatetextnode2.java 68 NamedNodeMap attributes; local
74 attributes = testNode.getAttributes();
75 streetAttr = (Attr) attributes.getNamedItem("street");
attrdefaultvalue.java 34 * value is the attributes default value.
78 NamedNodeMap attributes; local
84 attributes = testNode.getAttributes();
85 streetAttr = (Attr) attributes.getNamedItem("street");
attrnotspecifiedvalue.java 75 NamedNodeMap attributes; local
81 attributes = testNode.getAttributes();
82 streetAttr = (Attr) attributes.getNamedItem("street");
attrspecifiedvalueremove.java 79 NamedNodeMap attributes; local
86 attributes = testNode.getAttributes();
87 streetAttr = (Attr) attributes.getNamedItem("street");
elementremoveattributeaftercreate.java 70 NamedNodeMap attributes; local
78 attributes = testEmployee.getAttributes();
79 districtAttr = (Attr) attributes.getNamedItem("district");

Completed in 438 milliseconds

1 2 3 4 56 7 8 91011>>