HomeSort by relevance Sort by last modified time
    Searched refs:ids (Results 151 - 175 of 1475) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
mca.h 62 struct mca_device_id *ids; member in struct:mca_driver
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
WorkSpecDao.java 67 * @param ids The identifiers of desired {@link WorkSpec}s
68 * @return The {@link WorkSpec}s with the requested IDs
70 @Query("SELECT * FROM workspec WHERE id IN (:ids)")
71 WorkSpec[] getWorkSpecs(List<String> ids);
84 * @return All WorkSpec ids in the database.
93 * @param ids The IDs for the {@link WorkSpec}s to update
96 @Query("UPDATE workspec SET state=:state WHERE id IN (:ids)")
97 int setState(State state, String... ids);
158 * @param ids The identifier of the {@link WorkSpec}
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
TimeZoneNames.java 55 // Set up the 2D array used to hold the names. The first column contains the Olson ids.
156 * Returns an array containing the time zone ids in use in the country corresponding to
164 ArrayList<String> ids = new ArrayList<String>(); local
172 ids.add(line.substring(olsonIdStart, olsonIdEnd));
175 return ids.toArray(new String[ids.size()]);
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
Selection.java 111 * @return Map of ids added or removed. Added ids have a value of true, removed are false.
211 * Trims this selection to be the intersection of itself and {@code ids}.
213 void intersect(Collection<String> ids) {
214 checkArgument(ids != null);
216 mSelection.retainAll(ids);
217 mProvisionalSelection.retainAll(ids);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactAggregatorHelper.java 81 Set<Long> ids = rawContactIds.get(Iterables.getOnlyElement(s)); local
82 if (ids != null && !ids.isEmpty()) {
83 mergedSet.addAll(ids);
91 * Given a set of raw contact ids {@code rawContactIdSet} and the connection among them
  /system/extras/simpleperf/
record_file_format.h 118 SectionDesc ids; member in struct:PerfFileFormat::FileAttr
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestStatusEntity.java 152 List<Long> ids = (List<Long>) e.getProperty(FAILING_IDS); local
154 if (ids.size() == offsets.size()) {
155 for (int i = 0; i < ids.size(); i++) {
157 new TestCaseReference(ids.get(i), offsets.get(i).intValue()));
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /external/lzma/CPP/7zip/UI/Common/
HashCalc.cpp 45 CRecordVector<CMethodId> ids; local
62 ids.Clear();
65 unsigned index = ids.AddToUniqueSorted(tempMethods[t]);
66 if (ids.Size() != methods.Size())
77 unsigned index = ids.AddToUniqueSorted(id);
78 if (ids.Size() != methods.Size())
83 for (i = 0; i < ids.Size(); i++)
87 RINOK(CreateHasher(EXTERNAL_CODECS_LOC_VARS ids[i], name, hasher));
  /external/mesa3d/src/mesa/main/
debug_output.h 79 GLenum* types, GLenum* ids, GLenum* severities,
84 GLsizei count, const GLuint *ids,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 51 * indicating the IDs (as array of long) of the downloads that were
169 final long[] ids = intent.getLongArrayExtra( local
171 sendNotificationClickedIntent(context, ids);
230 private void sendNotificationClickedIntent(Context context, long[] ids) {
236 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, ids[0]);
244 Log.w(TAG, "Missing details for download " + ids[0]);
260 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids);
270 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids);
272 if (ids.length == 1) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
id.go 14 // get allocates an ID and returns it. IDs are always > 0.
19 panic("too many ids for this function")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
id.go 14 // get allocates an ID and returns it. IDs are always > 0.
19 panic("too many ids for this function")
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsProvider2_AccountRemovalTest.java 193 for (ContactIdPair ids : remaining) {
195 ids.mContactId);
197 toBeRemoved.add(ids);
223 for (ContactIdPair ids : remaining) {
224 if (!RawContactUtil.rawContactExistsById(mResolver, ids.mRawContactId)) {
225 toBeRemoved.add(ids);
  /external/boringssl/src/crypto/x509v3/
v3_sxnet.c 105 ASN1_SEQUENCE_OF(SXNET, ids, SXNETID)
119 for (i = 0; i < sk_SXNETID_num(sx->ids); i++) {
120 id = sk_SXNETID_value(sx->ids, i);
133 * else because it will just take static IDs from the configuration file and
222 if (!sk_SXNETID_push(sx->ids, id))
266 for (i = 0; i < sk_SXNETID_num(sx->ids); i++) {
267 id = sk_SXNETID_value(sx->ids, i);
  /external/skia/infra/bots/recipe_modules/skia_swarming/
api.py 208 ids = []
212 ids.append(shard['id'])
215 ids.append(task['task_id'])
216 for idx, task_id in enumerate(ids):
219 if len(ids) > 1: # pragma: nocover
220 k += ' (shard index %d, %d total)' % (idx, len(ids))
  /external/skqp/infra/bots/recipe_modules/skia_swarming/
api.py 208 ids = []
212 ids.append(shard['id'])
215 ids.append(task['task_id'])
216 for idx, task_id in enumerate(ids):
219 if len(ids) > 1: # pragma: nocover
220 k += ' (shard index %d, %d total)' % (idx, len(ids))
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
embedding_ops.py 56 """Lookup embedding results, accounting for invalid IDs and empty features.
64 Invalid IDs (< 0) are pruned from input IDs and weights, as well as any IDs
68 The ids and weights may be multi-dimensional. Embeddings are always aggregated
78 ids. `d_0` is typically batch size.
125 # Reshape higher-rank sparse ids and weights to linear segment ids.
141 # Prune invalid ids and weights.
172 # Reshape back from linear ids back into higher-dimensional dense result
    [all...]
  /external/webrtc/webrtc/base/
macwindowpicker.cc 78 CGWindowID ids[1]; local
79 ids[0] = id.id();
81 CFArrayCreate(NULL, reinterpret_cast<const void **>(&ids), 1, NULL);
113 CGWindowID ids[1]; local
114 ids[0] = id.id();
116 CFArrayCreate(NULL, reinterpret_cast<const void **>(&ids), 1, NULL);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/dao/
UserDao.java 65 @Query("select * from user where mId IN(:ids)")
66 public abstract User[] loadByIds(int... ids);
144 @Query("select mId from user where mId IN (:ids)")
145 public abstract Cursor findUsersAsCursor(int... ids);
153 @Query("select * from user where mId IN (:ids)")
154 public abstract Maybe<List<User>> maybeUsersByIds(int... ids);
159 @Query("select * from user where mId IN (:ids)")
160 public abstract Single<List<User>> singleUsersByIds(int... ids);
212 @Query("DELETE FROM User WHERE mId IN (:ids) AND mAge == :age")
213 public abstract int deleteByAgeAndIds(int age, List<Integer> ids);
    [all...]
  /external/syslinux/com32/hdt/
Makefile 45 PCI_IDS_FILE ?= $(PWD)/$(FLOPPY_DIR)/pci.ids
66 -[ ! -f $(GZ_PCI_IDS_FILE) ] && cp /usr/share/hwdata/pci.ids $(PCI_IDS_FILE) && $(GZIPPROG) $(PCI_IDS_FILE)
67 -[ ! -f $(GZ_PCI_IDS_FILE) ] && cp /usr/share/pci.ids $(PCI_IDS_FILE) && $(GZIPPROG) $(PCI_IDS_FILE)
73 @ [ -f $(GZ_PCI_IDS_FILE) ] && MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) $(GZ_PCI_IDS_FILE) a:pci.ids || printf "\nThe $(GZ_PCI_IDS_FILE) file is missing and can be downloaded from http://pciids.sourceforge.net and gzipped in\nthe ./com32/hdt/$(FLOPPY_DIR) directory of the extracted Syslinux source.\n\n"
101 -[ ! -f $(GZ_PCI_IDS_FILE) ] && cp /usr/share/hwdata/pci.ids $(PCI_IDS_FILE) && $(GZIPPROG) $(PCI_IDS_FILE)
102 -[ ! -f $(GZ_PCI_IDS_FILE) ] && cp /usr/share/pci.ids $(PCI_IDS_FILE) && $(GZIPPROG) $(PCI_IDS_FILE)
109 -[ ! -f $(ISO_DIR)/$(ISOLINUX_DIR)/pci.ids.gz ] && cp $(GZ_PCI_IDS_FILE) $(ISO_DIR)/$(ISOLINUX_DIR)/pci.ids
110 -[ ! -f $(ISO_DIR)/$(ISOLINUX_DIR)/pci.ids ] && printf "\nThe $(FLOPPY_DIR)/pci.ids file is missing and can be downloaded from http://pciids.sourceforge.net and put in\nthe ./com32/h (…)
    [all...]
  /external/icu/icu4c/source/test/intltest/
icusvtst.cpp 419 // shouldn't find unregistered ids
464 UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, status);
465 service.getVisibleIDs(ids, status);
467 confirmBoolean("18) find invisible", !ids.contains(&target));
555 TestMultipleKeyStringFactory(const UnicodeString ids[], int32_t count, const UnicodeString& factoryID)
561 _ids.addElement(new UnicodeString(ids[i]), _status);
651 // we can override for particular ids
683 // iterate over the visual ids returned by the multiple factory
686 UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, 0, status);
687 service.getVisibleIDs(ids, status)
    [all...]
  /external/skia/tools/gpu/gl/debug/
DebugGLTestContext.cpp 563 GrGLvoid genBuffers(GrGLsizei n, GrGLuint* ids) override {
564 this->genObjs(kBuffer_ObjTypes, n, ids);
567 GrGLvoid genFramebuffers(GrGLsizei n, GrGLuint* ids) override {
568 this->genObjs(kFrameBuffer_ObjTypes, n, ids);
571 GrGLvoid genRenderbuffers(GrGLsizei n, GrGLuint* ids) override {
572 this->genObjs(kRenderBuffer_ObjTypes, n, ids);
575 GrGLvoid genTextures(GrGLsizei n, GrGLuint* ids) override {
576 this->genObjs(kTexture_ObjTypes, n, ids);
579 GrGLvoid genVertexArrays(GrGLsizei n, GrGLuint* ids) override {
580 this->genObjs(kVertexArray_ObjTypes, n, ids);
    [all...]
  /external/skqp/tools/gpu/gl/debug/
DebugGLTestContext.cpp 557 GrGLvoid genBuffers(GrGLsizei n, GrGLuint* ids) override {
558 this->genObjs(kBuffer_ObjTypes, n, ids);
561 GrGLvoid genFramebuffers(GrGLsizei n, GrGLuint* ids) override {
562 this->genObjs(kFrameBuffer_ObjTypes, n, ids);
565 GrGLvoid genRenderbuffers(GrGLsizei n, GrGLuint* ids) override {
566 this->genObjs(kRenderBuffer_ObjTypes, n, ids);
569 GrGLvoid genTextures(GrGLsizei n, GrGLuint* ids) override {
570 this->genObjs(kTexture_ObjTypes, n, ids);
573 GrGLvoid genVertexArrays(GrGLsizei n, GrGLuint* ids) override {
574 this->genObjs(kVertexArray_ObjTypes, n, ids);
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
CannedFillResponse.java 143 * Creates a new response, replacing the dataset field ids by the real ids from the assist
308 * Sets the required savable ids based on their {@code resourceId}.
310 public Builder setRequiredSavableIds(int type, String... ids) {
312 throw new IllegalStateException("Already set required autofill ids: "
316 mRequiredSavableIds = ids;
321 * Sets the required savable ids based on their {@code autofillId}.
323 public Builder setRequiredSavableAutofillIds(int type, AutofillId... ids) {
325 throw new IllegalStateException("Already set required resource ids: "
329 mRequiredSavableAutofillIds = ids;
    [all...]

Completed in 672 milliseconds

1 2 3 4 5 67 8 91011>>