HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 351 - 375 of 683) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/src/
property-details.h 48 // ABSENT can never be stored in or returned from a descriptor's attributes
49 // bitfield. It is only used as a return value meaning the attributes of
210 // PropertyDetails captures type and attributes for a property.
214 PropertyDetails(PropertyAttributes attributes,
218 | AttributesField::encode(attributes)
222 ASSERT(attributes == this->attributes());
225 PropertyDetails(PropertyAttributes attributes,
230 | AttributesField::encode(attributes)
244 static_cast<PropertyAttributes>(attributes() | new_attributes)
262 PropertyAttributes attributes() const { function in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 537 * Adds a new declared field to this class [with no attributes]
541 // TODO: support Fields with initializer attributes?
554 * Adds a new declared field to this class [with given attributes]
557 final IAttributeCollection attributes)
559 // TODO: support Fields with initializer attributes?
565 final Field_info field = new Field_info (access_flags, name_index, descriptor_index, attributes);
580 final IAttributeCollection attributes = ElementFactory.newAttributeCollection (0); local
586 attributes.add (code);
588 final Method_info method = new Method_info (access_flags, name_index, descriptor_index, attributes);
  /external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
SDL_dspvideo.c 338 DSpContextAttributes attributes; local
360 if ( DSpContext_GetAttributes (context, &attributes) != noErr )
363 *displayWidth = attributes.displayWidth;
364 *displayHeight = attributes.displayHeight;
367 width = attributes.displayWidth;
368 height = attributes.displayHeight;
370 temp_list [i].x = 0 | attributes.displayBestDepth;
379 while ( width == attributes.displayWidth && height == attributes.displayHeight ) {
388 if ( DSpContext_GetAttributes (context, &attributes) != noErr
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 112 throw new XMPException("Invalid attributes of rdf:RDF element", BADRDF);
148 * attributes == set ( ( idAttr | nodeIdAttr | aboutAttr )?, propertyAttr* ) )
190 * attributes == set ( ( idAttr | nodeIdAttr | aboutAttr )?, propertyAttr* ) )
195 * anything other than an RDF term. The rdf:ID and rdf:nodeID attributes are simply ignored,
196 * as are rdf:about attributes on inner nodes.
207 // Used to detect attributes that are mutually exclusive.
231 throw new XMPException("Mutally exclusive about, ID, nodeID attributes",
310 * start-element ( URI == propertyElementURIs, attributes == set ( idAttr? ) )
316 * URI == propertyElementURIs, attributes == set ( idAttr?, datatypeAttr?) )
322 * URI == propertyElementURIs, attributes == set ( idAttr?, parseLiteral )
371 NamedNodeMap attributes = xmlNode.getAttributes(); local
    [all...]
  /external/zlib/src/contrib/untgz/
untgz.c 251 /* push file attributes */
268 /* restore file attributes */
397 struct attr_item *attributes = NULL; local
465 push_attr(&attributes,fname,tarmode,tartime);
553 push_attr(&attributes,fname,tarmode,tartime);
570 restore_attr(&attributes);
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 557 } attributes[] = { local
567 for (attrib = attributes; attrib < attributes + NUMA(attributes);
571 if (attrib >= attributes + NUMA(attributes)) {
609 } attributes[] = { local
636 for (attrib = attributes; attrib < attributes + NUMA(attributes);
801 } attributes[] = { local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 120 * its attributes are always copied.
124 * handlers of copied element attributes. It is the caller's
167 NamedNodeMap attributes = element.getAttributes(); local
168 for (int i = 0; i < attributes.getLength(); i++) {
169 AttrImpl elementAttr = (AttrImpl) attributes.item(i);
239 * this document. The node's subtree and attributes will remain attached,
306 NamedNodeMap attributes = node.getAttributes(); local
307 for (int i = 0; i < attributes.getLength(); i++) {
308 changeDocumentToThis((AttrImpl) attributes.item(i));
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlParser.java 69 // Whitelists for looking up accepted HTML tags and attributes
78 * most browsers. Discards comments, unknown tags and attributes, and
82 * - normalizes whitespace and quotes around tag attributes
596 * Holds any unrecognized attributes we encounter. Only applicable in
646 // nameStart is where we begin scanning for the tag name and attributes,
694 // Attributes
696 ArrayList<HtmlDocument.TagAttribute> attributes = null; local
741 if (attributes == null) {
742 attributes = new ArrayList<HtmlDocument.TagAttribute>();
744 addAttribute(attributes, attributeScanner, nextAttributeStartPos, pos)
    [all...]
HTML4.java 30 * See http://www.w3.org/TR/html401/index/attributes.html
39 /** Map of all attributes */
40 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap(); field in class:HTML4
71 return attributes.get(name.toLowerCase());
83 * @return Unmodifiable Map of all valid HTML4 attributes. Key is lowercase
87 return Collections.unmodifiableMap(attributes);
148 attributes.put(attribute, attr);
260 * All the HTML4 attributes
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlParser.java 69 // Whitelists for looking up accepted HTML tags and attributes
78 * most browsers. Discards comments, unknown tags and attributes, and
82 * - normalizes whitespace and quotes around tag attributes
596 * Holds any unrecognized attributes we encounter. Only applicable in
646 // nameStart is where we begin scanning for the tag name and attributes,
694 // Attributes
696 ArrayList<HtmlDocument.TagAttribute> attributes = null; local
741 if (attributes == null) {
742 attributes = new ArrayList<HtmlDocument.TagAttribute>();
744 addAttribute(attributes, attributeScanner, nextAttributeStartPos, pos)
    [all...]
HTML4.java 31 * See http://www.w3.org/TR/html401/index/attributes.html
40 /** Map of all attributes */
41 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap(); field in class:HTML4
72 return attributes.get(name.toLowerCase());
84 * @return Unmodifiable Map of all valid HTML4 attributes. Key is lowercase
88 return Collections.unmodifiableMap(attributes);
149 attributes.put(attribute, attr);
261 * All the HTML4 attributes
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmllib.py 92 attributes = {} # default, to be overridden variable in class:XMLParser
539 self.syntax_error('xml:namespace without required attributes')
553 # Internal -- parse attributes between i and j
631 # translate namespace of attributes
658 attributes = self.attributes.get(nstag)
659 if attributes is not None:
661 if not key in attributes:
663 for key, val in attributes.items():
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmllib.py 92 attributes = {} # default, to be overridden variable in class:XMLParser
539 self.syntax_error('xml:namespace without required attributes')
553 # Internal -- parse attributes between i and j
631 # translate namespace of attributes
658 attributes = self.attributes.get(nstag)
659 if attributes is not None:
661 if not key in attributes:
663 for key, val in attributes.items():
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 47 * Parser for attributes description files.
56 // all attributes that have the same name are supposed to have the same
68 * Map of all (constant, value) pairs for attributes of format enum or flag.
87 * @param expectedAttributeCount expected number of attributes in the file
107 * {@link AttrsXmlParser} which attributes will be used for this one. Since
108 * already defined attributes are not modifiable, they are thus "inherited".
112 * @param inheritableAttributes An optional parser with attributes to inherit. Can be null.
116 * @param expectedAttributeCount expected number of attributes in the file
153 * Preloads the document, parsing all attributes and declared styles.
184 * Loads all attributes & javadoc for the view class info based on the class name
192 AttributeInfo[] attributes = style.getAttributes(); local
221 AttributeInfo[] attributes = style.getAttributes(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 102 * is modified (either the class itself or its attributes.xml)
137 * is modified (either the class itself or its attributes.xml)
201 AttributeDescriptor[] attributes = local
204 attributes = join(attrList, attributes);
213 attributes,
244 @NonNull AttributeDescriptor[] attributes) {
248 attributes,
251 return attributes;
299 // Attributes
602 AttributeDescriptor[] attributes = local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 53 * However their sub-elements and attributes are created only when the SDK changes or is
63 // Public attributes names, attributes descriptors and elements descriptors
173 * @param manifestMap The map style => attributes from the attrs_manifest.xml file
178 // -- setup the required attributes overrides --
337 * and the javadoc & attributes extracted from the style map if any.
372 AttributeDescriptor[] attributes = element.getAttributes(); local
373 for (AttributeDescriptor attr : attributes) {
379 AttributeDescriptor[] newArray = new AttributeDescriptor[attributes.length + 1];
381 System.arraycopy(attributes, 0, newArray, 1, attributes.length)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipant.java 498 NamedNodeMap attributes = element.getAttributes(); local
499 for (int i = 0, n = attributes.getLength(); i < n; i++) {
500 Attr attr = (Attr) attributes.item(i);
RenameResourceParticipant.java 93 * the XML files as appropriate; renaming .xml files, updating XML attributes, resource
567 NamedNodeMap attributes = element.getAttributes(); local
568 for (int i = 0, n = attributes.getLength(); i < n; i++) {
569 Attr attr = (Attr) attributes.item(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 609 NamedNodeMap attributes = element.getAttributes(); local
610 for (int j = 0, m = attributes.getLength(); j < m; j++) {
611 Attr attribute = (Attr) attributes.item(j);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 220 + mAttributeInfos + ", attributes=" + mAttributes + ", bounds=" + mBounds + "]";
343 NamedNodeMap attributes = mElement.getAttributes(); local
344 for (int i = 0, n = attributes.getLength(); i < n; i++) {
345 Attr attribute = (Attr) attributes.item(i);
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 349 // visit class attributes [to get src file name, etc]:
440 // visit attributes [skip visit (IAttributeCollection) method]:
441 final IAttributeCollection attributes = method.getAttributes (); local
442 final int attributeCount = attributes.size ();
445 final Attribute_info attribute = attributes.get (a);
489 final IAttributeCollection attributes; local
492 attributes = ElementFactory.newAttributeCollection (2);
494 attributes = ElementFactory.newAttributeCollection (1);
502 attributes.add (code);
506 attributes.add (new SyntheticAttribute_info (m_syntheticStringIndex))
530 final IAttributeCollection attributes = clinit.getAttributes (); local
546 final IAttributeCollection attributes; local
1225 final IAttributeCollection attributes = attribute.getAttributes (); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 205 // Test completion of attributes on the manifest element
210 // Test completion of attributes on the manifest element
362 // Check attributes of the layer list
367 // Check attributes of the <item> element inside a <layer-list>
377 // Check attributes of <shape> element
482 // Test completion of theme attributes
495 // Test <include> attributes
903 AttributeDescriptor[] attributes = vd.getAttributes(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
  /bionic/libc/kernel/common/linux/
ncp.h 142 __le32 attributes; member in struct:nw_info_struct
192 __le32 attributes; member in struct:nw_modify_dos_info

Completed in 1788 milliseconds

<<11121314151617181920>>