HomeSort by relevance Sort by last modified time
    Searched refs:attributes (Results 51 - 75 of 4518) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/net/
ScoredNetwork.java 37 * Key used with the {@link #attributes} bundle to define the badging curve.
43 "android.net.attributes.key.BADGING_CURVE";
45 * Extra used with {@link #attributes} to specify whether the
58 "android.net.attributes.key.HAS_CAPTIVE_PORTAL";
61 * Key used with the {@link #attributes} bundle to define the rankingScoreOffset int value.
67 "android.net.attributes.key.RANKING_SCORE_OFFSET";
92 * An additional collection of optional attributes set by
99 public final Bundle attributes; field in class:ScoredNetwork
130 this(networkKey, rssiCurve, meteredHint, null /* attributes */);
145 * @param attributes optional provider specific attribute
    [all...]
  /external/v8/src/
property.cc 16 const PropertyAttributes& attributes) {
18 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable
19 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
20 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable
26 PropertyAttributes attributes,
28 return DataField(key, field_index, attributes, kMutable, representation,
33 PropertyAttributes attributes,
38 PropertyDetails details(kData, attributes, kField, constness, representation,
45 PropertyAttributes attributes) {
48 return DataField(key, field_index, attributes, kConst
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
XMLUtils.java 30 * @param attributes tag attributes (or null)
35 @Nullable Properties attributes) {
37 xmlOpen(result, indent, name, attributes, true /* no newline */);
41 xmlClose(result, "", name, XMLUtils.extractComment(name, attributes));
49 String[] attributes = new String[] { "id", "name", "class" };
50 for (String a : attributes) {
61 String elementName, Boolean value, Properties attributes) {
63 xmlRequired(result, sp, elementName, value.toString(), attributes);
68 String elementName, @Nullable String value, Properties attributes) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
43 /** {@code non-null;} the associated list of attributes */
44 private final AttributeList attributes; field in class:AttCode
53 * @param attributes {@code non-null;} the associated list of attributes
56 ByteCatchList catches, AttributeList attributes) {
81 if (attributes.isMutable()) {
82 throw new MutabilityException("attributes.isMutable()");
86 throw new NullPointerException("attributes == null")
    [all...]
  /external/autotest/client/deps/glbench/src/
xlib_window.cc 38 XWindowAttributes attributes; local
39 XGetWindowAttributes(g_xlib_display, root_window, &attributes);
41 g_width = g_width == -1 ? attributes.width : g_width;
42 g_height = g_height == -1 ? attributes.height : g_height;
62 XGetWindowAttributes(g_xlib_display, g_xlib_window, &attributes);
63 g_width = attributes.width;
64 g_height = attributes.height;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
TestAttributeSetTest.java 21 private HashMap<String, String> attributes; field in class:TestAttributeSetTest
26 attributes = new HashMap<String, String>();
35 attributes.put("android:id", "@android:id/text1");
36 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
42 attributes.put("id", "@id/text1");
43 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
49 attributes.put("id", "@null");
50 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
56 attributes.put("android:id", "@+id/text1");
58 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, true)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_namednodemapchildnoderange.java 31 * Create a NamedNodeMap object from the attributes of the
66 NamedNodeMap attributes; local
73 attributes = testEmployee.getAttributes();
74 length = (int) attributes.getLength();
80 child = attributes.item(2);
84 child = attributes.item(0);
86 child = attributes.item(1);
88 child = attributes.item(3);
hc_namednodemapremovenameditem.java 35 * object of the attributes of the last child. Once the
70 NamedNodeMap attributes; local
77 attributes = testAddress.getAttributes();
78 removedNode = attributes.removeNamedItem("class");
79 streetAttr = (Attr) attributes.getNamedItem("class");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapSetNamedItemNS.java 42 * http://www.nist.gov", and put its attributes into a named node map. Create a
85 NamedNodeMap attributes; local
96 attributes = element.getAttributes();
99 attribute = (Attr) attributes.getNamedItemNS(
106 NamedNodeMap attributes; local
116 attributes = element.getAttributes();
117 attributes.setNamedItemNS(attribute1);
118 attribute = (Attr) attributes.getNamedItemNS(
127 NamedNodeMap attributes; local
140 attributes = element.getAttributes()
164 NamedNodeMap attributes; local
230 NamedNodeMap attributes; local
256 NamedNodeMap attributes; local
282 NamedNodeMap attributes; local
    [all...]
NamedNodeMapGetNamedItemNS.java 102 NamedNodeMap attributes; local
111 attributes = element.getAttributes();
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
119 NamedNodeMap attributes; local
132 attributes = element.getAttributes();
133 attribute = (Attr) attributes.getNamedItemNS(
140 NamedNodeMap attributes; local
151 attributes = element.getAttributes();
152 attribute = (Attr) attributes.getNamedItemNS(
159 NamedNodeMap attributes; local
    [all...]
NamedNodeMapRemoveNamedItemNS.java 77 NamedNodeMap attributes; local
85 attributes = element.getAttributes();
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov",
88 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
96 // NamedNodeMap attributes;
107 // attributes = element.getAttributes();
108 // attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
109 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
117 NamedNodeMap attributes; local
132 attributes = element.getAttributes()
142 NamedNodeMap attributes; local
209 NamedNodeMap attributes; local
231 NamedNodeMap attributes; local
253 NamedNodeMap attributes; local
276 NamedNodeMap attributes; local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/testdefs/
XmlDefsParser.java 20 import org.xml.sax.Attributes;
45 public void startElement(String uri, String localName, String name, Attributes attributes)
48 final String defName = attributes.getValue("name");
50 attributes.getValue("package"));
51 def.setClassName(attributes.getValue("class"));
52 def.setRunner(attributes.getValue("runner"));
53 def.setContinuous("true".equals(attributes.getValue("continuous")));
54 def.setCoverageTarget(attributes.getValue("coverage_target"));
  /external/gptfdisk/
attributes.h 10 #define NUM_ATR 64 /* # of attributes -- 64, since it's a 64-bit field */
15 class Attributes {
20 uint64_t attributes; member in class:Attributes
23 Attributes(void);
24 Attributes(const uint64_t a);
25 ~Attributes(void);
26 void operator=(uint64_t a) {attributes = a;}
28 uint64_t GetAttributes(void) const {return attributes;}
37 }; // class Attributes
39 ostream & operator<<(ostream & os, const Attributes & data)
    [all...]
  /external/tpm2/
NV_WriteLock.c 48 if( nvIndex.publicArea.attributes.TPMA_NV_WRITEDEFINE == CLEAR
49 && nvIndex.publicArea.attributes.TPMA_NV_WRITE_STCLEAR == CLEAR)
64 nvIndex.publicArea.attributes.TPMA_NV_WRITELOCKED = SET;
NV_SetBits.c 44 if(nvIndex.publicArea.attributes.TPMA_NV_BITS != SET)
48 if(nvIndex.publicArea.attributes.TPMA_NV_WRITTEN == CLEAR)
59 if( ( nvIndex.publicArea.attributes.TPMA_NV_ORDERLY == CLEAR
61 || nvIndex.publicArea.attributes.TPMA_NV_WRITTEN == CLEAR)
NV_Write.c 45 if( nvIndex.publicArea.attributes.TPMA_NV_COUNTER == SET
46 || nvIndex.publicArea.attributes.TPMA_NV_BITS == SET
47 || nvIndex.publicArea.attributes.TPMA_NV_EXTEND == SET)
56 if( nvIndex.publicArea.attributes.TPMA_NV_WRITEALL == SET
PolicyNvWritten.c 33 if(session->attributes.checkNvWritten == SET)
35 if(( (session->attributes.nvWrittenState == SET)
42 // Set session attributes so that the NV Index needs to be checked
43 session->attributes.checkNvWritten = SET;
44 session->attributes.nvWrittenState = (in->writtenSet == YES);
  /libcore/ojluni/src/main/java/sun/util/locale/
UnicodeLocaleExtension.java 45 private final Set<String> attributes; field in class:UnicodeLocaleExtension
55 attributes = Collections.emptySet();
59 UnicodeLocaleExtension(SortedSet<String> attributes, SortedMap<String, String> keywords) {
61 if (attributes != null) {
62 this.attributes = attributes;
64 this.attributes = Collections.emptySet();
72 if (!this.attributes.isEmpty() || !this.keywords.isEmpty()) {
74 for (String attribute : this.attributes) {
91 if (attributes == Collections.EMPTY_SET)
    [all...]
  /external/elfutils/libdw/
dwarf_macro_param.c 44 *ret = macro->attributes[idx];
  /external/protobuf/python/google/protobuf/
reflection.py 113 attributes = {}
115 attributes[name] = MakeClass(nested_type)
117 attributes[GeneratedProtocolMessageType._DESCRIPTOR_KEY] = descriptor
120 attributes)
  /frameworks/compile/libbcc/lib/
CompilerConfig.cpp 37 void AddX86NativeCPUFeatures(std::vector<std::string>* attributes) {
41 attributes->push_back((f.second ? '+' : '-') + f.first().str());
46 attributes->push_back("-avx");
105 std::vector<std::string> attributes; local
113 attributes.push_back("+vfp3");
115 attributes.push_back("+d16");
122 attributes.push_back("+neon");
125 attributes.push_back("-neon");
126 attributes.push_back("-neonfp");
133 attributes.push_back("+hwdiv-arm")
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
attr-arch-directive-3.s 1 # .arch directives merge attributes after instructions are seen.
  /external/libpng/scripts/
symbols.c 19 #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
21 #define PNG_REMOVED(ordinal, type, name, args, attributes)\
  /external/python/cpython3/Misc/
python-wing4.wpr 6 [project attributes]
python-wing5.wpr 6 [project attributes]

Completed in 1065 milliseconds

1 23 4 5 6 7 8 91011>>