/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/ |
crtend_so.o | |
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macgl.c | 37 GLint attributes [ 26 ]; /* 26 is max possible in this setup */ local 48 attributes[i++] = AGL_RGBA; 52 attributes[i++] = AGL_RED_SIZE; 53 attributes[i++] = this->gl_config.red_size; 54 attributes[i++] = AGL_GREEN_SIZE; 55 attributes[i++] = this->gl_config.green_size; 56 attributes[i++] = AGL_BLUE_SIZE; 57 attributes[i++] = this->gl_config.blue_size; 58 attributes[i++] = AGL_ALPHA_SIZE; 59 attributes[i++] = this->gl_config.alpha_size [all...] |
/external/llvm/test/Bitcode/ |
attributes.ll | 182 ; CHECK: attributes #0 = { noreturn } 183 ; CHECK: attributes #1 = { nounwind } 184 ; CHECK: attributes #2 = { readnone } 185 ; CHECK: attributes #3 = { readonly } 186 ; CHECK: attributes #4 = { noinline } 187 ; CHECK: attributes #5 = { alwaysinline } 188 ; CHECK: attributes #6 = { optsize } 189 ; CHECK: attributes #7 = { ssp } 190 ; CHECK: attributes #8 = { sspreq } 191 ; CHECK: attributes #9 = { noredzone [all...] |
/external/clang/test/CodeGenCXX/ |
2009-05-04-PureConstNounwind.cpp | 17 // CHECK: attributes [[TF]] = { {{.*}} } 18 // CHECK: attributes [[NUW_RN]] = { nounwind readnone{{.*}} } 19 // CHECK: attributes [[NUW_RO]] = { nounwind readonly{{.*}} } 20 // CHECK: attributes [[NUW_RN_CALL]] = { nounwind readnone } 21 // CHECK: attributes [[NUW_RO_CALL]] = { nounwind readonly }
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
AttributeTable.java | 16 private Hashtable attributes = new Hashtable(); field in class:AttributeTable 21 attributes = copyTable(attrs); 53 Attributes attrs) 62 Object value = attributes.get(oid); 66 attributes.put(oid, a); 86 attributes.put(oid, v); 107 Object value = attributes.get(oid); 126 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be 127 * empty if there are no attributes of the required type present. 130 * @return a vector of all the attributes found of type oid [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGRadialGradientElement.cpp | 150 void SVGRadialGradientElement::collectGradientAttributes(RadialGradientAttributes& attributes) 158 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr)) 159 attributes.setSpreadMethod((GradientSpreadMethod) current->spreadMethod()); 161 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr)) 162 attributes.setBoundingBoxMode(current->gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX); 164 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) { 167 attributes.setGradientTransform(transform); 170 if (!attributes.hasStops()) { 173 attributes.setStops(stops); 179 if (!attributes.hasCx() && current->hasAttribute(SVGNames::cxAttr) [all...] |
SVGLinearGradientElement.cpp | 139 void SVGLinearGradientElement::collectGradientAttributes(LinearGradientAttributes& attributes) 147 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr)) 148 attributes.setSpreadMethod((GradientSpreadMethod) current->spreadMethod()); 150 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr)) 151 attributes.setBoundingBoxMode(current->gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX); 153 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) { 156 attributes.setGradientTransform(transform); 159 if (!attributes.hasStops()) { 162 attributes.setStops(stops); 168 if (!attributes.hasX1() && current->hasAttribute(SVGNames::x1Attr) [all...] |
/dalvik/dx/tests/014-field-attrib-ConstantValue/ |
expected.txt | 50 attributes[0]: 54 end attributes[0] 63 attributes[0]: 67 end attributes[0] 76 attributes[0]: 80 end attributes[0] 89 attributes[0]: 93 end attributes[0] 102 attributes[0]: 106 end attributes[0 [all...] |
/external/robolectric/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...] |
/external/clang/test/SemaObjC/ |
property-10.m | 6 @property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}} 13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}} 14 @property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}} 15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' are mutually exclusive}} 16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mutually exclusive}} 17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mutually exclusive}} 18 @property(assign, copy, retain) id p3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}} 19 @property(assign, copy, strong) id s3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'assign' and 'strong' are mutually exclusive}} [all...] |
/development/ndk/platforms/android-3/arch-arm/lib-bootstrap/ |
crtend_android.o | |
/external/clang/test/CodeGen/ |
ms-declspecs.c | 25 // CHECK: attributes [[NAKED]] = { naked noinline nounwind{{.*}} } 26 // CHECK: attributes [[NUW]] = { nounwind{{.*}} } 27 // CHECK: attributes [[NI]] = { noinline nounwind{{.*}} } 28 // CHECK: attributes [[NR]] = { noreturn }
|
/external/llvm/test/Assembler/ |
2008-09-02-FunctionNotes2.ll | 2 ; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "Attributes 'noinline and alwaysinline' are incompatible"
|
/external/llvm/test/Feature/ |
minsize_attr.ll | 8 ; CHECK: attributes #0 = { minsize }
|
/external/smack/src/org/jivesoftware/smack/filter/ |
package.html | 1 <body>Allows {@link org.jivesoftware.smack.PacketCollector} and {@link org.jivesoftware.smack.PacketListener} instances to filter for packets with particular attributes.</body
|
/frameworks/base/sax/java/android/sax/ |
StartElementListener.java | 19 import org.xml.sax.Attributes; 29 * @param attributes from the element 31 void start(Attributes attributes);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/ |
crtend.o | |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/thumb/ |
crtend.o | |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/thumb/thumb2/ |
crtend.o | |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/ |
crtend.o | |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/thumb/ |
crtend.o | |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/thumb/thumb2/ |
crtend.o | |