/external/skia/src/ports/ |
SkFontHost_android.cpp | 108 // should never get here, since the faces list should not be empty 109 SkASSERT(!"faces list is empty"); 178 SkASSERT(!"Yikes, couldn't find family in our list to remove/delete"); 182 NameFamilyPair* list = gNameList.begin(); local 185 int index = SkStrLCSearch(&list[0].fName, count, name, sizeof(list[0])); 188 return find_best_face(list[index].fFamily, style); 203 NameFamilyPair* list = gNameList.begin(); local 206 int index = SkStrLCSearch(&list[0].fName, count, name, sizeof(list[0])) 222 SkTDArray<NameFamilyPair>& list = gNameList; local 632 const uint32_t* list = gFallbackFonts; local [all...] |
/external/bluetooth/bluez/audio/ |
gstavdtpsink.c | 447 GValue *list; local 454 list = g_value_init(g_new0(GValue, 1), GST_TYPE_LIST); 457 gst_value_list_prepend_value(list, value); 461 gst_value_list_prepend_value(list, value); 465 gst_value_list_prepend_value(list, value); 469 gst_value_list_prepend_value(list, value); 472 if (list) { 473 gst_structure_set_value(structure, "mode", list); 474 g_free(list); 475 list = NULL 613 GValue *list; local [all...] |
/bionic/libc/kernel/common/linux/ |
mutex.h | 15 #include <linux/list.h> 30 struct list_head list; member in struct:mutex_waiter
|
xattr.h | 35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
|
/cts/tests/res/drawable/ |
layerdrawable.xml | 18 <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 21 </layer-list>
|
levellistdrawable.xml | 18 <level-list xmlns:android="http://schemas.android.com/apk/res/android"> 21 </level-list>
|
/cts/tests/res/xml/ |
anim_list_missing_item_drawable.xml | 20 <animation-list xmlns:android="http://schemas.android.com/apk/res/android" > 22 </animation-list>
|
anim_list_missing_item_duration.xml | 20 <animation-list xmlns:android="http://schemas.android.com/apk/res/android" > 22 </animation-list>
|
anim_list_missing_list_attrs.xml | 20 <animation-list xmlns:android="http://schemas.android.com/apk/res/android" > 23 </animation-list>
|
level_list_missing_item_drawable.xml | 20 <level-list xmlns:android="http://schemas.android.com/apk/res/android" > 23 </level-list>
|
level_list_missing_item_minlevel_maxlevel.xml | 20 <level-list xmlns:android="http://schemas.android.com/apk/res/android" > 22 </level-list>
|
/cts/tools/dex-tools/src/dex/structure/ |
DexAnnotatedElement.java | 28 * Returns a list of {@code DexAnnotation} elements. 30 * @return a list of {@code DexAnnotation} elements
|
DexEncodedAnnotation.java | 19 import java.util.List; 24 List<DexAnnotationAttribute> getValue();
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteBlock.java | 36 /** {@code non-null;} list of successors that this block may branch to */ 39 /** {@code non-null;} list of exceptions caught and their handler targets */ 50 * @param successors {@code non-null;} list of successors that this block may 52 * @param catches {@code non-null;} list of exceptions caught and their 128 * Gets the list of successors that this block may branch to 131 * @return {@code non-null;} the successor list 138 * Gets the list of exceptions caught and their handler targets. 140 * @return {@code non-null;} the catch list
|
/dalvik/dx/src/com/android/dx/rop/code/ |
Exceptions.java | 63 /** {@code non-null;} the list {@code [java.lang.Error]} */ 67 * {@code non-null;} the list {@code[java.lang.Error, 74 * {@code non-null;} the list {@code[java.lang.Error, 81 * {@code non-null;} the list {@code [java.lang.Error, 88 * {@code non-null;} the list {@code [java.lang.Error, 95 * {@code non-null;} the list {@code [java.lang.Error, 105 * {@code non-null;} the list {@code [java.lang.Error, 117 * {@code non-null;} the list {@code [java.lang.Error,
|
/dalvik/libcore/luni/src/main/java/java/lang/ |
VMClassLoader.java | 61 ArrayList<URL> list = null; local 68 if (list == null) 69 list = new ArrayList<URL>(); 72 list.add(new URL(urlStr)); 81 if (list == null) 84 return new EnumerateListArray<URL>(list); 127 EnumerateListArray(ArrayList list) { 128 mList = list;
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
InfoAccessSyntax.java | 24 import java.util.List; 37 * Certificate and Certificate Revocation List (CRL) Profile. 53 private final List accessDescriptions; 55 public InfoAccessSyntax(List accessDescriptions) throws IOException { 59 private InfoAccessSyntax(List accessDescriptions, byte[] encoding) 62 // "AccessDescriptions list is null or empty" 69 public List getAccessDescriptions() { 125 return new InfoAccessSyntax((List)in.content, in.getEncoded());
|
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/ |
X509KeyManager.java | 35 * the list of public key algorithm names. 37 * the list of certificate issuers, or {@code null} if any issuer 53 * the list of public key algorithm type names. 55 * the list of certificate issuers, or {@code null} if any issuer 77 * Returns the client aliases for the specified public key type and list of 83 * the list of certificate issuers, or {@code null} if any issuer 91 * Returns the server aliases for the specified public key type and list of 97 * the list of certificate issuers, or {@code null} if any issuer
|
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/ |
KeyStoreBuilderParametersTest.java | 27 import java.util.List; 67 * @tests javax.net.ssl.KeyStoreBuilderParameters#KeyStoreBuilderParameters(List parameters) 73 args = {java.util.List.class} 78 List<String> ls = null; 87 List<String> lsEmpty = new ArrayList<String>(); 96 List<String> lsFiled = new ArrayList<String>();; 119 List<String> ls = new ArrayList<String>(); 125 List<String> res_list = ksp.getParameters();
|
/development/samples/Wiktionary/res/drawable/ |
lookup_bg.xml | 17 <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 20 </layer-list>
|
/external/apache-http/src/org/apache/http/client/entity/ |
UrlEncodedFormEntity.java | 34 import java.util.List; 41 * An entity composed of a list of url-encoded pairs. 47 * Constructs a new {@link UrlEncodedFormEntity} with the list 50 * @param parameters list of name/value pairs 55 final List <? extends NameValuePair> parameters, 63 * Constructs a new {@link UrlEncodedFormEntity} with the list 66 * @param parameters list of name/value pairs 70 final List <? extends NameValuePair> parameters) throws UnsupportedEncodingException {
|
/external/clearsilver/man/man3/ |
dictCreate.3 | 27 threaded - true if list should be thread-safe. 44 Returns a dictionary. If <threaded> is true, list is
|
hdf_set_value.3 | 35 modified. New nodes are created at the end of the list. 36 If a list of nodes exceeds FORCE_HASH_AT, then a HASH
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/set/ |
der_encode_setof.c | 55 @param list The list of items to encode 56 @param inlen The number of items in the list 61 int der_encode_setof(ltc_asn1_list *list, unsigned long inlen, 71 if (list[x].type != list[x-1].type) { 82 /* encode list */ 83 if ((err = der_encode_sequence_ex(list, inlen, buf, outlen, LTC_ASN1_SETOF)) != CRYPT_OK) {
|
/external/emma/core/res/com/vladium/emma/data/ |
merge_usage.res | 4 '<list of files>', 5 "list of meta/coverage data files";
|