HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 351 - 375 of 3364) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
attr-wchar-12.d 1 #name: C6X wchar_t attribute merging, 1 2
attr-wchar-21.d 1 #name: C6X wchar_t attribute merging, 2 1
  /frameworks/native/libs/vr/libdvr/
dvr_display_manager.cpp 23 // Extracts type and value from the attribute Variant and writes them into the
26 DvrSurfaceAttribute* attribute; member in struct:__anon39469::AttributeVisitor
29 attribute->value.int32_value = value;
30 attribute->value.type = DVR_SURFACE_ATTRIBUTE_TYPE_INT32;
33 attribute->value.int64_value = value;
34 attribute->value.type = DVR_SURFACE_ATTRIBUTE_TYPE_INT64;
37 attribute->value.bool_value = value;
38 attribute->value.type = DVR_SURFACE_ATTRIBUTE_TYPE_BOOL;
41 attribute->value.float_value = value;
42 attribute->value.type = DVR_SURFACE_ATTRIBUTE_TYPE_FLOAT
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
AttributeCollection.java 15 import com.vladium.jcd.cls.attribute.*;
124 public int add (final Attribute_info attribute)
129 attributes.add (attribute);
131 if (attribute instanceof SyntheticAttribute_info)
133 else if (attribute instanceof InnerClassesAttribute_info)
136 throw new IllegalArgumentException ("this attribute collection already has an InnerClasses attribute");
140 else if (attribute instanceof BridgeAttribute_info)
145 "bad synthetic attribute count: " + m_syntheticRefCount);
150 public Attribute_info set (final int offset, final Attribute_info attribute)
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnSentence.java 45 this.attribute = 0;
56 this.attribute = headClause.attribute;
71 this.attribute = 2;
88 this.attribute = clause.attribute;
106 this.attribute = prev.attribute;
127 this.attribute = head.attribute;
    [all...]
  /system/connectivity/wificond/net/
nl80211_attribute.h 39 // This is used when we initialize a NL80211 attribute from an existing
42 // A util helper function to find a specific sub attribute from a buffer.
43 // This buffer is supposed to be from a nested attribute or a nl80211 packet.
115 // We parse string attribute buffer in the same way kernel does.
139 void AddAttribute(const BaseNL80211Attr& attribute);
140 // For NLA_FLAG attribute
144 // Access an attribute nested within |this|.
145 // The result is returned by writing the attribute object to |*attribute|.
149 // attribute id, nested within different level of |this|
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNodeNS.java 35 * Testing Element.setAttributeNodeNS: If an attribute with that local name and
37 * new one. Create a new element and two new attribute nodes (in the same
38 * namespace and same localNames). Add the two new attribute nodes to the
40 * attribute is added, check the value of this attribute.
113 Attr attribute; local
125 attribute = element.getAttributeNodeNS(nullNS, "street");
126 attributeCloned = (Attr) attribute.cloneNode(true);
138 Attr attribute; local
147 attribute = element1.getAttributeNodeNS(nullNS, "street")
164 Attr attribute; local
186 Attr attribute; local
207 Attr attribute; local
    [all...]
NamedNodeMapRemoveNamedItemNS.java 38 * Retreive an attribute node and then remove from the NamedNodeMap. Verify if
39 * the attribute node was actually remove from the node map.
79 Attr attribute; local
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov",
88 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
90 assertNull("namednodemapremovenameditemns01", attribute);
98 // Attr attribute;
108 // attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
109 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
110 // attrValue = attribute.getNodeValue()
119 Attr attribute; local
144 Attr attribute; local
279 Attr attribute; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
PKCS12BagAttributeCarrier.java 15 ASN1Encodable attribute);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IDeclaredExceptionTable.java 9 package com.vladium.jcd.cls.attribute;
32 * this this exception index table in its ExceptionsAttribute_info attribute.
IExceptionHandlerTable.java 9 package com.vladium.jcd.cls.attribute;
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_wayland_drm_bufmgr_helper.h 46 EGLint attribute, EGLint *value);
  /external/proguard/src/proguard/classfile/attribute/annotation/target/
LocalVariableTargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.TypeAnnotation;
26 import proguard.classfile.attribute.annotation.target.visitor.*;
TargetInfo.java 21 package proguard.classfile.attribute.annotation.target;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.annotation.TypeAnnotation;
26 import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapTableAttribute.java 21 package proguard.classfile.attribute.preverification;
24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
29 * This Attribute represents a stack map table attribute.
33 public class StackMapTableAttribute extends Attribute
67 // Implementations for Attribute.
  /external/proguard/src/proguard/classfile/editor/
BootstrapMethodsAttributeEditor.java 23 import proguard.classfile.attribute.*;
27 * This class can add bootstrap methods to a given bootstrap methods attribute.
39 * methods in the given bootstrap methods attribute.
48 * Adds a given bootstrap method to the bootstrap methods attribute.
LocalVariableTableAttributeEditor.java 23 import proguard.classfile.attribute.*;
27 * This class can add local variables to a given local variable table attribute.
39 * variables in the given local variable table attribute.
48 * Adds a given line number to the line number table attribute.
LocalVariableTypeTableAttributeEditor.java 23 import proguard.classfile.attribute.*;
28 * attribute.
40 * variable types in the given local variable type table attribute.
49 * Adds a given local variable type to the local variable type table attribute.
ParameterAnnotationsAttributeEditor.java 23 import proguard.classfile.attribute.annotation.*;
27 * This class can add annotations to a given parameter annotations attribute.
39 * annotations in the given parameter annotations attribute.
48 * Adds a given annotation to the annotations attribute.
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 24 import proguard.classfile.attribute.CodeAttribute;
  /external/spirv-llvm/lib/SPIRV/Mangler/
ManglingUtils.cpp 166 const char* getMangledAttribute(TypeAttributeEnum attribute) {
167 return mangledAttribute[attribute];
170 const char* getReadableAttribute(TypeAttributeEnum attribute) {
171 return readableAttribute[attribute];
  /external/strace/mpers-m32/
struct_sigevent.h 15 uint32_t attribute; member in struct:__anon30296::__anon30298::__anon30299
  /external/strace/mpers-mx32/
struct_sigevent.h 15 uint32_t attribute; member in struct:__anon30445::__anon30447::__anon30448
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
InverseBindingMethod.java 29 * attribute = "android:text",
35 * <code>method</code> is optional. If it isn't provided, the attribute name is used to
36 * find the method name, either prefixing with "is" or "get". For the attribute
41 * attribute name suffixed with <code>AttrChanged</code>. For the <code>android:text</code>
42 * attribute, the default event name would be <code>android:textAttrChanged</code>. The event
78 * The View type that is associated with the attribute.
83 * The attribute that supports two-way binding.
85 String attribute(); method in interface:InverseBindingMethod
88 * The event used to notify the data binding system that the attribute value has changed.
89 * Defaults to attribute() + "AttrChanged
    [all...]
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
AbsListViewBindingAdapter.java 25 @BindingMethod(type = AbsListView.class, attribute = "android:listSelector", method = "setSelector"),
26 @BindingMethod(type = AbsListView.class, attribute = "android:scrollingCache", method = "setScrollingCacheEnabled"),
27 @BindingMethod(type = AbsListView.class, attribute = "android:smoothScrollbar", method = "setSmoothScrollbarEnabled"),
28 @BindingMethod(type = AbsListView.class, attribute = "android:onMovedToScrapHeap", method = "setRecyclerListener"),

Completed in 713 milliseconds

<<11121314151617181920>>