HomeSort by relevance Sort by last modified time
    Searched refs:Queries (Results 1 - 9 of 9) sorted by null

  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientAlternatesAdapter.java 32 import com.android.ex.chips.Queries.Query;
74 Queries.Query query;
76 query = Queries.EMAIL;
78 query = Queries.PHONE;
101 query.getProjection()[Queries.Query.DESTINATION] + " IN (" + bindString.toString()
108 String address = c.getString(Queries.Query.DESTINATION);
110 c.getString(Queries.Query.NAME),
111 c.getInt(Queries.Query.DISPLAY_NAME_SOURCE),
112 c.getString(Queries.Query.DESTINATION),
113 c.getInt(Queries.Query.DESTINATION_TYPE)
    [all...]
Queries.java 26 * Phone and Email queries for supporting Chips UI.
28 /* package */ class Queries {
BaseRecipientAdapter.java 97 private final Queries.Query mQuery;
154 this.displayName = cursor.getString(Queries.Query.NAME);
155 this.destination = cursor.getString(Queries.Query.DESTINATION);
156 this.destinationType = cursor.getInt(Queries.Query.DESTINATION_TYPE);
157 this.destinationLabel = cursor.getString(Queries.Query.DESTINATION_LABEL);
158 this.contactId = cursor.getLong(Queries.Query.CONTACT_ID);
159 this.dataId = cursor.getLong(Queries.Query.DATA_ID);
160 this.thumbnailUriString = cursor.getString(Queries.Query.PHOTO_THUMBNAIL_URI);
161 this.displayNameSource = cursor.getInt(Queries.Query.DISPLAY_NAME_SOURCE);
450 * Used to ignore asynchronous queries with a different constraint, which may happen whe
    [all...]
  /dalvik/hit/src/com/android/hit/
Main.java 57 Map<String, Set<ClassObj>> someClasses = Queries.classes(state, x);
71 Map<String, Set<ClassObj>> allClasses = Queries.allClasses(state);
85 Instance[] instances = Queries.instancesOf(state, "java.lang.String");
91 Instance[] instances = Queries.allInstancesOf(state,
Queries.java 28 public class Queries {
30 * NOTES: Here's a list of the queries that can be done in hat and
  /external/llvm/lib/CodeGen/
RegAllocBase.h 87 // Current queries, one per physreg. They must be reinitialized each time we
89 OwningArrayPtr<LiveIntervalUnion::Query> Queries;
107 // before querying a new live virtual register. This ties Queries and
110 Queries[PhysReg].init(UserTag, &VirtReg, &PhysReg2LiveUnion[PhysReg]);
111 return Queries[PhysReg];
RegAllocBase.cpp 112 Queries.reset(new LiveIntervalUnion::Query[PhysReg2LiveUnion.numRegs()]);
181 // Invalidate all interference queries, live ranges could have changed.
  /frameworks/ex/chips/tests/src/com/android/ex/chips/
RecipientAlternatesAdapterTest.java 26 MatrixCursor c = new MatrixCursor(Queries.EMAIL.getProjection());
  /external/mdnsresponder/mDNSCore/
uDNS.c 48 // Currently the unicast queries maintain a 64 bit map to track the valid DNS servers for that
90 rr->ThisAPInterval = rr->ThisAPInterval * QuestionIntervalStep; // Same Retry logic as Unicast Queries
161 // PenalizeDNSServer is called when the number of queries to the unicast
173 // we should never accept a response after we penalize a DNS server e.g., send two queries, no response,
197 // We penalize the server so that new queries don't pick this server for DNSSERVER_PENALTY_TIME
265 // because uDNS_CheckCurrentQuestion will try resending the queries. Hence, to be consistent, we
684 #pragma mark - Long-Lived Queries
694 // we risk causing spurious "SendQueries didn't send all its queries" log messages
    [all...]

Completed in 493 milliseconds