/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
nl80211.h | 19 * or rename notification. Has attributes %NL80211_ATTR_WIPHY and 21 * @NL80211_CMD_DEL_WIPHY: Wiphy deleted. Has attributes 31 * %NL80211_ATTR_WIPHY and %NL80211_ATTR_IFTYPE attributes. Can also 33 * then requires attributes %NL80211_ATTR_WIPHY, %NL80211_ATTR_IFTYPE and 35 * @NL80211_CMD_DEL_INTERFACE: Virtual interface was deleted, has attributes 66 * enum nl80211_attrs - nl80211 netlink attributes 92 /* add attributes here, update the policy in nl80211.c */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
nl80211.h | 19 * or rename notification. Has attributes %NL80211_ATTR_WIPHY and 21 * @NL80211_CMD_DEL_WIPHY: Wiphy deleted. Has attributes 31 * %NL80211_ATTR_WIPHY and %NL80211_ATTR_IFTYPE attributes. Can also 33 * then requires attributes %NL80211_ATTR_WIPHY, %NL80211_ATTR_IFTYPE and 35 * @NL80211_CMD_DEL_INTERFACE: Virtual interface was deleted, has attributes 66 * enum nl80211_attrs - nl80211 netlink attributes 92 /* add attributes here, update the policy in nl80211.c */
|
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_worditerator_unittest.cc | 119 SpellcheckCharAttribute attributes; local 120 attributes.SetDefaultLanguage(kTestCases[i].language); 124 EXPECT_TRUE(iterator.Initialize(&attributes, 148 SpellcheckCharAttribute attributes; 149 attributes.SetDefaultLanguage("en-US"); 155 EXPECT_TRUE(iterator.Initialize(&attributes, true)); 214 SpellcheckCharAttribute attributes; 215 attributes.SetDefaultLanguage(kTestCases[i].language); 219 EXPECT_TRUE(iterator.Initialize(&attributes, true)); 235 SpellcheckCharAttribute attributes; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourcePattern.cpp | 202 static inline FloatRect calculatePatternBoundaries(const PatternAttributes& attributes, 207 return SVGLengthContext::resolveRectangle(patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height()); 211 const PatternAttributes& attributes, 220 patternBoundaries = calculatePatternBoundaries(attributes, objectBoundingBox, patternElement); 224 AffineTransform viewBoxCTM = SVGFitToViewBox::viewBoxToViewTransform(attributes.viewBox(), attributes.preserveAspectRatio(), patternBoundaries.width(), patternBoundaries.height()) [all...] |
/hardware/libhardware/include/hardware/ |
bt_rc.h | 131 /** Callback for list player application attributes (Shuffle, Repeat,...) */ 134 /** Callback for list player application attributes (Shuffle, Repeat,...) */ 142 /** Callback for getting the player application settings attributes' text 155 /** Callback to fetch the get element attributes of the current song 156 ** num_attr: specifies the number of attributes requested in p_attrs 209 /** Lists the support player application attributes (Shuffle/Repeat/...) 210 ** num_attr: Specifies the number of attributes contained in the pointer p_attrs 214 /** Lists the support player application attributes (Shuffle Off/On/Group) 222 /** Returns the application attributes text ("Shuffle"/"Repeat"/...) 223 ** num_attr: Specifies the number of attributes' text contained in the pointer p_attr [all...] |
/libcore/luni/src/main/java/org/xml/sax/ |
AttributeList.java | 19 * attributes. Unlike the new {@link org.xml.sax.Attributes Attributes} 31 * <p>An attribute list includes only attributes that have been 32 * specified or defaulted: #IMPLIED attributes will not be included.</p> 50 * are no attributes.) 53 * type of specific attributes:</p> 64 * {@link org.xml.sax.Attributes Attributes} 83 * Return the number of attributes in this list [all...] |
Attributes.java | 0 // Attributes.java - attribute list with Namespace support 5 // $Id: Attributes.java,v 1.13 2004/03/18 12:28:05 dmegginson Exp $ 11 * Interface for a list of XML attributes. 20 * <p>This interface allows access to a list of attributes in 29 * <p>The list will not contain attributes that were declared 31 * contain attributes used as Namespace declarations (xmlns*) unless 37 * give namespace declaration attributes a namespace URI. 42 * that those attributes be given URIs, conforming to a later 60 * <p>The order of attributes in the list is unspecified, and will 69 public interface Attributes [all...] |
/libcore/luni/src/main/java/org/xml/sax/ext/ |
Attributes2Impl.java | 9 import org.xml.sax.Attributes; 13 * SAX2 extension helper for additional Attributes information, 27 * always be false, except for defaulted attributes (<em>specified</em> 28 * is false), non-CDATA attributes, or when it is set to true using 54 * Copy an existing Attributes or Attributes2 object. 59 * unless there is evidence to the contrary (such as attributes with 65 * @param atts The existing Attributes object. 67 public Attributes2Impl (Attributes atts) 186 * Copy an entire Attributes object. The "specified" flags are 192 * @param atts The attributes to copy [all...] |
/external/chromium_org/tools/gyp/tools/ |
pretty_vcproj.py | 43 if node.attributes: 48 for (name, value) in node.attributes.items(): 69 # Get the number of attributes 71 if node.attributes: 72 attr_count = node.attributes.length 81 for (name, value) in node.attributes.items(): 99 if (node.attributes and 130 if node.attributes: 131 for (name, value) in node.attributes.items(): 157 # Fix all the semicolon separated attributes to be sorted, and we als [all...] |
/libcore/luni/src/main/java/java/util/jar/ |
JarVerifier.java | 71 private final Hashtable<String, HashMap<String, Attributes>> signatures = new Hashtable<String, HashMap<String, Attributes>>( 179 Attributes attributes = man.getAttributes(name); local 181 if (attributes == null) { 186 Iterator<Map.Entry<String, HashMap<String, Attributes>>> it = signatures.entrySet().iterator(); 188 Map.Entry<String, HashMap<String, Attributes>> entry = it.next(); 189 HashMap<String, Attributes> hm = entry.getValue(); 205 final String hash = attributes.getValue(algorithm + "-Digest"); 313 Attributes attributes = new Attributes() local [all...] |
ManifestReader.java | 33 private final HashMap<String, Attributes.Name> attributeNameCache = new HashMap<String, Attributes.Name>(); 43 private Attributes.Name name; 49 public ManifestReader(byte[] buf, Attributes main) throws IOException { 57 public void readEntries(Map<String, Attributes> entries, Map<String, Manifest.Chunk> chunks) throws IOException { 60 if (!Attributes.Name.NAME.equals(name)) { 65 Attributes entry = entries.get(entryNameValue); 67 entry = new Attributes(12); 130 name = new Attributes.Name(nameString); 134 // new Attributes.Name() throws IllegalArgumentException but we declare IOExceptio [all...] |
/external/chromium/chrome/browser/importer/ |
toolbar_importer_unittest.cc | 59 "<attributes> " 69 "</value> </attribute> </attributes> " 80 "<attributes> " 90 "</value> </attribute> </attributes> " 101 "<attributes> " 111 "</value> </attribute> </attributes> " 122 "<attributes> " 132 "</value> </attribute> </attributes> " 143 "<attributes> " 150 "</value> </attribute> </attributes> " [all...] |
/external/xmlwriter/src/org/jheer/ |
XMLWriter.java | 151 * Internal method for writing a tag with attributes. 153 * @param names the names of the attributes 154 * @param values the values of the attributes 155 * @param nattr the number of attributes 183 * Write a closed tag with attributes. The tag will be followed by a 186 * @param names the names of the attributes 187 * @param values the values of the attributes 188 * @param nattr the number of attributes 196 * Write a start tag with attributes. The tag will be followed by a 199 * @param names the names of the attributes [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorLRE.java | 41 import org.xml.sax.Attributes; 66 * @param attributes The specified or defaulted attributes. 69 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) 119 int n = attributes.getLength(); 123 String attrLocalName = attributes.getLocalName(i); 124 String attrUri = attributes.getURI(i); 125 String value = attributes.getValue(i); 130 attributes.getType(i) [all...] |
/external/chromium_org/sandbox/win/src/ |
process_thread_policy.cc | 112 OBJECT_ATTRIBUTES attributes = {0}; local 113 attributes.Length = sizeof(attributes); 121 NTSTATUS status = NtOpenThread(&local_handle, desired_access, &attributes, 147 OBJECT_ATTRIBUTES attributes = {0}; 148 attributes.Length = sizeof(attributes); 153 NTSTATUS status = NtOpenProcess(&local_handle, desired_access, &attributes, 195 uint32 attributes, 206 attributes, &local_handle) [all...] |
restricted_token_unittest.cc | 189 ATL::CAtlArray<DWORD> attributes; local 190 groups.GetSidsAndAttributes(&sids, &attributes); 195 attributes[i] & SE_GROUP_USE_FOR_DENY_ONLY); 216 ATL::CAtlArray<DWORD> attributes; local 217 groups.GetSidsAndAttributes(&sids, &attributes); 221 if ((attributes[i] & SE_GROUP_LOGON_ID) == 0 && 222 (attributes[i] & SE_GROUP_INTEGRITY) == 0) { 224 attributes[i] & SE_GROUP_USE_FOR_DENY_ONLY); 248 ATL::CAtlArray<DWORD> attributes; local 249 groups.GetSidsAndAttributes(&sids, &attributes); 281 ATL::CAtlArray<DWORD> attributes; local 319 ATL::CAtlArray<DWORD> attributes; local 427 ATL::CAtlArray<DWORD> attributes; local 564 ATL::CAtlArray<DWORD> attributes; local [all...] |
/frameworks/base/core/java/android/print/pdf/ |
PrintedPdfDocument.java | 30 * attributes. It is useful for implementing printing via the native 34 * from the provided print attributes and these precomputed values can be 82 * @param attributes The print attributes. 84 public PrintedPdfDocument(Context context, PrintAttributes attributes) { 85 MediaSize mediaSize = attributes.getMediaSize(); 87 // Compute the size of the target canvas from the attributes. 93 // Compute the content size from the attributes. 94 Margins minMargins = attributes.getMinMargins(); 109 * rectangle computed from the print attributes passed in the constructo [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
NamespacedAttributesLookupTest.java | 20 import org.xml.sax.Attributes; 32 * Tests that we both report and retrieve attributes using the appropriate 107 String uri, String localName, String qName, Attributes attributes) { 119 for (int i = 0; i < attributes.getLength(); i++) { 122 serialized.append(attributes.getURI(i)).append(","); 123 serialized.append(attributes.getLocalName(i)); 125 serialized.append(attributes.getQName(i)); 129 .append(attributes.getValue("http://bar", "c")).append(",") 131 .append(attributes.getValue("bar:c") [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
OverlayTitleEditor.java | 39 public static final String PARAM_OVERLAY_ATTRIBUTES = "attributes"; 102 final Bundle attributes = getIntent().getBundleExtra(PARAM_OVERLAY_ATTRIBUTES); local 103 if (attributes != null) { 106 mOverlayType = MovieOverlay.getType(attributes); 107 mTitleView.setText(MovieOverlay.getTitle(attributes)); 108 mSubtitleView.setText(MovieOverlay.getSubtitle(attributes)); 136 final Bundle attributes = extras.getBundleExtra( local 138 mOverlayType = MovieOverlay.getType(attributes); 166 final Bundle attributes = MovieOverlay.buildUserAttributes(mOverlayType, local 168 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, attributes); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/ |
ViewClassInfo.java | 36 /** Attributes for this view or view group. Can be empty but never null. */ 46 /** Layout Data Attributes for layout classes. Can be empty but not null. */ 69 /** Returns the LayoutData attributes. Can be empty but not null. */ 73 /** Sets the LayoutData attributes. Can be empty but not null. */ 74 public void setAttributes(AttributeInfo[] attributes) { 75 mAttributes = attributes; 117 /** Returns the attributes for this view or view group. Maybe empty but not null. */ 144 /** Sets the list of attributes for this View or ViewGroup. */ 145 public void setAttributes(AttributeInfo[] attributes) { 146 mAttributes = attributes; [all...] |
/external/clang/include/clang/Basic/ |
Builtins.h | 51 const char *Name, *Type, *Attributes, *HeaderName; 57 !strcmp(Attributes, RHS.Attributes); 95 return strchr(GetRecord(ID).Attributes, 'c') != 0; 100 return strchr(GetRecord(ID).Attributes, 'n') != 0; 105 return strchr(GetRecord(ID).Attributes, 'r') != 0; 110 return strchr(GetRecord(ID).Attributes, 'j') != 0; 116 return strchr(GetRecord(ID).Attributes, 'u') != 0; 122 return strchr(GetRecord(ID).Attributes, 'F') != 0; 129 return strchr(GetRecord(ID).Attributes, 'f') != 0 [all...] |
/external/jdiff/src/jdiff/ |
CommentsHandler.java | 7 import org.xml.sax.Attributes; 58 java.lang.String qName, Attributes attributes) { 63 String commentsName = attributes.getValue("name"); 64 String version = attributes.getValue("jdversion"); // Not used yet 81 String id = attributes.getValue("id"); 91 addStartTagToText(localName, attributes); 152 public void addStartTagToText(String localName, Attributes attributes) { 158 // Now add all the attributes into the current tex [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
JarExecTest.java | 23 import java.util.jar.Attributes; 45 Attributes att = man.getMainAttributes(); 46 att.put(Attributes.Name.MANIFEST_VERSION, "1.0"); 47 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo"); 85 Attributes att = man.getMainAttributes(); 86 att.put(Attributes.Name.MANIFEST_VERSION, "1.0"); 87 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo"); 88 att.put(Attributes.Name.CLASS_PATH, barJar.getName()); 111 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barJar.getName()); 123 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator + barJar.getParentFile().getName() + File.separator + barJa (…) [all...] |
/external/libnl-headers/netlink/ |
object-api.h | 117 * @par 4) Object Attributes 119 * // The concept of object attributes is optional but can ease the typical 120 * // case of objects that have optional attributes, e.g. a route may have a 124 * // attributes 142 * // a comparison function and define a list of attributes which 154 * // compare the attributes if required. 158 * // representing the attributes which mismatch. 165 * // In order to identify identical objects with differing attributes 166 * // you must specify the attributes required to uniquely identify 167 * // your object. Make sure to not include too many attributes, thi [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/ |
ViewElementDescriptor.java | 65 /** The list of layout attributes. Can be empty but not null. */ 71 /** List of attribute sources, classes that contribute attributes to {@link #mAttributes} */ 76 * the canonical name of the class it represents, its tooltip, its SDK url, its attributes list, 85 * @param attributes The list of allowed attributes. Can be null or empty. 86 * @param layoutAttributes The list of layout attributes. Can be null or empty. 96 AttributeDescriptor[] attributes, AttributeDescriptor[] layoutAttributes, 98 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); 129 /** Returns the list of layout attributes. Can be empty but not null. 131 * @return the list of layout attributes, never nul [all...] |