/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 | |
/prebuilts/ndk/9/platforms/android-14/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/lib/ |
crtend_so.o | |
/prebuilts/ndk/9/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/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourceRadialGradient.cpp | 47 FloatPoint RenderSVGResourceRadialGradient::centerPoint(const RadialGradientAttributes& attributes) const 49 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.cx(), attributes.cy()); 52 FloatPoint RenderSVGResourceRadialGradient::focalPoint(const RadialGradientAttributes& attributes) const 54 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.fx(), attributes.fy()); 57 float RenderSVGResourceRadialGradient::radius(const RadialGradientAttributes& attributes) const 59 return SVGLengthContext::resolveLength(element(), attributes.gradientUnits(), attributes.r()) [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...] |
/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/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 * Note: Early on a lot of CAs would only accept messages with attributes missing. As the ASN.1 def shows 60 * the attributes field is not optional so should always at least contain an empty set. If a fully compliant 67 * @param attributes any attributes to be associated with the request. 72 ASN1Set attributes) 76 this.attributes = attributes [all...] |
/external/chromium_org/sandbox/win/src/ |
window.cc | 16 // Gets the security attributes of a window object referenced by |handle|. The 19 bool GetSecurityAttributes(HANDLE handle, SECURITY_ATTRIBUTES* attributes) { 20 attributes->bInheritHandle = FALSE; 21 attributes->nLength = sizeof(SECURITY_ATTRIBUTES); 26 NULL, &attributes->lpSecurityDescriptor); 38 // Get the security attributes from the current window station; we will 39 // use this as the base security attributes for the new window station. 40 SECURITY_ATTRIBUTES attributes = {0}; local 41 if (!GetSecurityAttributes(::GetProcessWindowStation(), &attributes)) { 48 *winsta = ::CreateWindowStationW(NULL, 0, WINSTA_ALL_ACCESS, &attributes); 69 SECURITY_ATTRIBUTES attributes = {0}; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGRadialGradientElement.cpp | 131 bool SVGRadialGradientElement::collectGradientAttributes(RadialGradientAttributes& attributes) 142 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr)) 143 attributes.setSpreadMethod(current->spreadMethodCurrentValue()); 145 if (!attributes.hasGradientUnits() && current->hasAttribute(SVGNames::gradientUnitsAttr)) 146 attributes.setGradientUnits(current->gradientUnitsCurrentValue()); 148 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) { 151 attributes.setGradientTransform(transform); 154 if (!attributes.hasStops()) { 157 attributes.setStops(stops); 163 if (!attributes.hasCx() && current->hasAttribute(SVGNames::cxAttr) [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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_al.py | 12 # attributes. More comprehensive examples can be found in Demo/al 15 # touch all the attributes of al without doing anything 17 print 'Touching al module attributes...'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_al.py | 12 # attributes. More comprehensive examples can be found in Demo/al 15 # touch all the attributes of al without doing anything 17 print 'Touching al module attributes...'
|
/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...] |
/external/llvm/test/Bitcode/ |
attributes-3.3.ll | 3 ; attributes-3.3.ll.bc was generated by passing this file to llvm-as-3.3. 4 ; The test checks that LLVM does not silently misread attributes of 213 ; CHECK: attributes #0 = { noreturn } 214 ; CHECK: attributes #1 = { nounwind } 215 ; CHECK: attributes #2 = { readnone } 216 ; CHECK: attributes #3 = { readonly } 217 ; CHECK: attributes #4 = { noinline } 218 ; CHECK: attributes #5 = { alwaysinline } 219 ; CHECK: attributes #6 = { optsize } 220 ; CHECK: attributes #7 = { ssp [all...] |
/development/ndk/platforms/android-3/arch-arm/lib-bootstrap/ |
crtend_android.o | |
/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 }
|