/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/lib/ |
libthread_db.so | |
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/lib/ |
libstdc++.so | |
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/lib/ |
libstdc++.so | |
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/lib/ |
libstdc++.so | |
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/lib/ |
libstdc++.so | |
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/lib/ |
libstdc++.so | |
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/lib/ |
crtbegin_dynamic.o | |
crtbegin_static.o | |
libthread_db.so | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_methodattrs.py | 1 """Fix bound method attributes (method.im_? -> method.__?__).
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_methodattrs.py | 1 """Fix bound method attributes (method.im_? -> method.__?__).
|
/external/svox/pico/tts/ |
svox_ssml_parser.cpp | 103 void SvoxSsmlParser::starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes) 105 ((SvoxSsmlParser*)data)->startElement(element, attributes); 108 void SvoxSsmlParser::startElement(const XML_Char* element, const XML_Char** attributes) 127 for (int i = 0; attributes[i]; i += 2) 129 if (strcmp(attributes[i], "xml:lang") == 0) 133 m_docLanguage = new char[strlen(attributes[i+1])+1]; 135 strcpy(m_docLanguage, attributes[i+1]); 140 else if (strcmp(element, "p") == 0) /* currently no attributes are supported for <p> */ 152 else if (strcmp(element, "s") == 0) /* currently no attributes are supported for <s> */ 173 for (int i = 0; attributes[i]; i += 2 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/ |
LayoutDescriptors.java | 160 // Find View and inherit all its layout attributes 191 // Inherit layout attributes from FrameLayout 236 ArrayList<AttributeDescriptor> attributes = new ArrayList<AttributeDescriptor>(120); local 243 DescriptorsUtils.appendAttribute(attributes, 251 // Process all View attributes 252 DescriptorsUtils.appendAttributes(attributes, 270 DescriptorsUtils.appendAttributes(attributes, 279 // Process all LayoutParams attributes 304 attributes.toArray(new AttributeDescriptor[attributes.size()]) 323 ArrayList<AttributeDescriptor> attributes = new ArrayList<AttributeDescriptor>(); local [all...] |
/external/chromium_org/media/video/capture/win/ |
video_capture_device_mf_win.cc | 43 bool PrepareVideoCaptureAttributes(IMFAttributes** attributes, int count) { 46 if (FAILED(MFCreateAttributes(attributes, count))) 49 return SUCCEEDED((*attributes)->SetGUID(MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE, 55 ScopedComPtr<IMFAttributes> attributes; local 56 if (!PrepareVideoCaptureAttributes(attributes.Receive(), 1)) 59 return SUCCEEDED(MFEnumDeviceSources(attributes, devices, count)); 63 ScopedComPtr<IMFAttributes> attributes; local 64 if (!PrepareVideoCaptureAttributes(attributes.Receive(), 2)) 67 attributes->SetString(MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_SYMBOLIC_LINK, 70 return SUCCEEDED(MFCreateDeviceSource(attributes, source)) [all...] |
/external/e2fsprogs/misc/ |
chattr.1.in | 4 chattr \- change file attributes on a Linux file system 20 changes the file attributes on a Linux file system. 24 The operator `+' causes the selected attributes to be added to the 25 existing attributes of the files; `-' causes them to be removed; and 26 `=' causes them to be the only attributes that the files have. 28 The letters `acdeijstuADST' select the new attributes for the files: 34 The following attributes are read-only, and may be listed by 42 Recursively change attributes of directories and their contents. 52 .SH ATTRIBUTES 160 The `c', 's', and `u' attributes are not honored [all...] |
/external/harfbuzz/src/ |
harfbuzz-tibetan.c | 138 item->attributes[i].mark = FALSE; 139 item->attributes[i].clusterStart = FALSE; 140 item->attributes[i].justification = 0; 141 item->attributes[i].zeroWidth = FALSE; 157 item->attributes[0].clusterStart = TRUE; 233 syllable.attributes = item->attributes + first_glyph; 251 void HB_TibetanAttributes(HB_Script script, const HB_UChar16 *text, hb_uint32 from, hb_uint32 len, HB_CharAttributes *attributes) 257 attributes += from; 262 attributes[i].charStop = TRUE [all...] |
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldManifestTest.java | 26 import java.util.jar.Attributes; 38 assertTrue("Should have no main attributes", emptyClone 44 private void assertAttribute(Attributes attr, String name, String value) { 49 Attributes main = manifest.getMainAttributes(); 79 assertTrue("Should have no main attributes", emptyClone 145 // If you write a manifest with no MANIFEST_VERSION, your attributes don't get written out. 148 assertEquals("image/pr0n", doRoundTrip(Attributes.Name.MANIFEST_VERSION)); 155 m1.getMainAttributes().put(Attributes.Name.CONTENT_TYPE, "image/pr0n"); 165 return (String) m2.getMainAttributes().get(Attributes.Name.CONTENT_TYPE); 171 m1.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0") [all...] |
/external/clang/lib/Sema/ |
SemaObjCProperty.cpp | 33 /// getImpliedARCOwnership - Given a set of property attributes and a 37 /// Returns OCL_None if the attributes as stated do not imply an ownership. 151 unsigned Attributes = ODS.getPropertyAttributes(); 154 Attributes |= deduceWeakPropertyFromType(*this, T); 156 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) || 158 !(Attributes & ObjCDeclSpec::DQ_PR_readonly)); 161 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) || 163 !(Attributes & ObjCDeclSpec::DQ_PR_retain) && 164 !(Attributes & ObjCDeclSpec::DQ_PR_strong) && 165 !(Attributes & ObjCDeclSpec::DQ_PR_copy) & [all...] |
/external/javassist/src/main/javassist/bytecode/ |
CodeAttribute.java | 46 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...] |
/cts/tests/tests/dpi2/ |
AndroidManifest.xml | 26 <!-- target cupcake so we can test the default attributes get set 27 properly for the screen size attributes. -->
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttLocalVariableTable.java | 22 * Attribute class for standard {@code LocalVariableTable} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */
|
AttLocalVariableTypeTable.java | 22 * Attribute class for standard {@code LocalVariableTypeTable} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */
|
AttRuntimeInvisibleAnnotations.java | 23 * attributes. 26 /** {@code non-null;} attribute name for attributes of this type */
|
AttRuntimeInvisibleParameterAnnotations.java | 23 * {@code RuntimeInvisibleParameterAnnotations} attributes. 27 /** {@code non-null;} attribute name for attributes of this type */
|
AttRuntimeVisibleAnnotations.java | 23 * attributes. 26 /** {@code non-null;} attribute name for attributes of this type */
|