/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_CommonDataKinds_RelationTest.java | 20 import android.provider.ContactsContract.CommonDataKinds.Relation; 34 assertGetTypeLabel(Relation.TYPE_ASSISTANT); 35 assertGetTypeLabel(Relation.TYPE_BROTHER); 36 assertGetTypeLabel(Relation.TYPE_CHILD); 37 assertGetTypeLabel(Relation.TYPE_DOMESTIC_PARTNER); 38 assertGetTypeLabel(Relation.TYPE_FATHER); 39 assertGetTypeLabel(Relation.TYPE_FRIEND); 40 assertGetTypeLabel(Relation.TYPE_MANAGER); 41 assertGetTypeLabel(Relation.TYPE_MOTHER); 42 assertGetTypeLabel(Relation.TYPE_PARENT) [all...] |
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
Relation.java | 24 * An immutable value type representing a statement relation with "kind" and "detail". 27 * field specifies which permission to delegate. A statement involving this relation does not 35 public final class Relation { 43 private Relation(String kind, String detail) { 49 * Returns the relation's kind. 57 * Returns the relation's detail. 65 * Creates a new Relation object for the specified {@code kind} and {@code detail}. 69 public static Relation create(@NonNull String kind, @NonNull String detail) 72 throw new AssociationServiceException("Relation not well formatted."); 74 return new Relation(kind, detail) 102 StringBuilder relation = new StringBuilder(); local 119 Relation relation = (Relation) o; local [all...] |
Statement.java | 22 * An immutable value type representing a statement, consisting of a source, target, and relation. 23 * This reflects an assertion that the relation holds for the source, target pair. For example, if a 28 * "relation": ["delegate_permission/common.handle_all_urls"], 38 * <pre>Relation.create("delegate_permission", "common.get_login_creds");</pre> 50 private final Relation mRelation; 53 private Statement(AbstractAsset source, AbstractAsset target, Relation relation) { 56 mRelation = relation; 76 * Returns the relation of the statement. 79 public Relation getRelation() [all...] |
/external/bison/src/ |
relation.h | 26 If GRAPH is a relation, then GRAPH[Node] is a list of adjacent 33 typedef relation_nodes *relation; typedef 36 /* Report a relation R that has SIZE vertices. */ 37 void relation_print (relation r, relation_node size, FILE *out); 39 /* Compute the transitive closure of the FUNCTION on the relation R 44 void relation_digraph (relation r, relation_node size, bitsetv *function); 47 void relation_transpose (relation *R_arg, relation_node n);
|
relation.c | 27 #include "relation.h" 30 relation_print (relation r, relation_node size, FILE *out) 54 static relation R; 97 relation_digraph (relation r, relation_node size, bitsetv *function) 125 relation_transpose (relation *R_arg, relation_node n) 127 relation r = *R_arg; 129 relation new_R = xnmalloc (n, sizeof *new_R); 131 relation end_R = xnmalloc (n, sizeof *end_R);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/ |
RelationDataItem.java | 22 import android.provider.ContactsContract.CommonDataKinds.Relation; 26 * Represents a relation data item, wrapping the columns in 27 * {@link ContactsContract.CommonDataKinds.Relation}. 36 return getContentValues().getAsString(Relation.NAME); 40 return getContentValues().getAsString(Relation.LABEL); 56 } else if (getKindTypeColumn(mKind) == Relation.TYPE_CUSTOM &&
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
GoogleAccountType.java | 24 import android.provider.ContactsContract.CommonDataKinds.Relation; 125 DataKind kind = addKind(new DataKind(Relation.CONTENT_ITEM_TYPE, 128 kind.actionBody = new SimpleInflater(Relation.NAME); 130 kind.typeColumn = Relation.TYPE; 132 kind.typeList.add(buildRelationType(Relation.TYPE_ASSISTANT)); 133 kind.typeList.add(buildRelationType(Relation.TYPE_BROTHER)); 134 kind.typeList.add(buildRelationType(Relation.TYPE_CHILD)); 135 kind.typeList.add(buildRelationType(Relation.TYPE_DOMESTIC_PARTNER)); 136 kind.typeList.add(buildRelationType(Relation.TYPE_FATHER)); 137 kind.typeList.add(buildRelationType(Relation.TYPE_FRIEND)) [all...] |
SamsungAccountType.java | 30 import android.provider.ContactsContract.CommonDataKinds.Relation; 171 DataKind kind = addKind(new DataKind(Relation.CONTENT_ITEM_TYPE, 174 kind.actionBody = new SimpleInflater(Relation.NAME); 176 kind.typeColumn = Relation.TYPE; 178 kind.typeList.add(buildRelationType(Relation.TYPE_ASSISTANT)); 179 kind.typeList.add(buildRelationType(Relation.TYPE_BROTHER)); 180 kind.typeList.add(buildRelationType(Relation.TYPE_CHILD)); 181 kind.typeList.add(buildRelationType(Relation.TYPE_DOMESTIC_PARTNER)); 182 kind.typeList.add(buildRelationType(Relation.TYPE_FATHER)); 183 kind.typeList.add(buildRelationType(Relation.TYPE_FRIEND)) [all...] |
/external/iproute2/tc/ |
emp_ematch.y | 30 %type <i> invert relation 50 | match relation expr 52 $1->relation = $2; 82 relation: label
|
/external/webrtc/tools/valgrind-webrtc/gtest_exclude/ |
libjingle_unittest.gtest-memcheck_mac.txt | 2 # No bug is filed in relation to this since it's unlikely we can fix it.
|
/external/e2fsprogs/misc/ |
mke2fs.conf.5.in | 20 defines a relation, which assigns tags to values, or to a subsection, 93 This relation specifies the filesystems features which are enabled in 96 relation found in the filesystem or usage type subsection of 102 This relation specifies a set of features that should be added or 105 relation. It may be overridden by the filesystem-specific 116 This boolean relation specifies whether periodic filesystem checks should be 127 This boolean relation, if set to a value of true, forces 134 This relation specifies the default filesystem type if the user does not 151 This relation specifies the default blocksize if the user does not 156 This relation specifies the default hash algorithm used for th [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Relation.java | 26 * A Relation is a set of mappings from keys to values. 33 public class Relation<K, V> implements Freezable<Relation<K,V>> { // TODO: add , Map<K, Collection<V>>, but requires API changes 39 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { 40 return new Relation<K, V>(map, setCreator); 43 public static <K,V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { 44 return new Relation<K, V>(map, setCreator, setComparator); 47 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { 52 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { 108 return data.equals(((Relation<?, ?>) o).data) [all...] |
SortedSetRelation.java | 74 throw new IllegalArgumentException("Relation " + allow + " out of range"); 138 * @param relation the relation filter, using ANY, CONTAINS, etc. 142 public static <T extends Object & Comparable<? super T>> SortedSet<? extends T> doOperation(SortedSet<T> a, int relation, SortedSet<T> b) { 145 switch (relation) { 179 throw new IllegalArgumentException("Relation " + relation + " out of range");
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Relation.java | 25 * A Relation is a set of mappings from keys to values. 31 public class Relation<K, V> implements Freezable<Relation<K,V>> { // TODO: add , Map<K, Collection<V>>, but requires API changes 37 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { 38 return new Relation<K, V>(map, setCreator); 41 public static <K,V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { 42 return new Relation<K, V>(map, setCreator, setComparator); 45 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { 50 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { 106 return data.equals(((Relation<?, ?>) o).data) [all...] |
SortedSetRelation.java | 72 throw new IllegalArgumentException("Relation " + allow + " out of range"); 136 * @param relation the relation filter, using ANY, CONTAINS, etc. 140 public static <T extends Object & Comparable<? super T>> SortedSet<? extends T> doOperation(SortedSet<T> a, int relation, SortedSet<T> b) { 143 switch (relation) { 177 throw new IllegalArgumentException("Relation " + relation + " out of range");
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/ |
DirectStatementService.java | 35 import com.android.statementservice.retriever.Relation; 54 * EXTRA_TARGET_ASSET_DESCRIPTOR} for {@code EXTRA_RELATION} relation. 65 * <p>A relation string. 68 "com.android.statementservice.service.RELATION"; 190 String relation = extras.getString(EXTRA_RELATION); local 207 if (relation == null) { 214 new IsAssociatedCallable(sources, target, relation, resultReceiver), TAG)); 228 public IsAssociatedCallable(List<String> sources, String target, String relation, 232 mRelation = relation; 237 Relation relation) throws AssociationServiceException 253 Relation relation; local [all...] |
/external/e2fsprogs/e2fsck/ |
e2fsck.conf.5.in | 20 defines a relation, which assigns tags to values, or to a subsection, 85 If this relation is set to a boolean value of true, then if the user 127 This boolean relation is an alias for 135 we changed the default, we also renamed this boolean relation to 139 This boolean relation controls whether or not 146 This boolean relation controls whether or not the interval between 158 higher, more efficient level. This relation defaults to 20 164 relation contains a relative pathname, then the log file will be placed 167 relation. 170 This relation contains an alternate directory that will be used if th [all...] |
prof_err.et | 10 error_code PROF_NO_RELATION, "Profile relation not found" 12 "Attempt to add a relation to node which is not a section" 30 error_code PROF_RELATION_SYNTAX, "Syntax error in profile relation"
|
prof_err.c | 14 N_("Profile relation not found"), 15 N_( "Attempt to add a relation to node which is not a section"), 26 N_("Syntax error in profile relation"),
|
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
When.java | 16 /** nothing definitive is known about the relation between S and T */
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/ |
DataItemTests.java | 26 import android.provider.ContactsContract.CommonDataKinds.Relation; 328 final String customRelation1 = "custom relation 1"; 329 final String customRelation2 = "custom relation 2"; 331 mValues1.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE); 332 mValues2.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE); 333 mValues3.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE); 334 mValues4.put(Data.MIMETYPE, Relation.CONTENT_ITEM_TYPE); 336 mValues1.put(Relation.NAME, name1); 337 mValues2.put(Relation.NAME, name1); 338 mValues3.put(Relation.NAME, name1) [all...] |
/external/llvm/docs/ |
HowToUseInstrMappings.rst | 27 describe all the instructions using that model. TableGen parses all the relation 28 models and uses the information to construct relation tables which relate 37 // relation model. 41 // a row of the relation table. Think of this as a set of properties shared 46 // in a column of the relation table. 51 // using this relation model. 55 // each column in the relation table. These are the instructions a key 81 // row in the resulting relation table. 90 // for a relation. Key instruction is passed as an argument 91 // to the function used for querying relation tables. Column instruction [all...] |
/frameworks/base/docs/html/sdk/api_diff/21/changes/ |
android.provider.ContactsContract.CommonDataKinds.Relation.html | 10 android.provider.ContactsContract.CommonDataKinds.Relation 74 Class android.provider.<A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html" target="_top"><font size="+2"><code>ContactsContract.CommonDataKinds.Relation</code></font></A> 87 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX"></A> 88 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX</code></A></nobr> 94 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_COUNTS"></A> 95 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_COUNTS" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_COUNTS</code></A></nobr> 101 <A NAME="android.provider.ContactsContract.CommonDataKinds.Relation.EXTRA_ADDRESS_BOOK_INDEX_TITLES"></A> 102 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html#EXTRA_ADDRESS_BOOK_INDEX_TITLES" target="_top"><code>EXTRA_ADDRESS_BOOK_INDEX_TITLES</code></A></nobr>
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
dv-mutex-err.s | 2 // Test mutex relation handling
|
dv-mutex.s | 2 // Test mutex relation handling
|