Searched refs:attributes (Results 101 - 125 of 792) sorted by relevance

1234567891011>>

/external/libchrome/base/debug/
H A Dstack_trace.cc68 pthread_attr_t attributes; local
69 int error = pthread_getattr_np(pthread_self(), &attributes);
72 &attributes,
75 pthread_attr_destroy(&attributes);
/external/python/cpython2/Tools/msi/
H A Dmsisupport.c29 DWORD attributes; local
38 attributes = GetFileAttributesW(wpath);
39 if (attributes == INVALID_FILE_ATTRIBUTES ||
40 !(attributes & FILE_ATTRIBUTE_DIRECTORY))
/external/python/cpython2/Tools/webchecker/
H A Dwebchecker.py788 def check_name_id(self, attributes):
789 """ Check the name or id attributes on an element.
792 # attributes from the anchor, in order to
795 for name, value in attributes:
803 def unknown_starttag(self, tag, attributes):
804 """ In XHTML, you can have id attributes on any element.
806 self.check_name_id(attributes)
808 def start_a(self, attributes):
809 self.link_attr(attributes, 'href')
810 self.check_name_id(attributes)
[all...]
/external/tpm2/
H A DPolicyPhysicalPresence.c39 session->attributes.isPPRequired = SET;
H A DNV.c904 TPMA_NV attributes;
910 attributes = nvIndex.publicArea.attributes;
912 if(attributes.TPMA_NV_READLOCKED == SET)
913 attributes.TPMA_NV_READLOCKED = CLEAR;
914 if( attributes.TPMA_NV_WRITELOCKED == SET
915 && ( attributes.TPMA_NV_WRITTEN == CLEAR
916 || attributes.TPMA_NV_WRITEDEFINE == CLEAR
919 attributes.TPMA_NV_WRITELOCKED = CLEAR;
921 if(attributes
903 TPMA_NV attributes; local
[all...]
/external/boringssl/src/crypto/x509/
H A Dx509_req.c240 if (!req->req_info->attributes) {
241 if (!(req->req_info->attributes = sk_X509_ATTRIBUTE_new_null()))
244 if (!sk_X509_ATTRIBUTE_push(req->req_info->attributes, attr))
263 return X509at_get_attr_count(req->req_info->attributes);
268 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos);
274 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos);
279 return X509at_get_attr(req->req_info->attributes, loc);
284 return X509at_delete_attr(req->req_info->attributes, loc);
289 if (X509at_add1_attr(&req->req_info->attributes, attr))
298 if (X509at_add1_attr_by_OBJ(&req->req_info->attributes, ob
[all...]
/external/deqp/framework/delibs/dethread/unix/
H A DdeMutexUnix.c36 deMutex deMutex_create (const deMutexAttributes* attributes) argument
62 if (attributes)
64 if (attributes->flags & DE_MUTEX_RECURSIVE)
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DSignatureRemover.java96 final Attributes attributes = i.next();
97 filterManifestEntryAttributes(attributes);
98 if (attributes.isEmpty()) {
/external/proguard/src/proguard/classfile/editor/
H A DAttributeSorter.java32 * 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/
H A DAttributeShrinker.java32 * This ClassVisitor removes attributes that are not marked as being used or
49 // Compact the array for class attributes.
51 shrinkArray(programClass.attributes,
54 // Compact the attributes in fields, methods, and class attributes,
71 // Compact the attributes array.
73 shrinkArray(programMember.attributes,
76 // Compact any attributes of the remaining attributes.
88 // Compact the attributes arra
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestAttributeSet.java12 Map<String, String> attributes = new HashMap<String, String>(); field in class:TestAttributeSet
19 * Names of attributes to be validated for i18n-safe values.
32 public TestAttributeSet(Map<String, String> attributes, ResourceExtractor resourceExtractor, argument
34 this.attributes = attributes;
41 public TestAttributeSet(Map<String, String> attributes) { argument
42 this.attributes = attributes;
49 attributes.put(name, value);
186 if (attributes
[all...]
/external/v8/src/
H A Dapi-natives.h45 PropertyAttributes attributes);
49 PropertyAttributes attributes);
55 PropertyAttributes attributes);
/external/proguard/src/proguard/optimize/peephole/
H A DRetargetedInnerClassAttributeRemover.java34 * This ClassVisitor removes InnerClasses and EnclosingMethod attributes in
55 Attribute[] attributes = programClass.attributes;
59 // Copy over all non-retargeted attributes.
62 Attribute attribute = attributes[index];
70 attributes[newAtributesCount++] = attribute;
75 Arrays.fill(attributes, newAtributesCount, attributesCount, null);
77 // Update the number of attributes.
101 // Copy over all non-retargeted attributes.
/external/autotest/site_utils/
H A Dserver_manager_utils.py316 attributes = server.attributes.filter(attribute=attribute)
317 if not attributes:
320 attributes[0].delete()
335 attributes = server_models.ServerAttribute.objects.filter(
337 if attributes and attributes[0].value == value:
341 if attributes:
342 old_value = attributes[0].value
343 attributes[
[all...]
/external/python/cpython2/Lib/plat-mac/
H A Daetools.py6 packevent(event, parameters, attributes) sets params and attrs in an AEAppleEvent record
7 unpackevent(event) returns the parameters and attributes from an AEAppleEvent record
88 attributes = {}
96 attributes[key] = unpack(desc, formodulename)
97 return parameters, attributes
99 def packevent(ae, parameters = {}, attributes = {}):
102 for key, value in attributes.items():
210 def newevent(self, code, subcode, parameters = {}, attributes = {}):
215 packevent(event, parameters, attributes)
224 parameters, attributes
[all...]
/external/autotest/site_utils/rpm_control_system/
H A Dutils.py55 if (not POWERUNIT_HOSTNAME_KEY in afe_host.attributes or
56 not POWERUNIT_OUTLET_KEY in afe_host.attributes):
60 ' in the host\'s attributes.' % (afe_host.hostname,
63 hydra_hostname=(afe_host.attributes[HYDRA_HOSTNAME_KEY]
64 if HYDRA_HOSTNAME_KEY in afe_host.attributes
69 powerunit_hostname=afe_host.attributes[POWERUNIT_HOSTNAME_KEY],
70 outlet=afe_host.attributes[POWERUNIT_OUTLET_KEY],
/external/skia/src/ports/
H A DSkFontMgr_android_parser.cpp59 * Allows setting up for handling the tag content and processing attributes.
62 void (*start)(FamilyData* data, const char* tag, const char** attributes);
76 const TagHandler* (*tag)(FamilyData* data, const char* tag, const char** attributes);
156 /*start*/[](FamilyData* self, const char* tag, const char** attributes) {
162 for (size_t i = 0; ATTS_NON_NULL(attributes, i); i += 2) {
163 const char* name = attributes[i];
164 const char* value = attributes[i+1];
204 /*start*/[](FamilyData* self, const char* tag, const char** attributes) {
211 for (size_t i = 0; ATTS_NON_NULL(attributes, i); i += 2) {
212 const char* name = attributes[
533 start_element_handler(void *data, const char *tag, const char **attributes) argument
[all...]
/external/ImageMagick/MagickCore/
H A Dxml-tree.c43 % retrieving nodes and attributes from an XML string.
83 **attributes,
123 ***attributes;
184 child->attributes=sentinel;
446 static char **DestroyXMLTreeAttributes(char **attributes)
454 if ((attributes == (char **) NULL) || (attributes == sentinel))
456 for (i=0; attributes[i] != (char *) NULL; i+=2)
461 if (attributes[i] != (char *) NULL)
462 attributes[
80 **attributes, member in struct:_XMLTreeInfo
120 ***attributes; member in struct:_XMLTreeRoot
438 DestroyXMLTreeAttributes(char **attributes) argument
497 **attributes; local
848 GetXMLTreeAttributes(const XMLTreeInfo *xml_info, SplayTreeInfo *attributes) argument
1904 ParseOpenTag(XMLTreeRoot *root,char *tag,char **attributes) argument
1946 **attributes, local
2640 XMLTreeTagToXML(XMLTreeInfo *xml_info,char **source,size_t *length, size_t *extent,size_t start,char ***attributes) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java46 private ArrayList attributes; field in class:CodeAttribute
65 attributes = new ArrayList();
85 attributes = new ArrayList();
90 attributes.add(ai.copy(cp, classnames));
111 attributes = new ArrayList();
114 attributes.add(AttributeInfo.read(cp, in));
162 + AttributeInfo.getLength(attributes);
173 out.writeShort(attributes.size()); // attributes_count
174 AttributeInfo.writeAll(attributes, out); // attributes
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DViewLoader.java59 NamedNodeMap attributes = node.getAttributes();
61 if (attributes != null) {
62 int length = attributes.getLength();
64 Node attr = attributes.item(i);
70 parent.attributes.put("android:focus", "true");
92 private View inflateView(Context context, String layoutName, Map<String, String> attributes, View parent) { argument
98 if (attributes != null) {
99 for (Map.Entry<String, String> entry : attributes.entrySet()) {
101 viewNode.attributes.put(entry.getKey(), entry.getValue());
150 private final Map<String, String> attributes; field in class:ViewLoader.ViewNode
156 ViewNode(String name, Map<String, String> attributes, boolean isSystem) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorLRE.java66 * @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),
131 attributes.getValue(i));
142 attributes
68 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DContactsFacade.java121 @Rpc(description = "Returns a List of all possible attributes for contacts.")
123 List<String> attributes = new ArrayList<String>();
128 attributes.add(columns[i]);
132 return attributes;
151 @RpcParameter(name = "attributes") @RpcOptional JSONArray attributes) throws JSONException {
154 if (attributes == null || attributes.length() == 0) {
155 // In case no attributes are specified we set the default ones.
159 // Convert selected attributes lis
150 contactsGetAllContacts( @pcParametername = �) @pcOptional JSONArray attributes) argument
224 contactsGetContactById( @pcParametername = �) Integer id, @RpcParameter(name = �) @RpcOptional JSONArray attributes) argument
330 contactsQueryContent( @pcParameter name = �, description = � ) String uri, @RpcParameter( name = �, description = � ) @RpcOptional JSONArray attributes, @RpcParameter(name = �, description = �) @RpcOptional String selection, @RpcParameter( name = �, description = � ) @RpcOptional JSONArray selectionArgs, @RpcParameter(name = �, description = �) @RpcOptional String order) argument
[all...]
/external/autotest/frontend/server/
H A Dmodels.py22 'Attributes : %(attributes)s\n'
50 attributes = dict([(a.attribute, a.value)
51 for a in self.attributes.all()])
55 'attributes': attributes,
77 'attributes': {'max_processes': 300}
86 attributes = dict([(a.attribute, a.value)
87 for a in self.attributes.all()])
88 details['attributes'] = attributes
[all...]
/external/proguard/src/proguard/classfile/attribute/
H A DCodeAttribute.java42 public Attribute[] attributes; field in class:CodeAttribute
64 Attribute[] attributes)
75 this.attributes = attributes;
86 Attribute attribute = attributes[index];
193 * Applies the given attribute visitor to all attributes.
199 attributes[index].accept(clazz, method, this, attributeVisitor);
56 CodeAttribute(int u2attributeNameIndex, int u2maxStack, int u2maxLocals, int u4codeLength, byte[] code, int u2exceptionTableLength, ExceptionInfo[] exceptionTable, int u2attributesCount, Attribute[] attributes) argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassCache.java31 Attributes attributes = manifest.getEntries().get("robolectric");
32 if (attributes != null) {
33 String cacheVersionStr = (String) attributes.get(VERSION_ATTRIBUTE);
51 Attributes attributes = new Attributes();
52 attributes.put(VERSION_ATTRIBUTE, String.valueOf(expectedCacheVersion));
53 manifest.getEntries().put("robolectric", attributes);

Completed in 813 milliseconds

1234567891011>>