/prebuilts/ndk/7/platforms/android-9/arch-arm/usr/lib/ |
crtbegin_dynamic.o | |
crtbegin_so.o | |
crtbegin_static.o | |
/prebuilts/ndk/8/platforms/android-14/arch-arm/usr/lib/ |
crtend_android.o | |
/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/ |
crtend_android.o | |
/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/ |
crtend_android.o | |
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/ |
crtend_android.o | |
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/ |
crtend_android.o | |
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/ |
crtend_android.o | |
/external/proguard/src/proguard/classfile/editor/ |
AttributeSorter.java | 32 * 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/ |
AttributeShrinker.java | 30 * This ClassVisitor removes attributes that are not marked as being used or 47 // Compact the array for class attributes. 49 shrinkArray(programClass.attributes, 52 // Compact the attributes in fields, methods, and class attributes, 69 // Compact the attributes array. 71 shrinkArray(programMember.attributes, 74 // Compact any attributes of the remaining attributes. 86 // Compact the attributes array [all...] |
/external/webkit/Source/WebCore/html/canvas/ |
WebGLContextAttributes.h | 40 // Create a new attributes object 43 // Create a new attributes object initialized with preexisting attributes 44 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes); 73 // Fetches a copy of the attributes stored in this object in a 75 GraphicsContext3D::Attributes attributes() const; 79 WebGLContextAttributes(GraphicsContext3D::Attributes attributes); [all...] |
/external/clang/test/CodeGen/ |
mips16-attr.c | 14 // CHECK: attributes [[MIPS16]] = { nounwind {{.*}} "mips16" {{.*}} } 16 // CHECK: attributes [[NOMIPS16]] = { nounwind {{.*}} "nomips16" {{.*}} }
|
/external/clang/test/Sema/ |
attr-coldhot.c | 9 int qux() __attribute__((__hot__)) __attribute__((__cold__)); // expected-error{{'__hot__' and cold attributes are not compatible}} 10 int baz() __attribute__((__cold__)) __attribute__((__hot__)); // expected-error{{'__cold__' and hot attributes are not compatible}}
|
/external/clang/test/SemaObjC/ |
conflict-atomic-property.m | 5 @property (nonatomic, assign, atomic) float dummy; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}} 9 @property (atomic, nonatomic, assign) float d4; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
|
/external/doclava/src/com/google/doclava/apicheck/ |
XmlApiFile.java | 30 import org.xml.sax.Attributes; 70 public void startElement(String uri, String localName, String qName, Attributes attributes) { 73 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes 82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source")); 83 String visibility = attributes.getValue("visibility"); 88 boolean isStatic = Boolean.valueOf(attributes.getValue("static")); 90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract")); 96 boolean isFinal = Boolean.valueOf(attributes.getValue("final")) [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmEventTest.java | 30 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local 31 attributes.put("Hello World", attributes); 32 attributes.put("Hello", "World"); 33 attributes.put("World", ""); 38 checkGetAttributeWithEventType(attributes, null, true); 39 checkGetAttributeWithEventType(attributes, "", true); 40 checkGetAttributeWithEventType(attributes, "Hello", true); 41 checkGetAttributeWithEventType(attributes, "World", true); 42 checkGetAttributeWithEventType(attributes, "Hello World", true) [all...] |
/libcore/luni/src/main/java/java/util/jar/ |
Manifest.java | 46 private static final Attributes.Name NAME_ATTRIBUTE = new Attributes.Name("Name"); 61 private Attributes mainAttributes = new Attributes(); 63 private HashMap<String, Attributes> entries = new HashMap<String, Attributes>(); 78 * The end of the main attributes section in the manifest is needed in 90 * Creates a new {@code Manifest} instance using the attributes obtained 94 * {@code InputStream} to parse for attributes. 104 * same attributes as those found in the parameter {@code Manifest} 329 Attributes attributes = manifest.entries.get(key); local [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
TestPackageXmlParser.java | 22 import org.xml.sax.Attributes; 66 public void startElement(String uri, String localName, String name, Attributes attributes) { 69 final String entryUriValue = attributes.getValue("appPackageName"); 70 final String testPackageNameSpace = attributes.getValue("appNameSpace"); 71 final String packageName = attributes.getValue("name"); 72 final String runnerName = attributes.getValue("runner"); 73 final String jarPath = attributes.getValue("jarPath"); 74 final String signatureCheck = attributes.getValue("signatureCheck"); 75 final String javaPackageFilter = attributes.getValue("javaPackageFilter") [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
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...] |
/dalvik/dexgen/src/com/android/dexgen/rop/ |
StdMember.java | 37 /** {@code non-null;} list of associated attributes */ 38 private final AttributeList attributes; field in class:StdMember 46 * @param attributes {@code non-null;} list of associated attributes 49 AttributeList attributes) { 58 if (attributes == null) { 59 throw new NullPointerException("attributes == null"); 65 this.attributes = attributes; 108 return attributes; [all...] |
/dalvik/dx/src/com/android/dx/cf/iface/ |
StdMember.java | 37 /** {@code non-null;} list of associated attributes */ 38 private final AttributeList attributes; field in class:StdMember 46 * @param attributes {@code non-null;} list of associated attributes 49 AttributeList attributes) { 58 if (attributes == null) { 59 throw new NullPointerException("attributes == null"); 65 this.attributes = attributes; 108 return 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
CertificationRequestInfo.java | 22 * attributes [0] Attributes{{ CRIAttributes }} 25 * Attributes { ATTRIBUTE:IOSet } ::= SET OF Attribute{{ IOSet }} 39 ASN1Set attributes = null; field in class:CertificationRequestInfo 59 ASN1Set attributes) 63 this.attributes = attributes; 77 ASN1Set attributes) 81 this.attributes = attributes; [all...] |
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGatt/src/main/java/com/example/bluetooth/le/ |
SampleGattAttributes.java | 22 * This class includes a small subset of standard GATT attributes for demonstration purposes. 25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes 31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service"); 32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service"); 34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement"); 35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); 39 String name = attributes.get(uuid);
|