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

1 2 3 4 5 6 7 891011>>

  /system/bt/service/ipc/
linux_ipc_host.cc 192 std::vector<Uuid> ids; local
194 ids.emplace_back(Uuid::FromString(uuid_token));
205 gatt_servers_[service_uuid]->SetAdvertisement(ids, decoded_advertise_data,
220 std::vector<Uuid> ids; local
222 ids.emplace_back(Uuid::FromString(uuid_token));
233 gatt_servers_[service_uuid]->SetScanResponse(ids, decoded_advertise_data,
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 157 * Command to list all possible view ids for the given application.
158 * This lists all view ids regardless if they are on screen or not.
191 * A command that allows for querying of views. It takes an id type, the requisite ids,
239 * A command that returns the accessibility ids of the root view.
251 * A command that returns the accessibility ids of the views that contain the given text.
252 * It takes a string of text and returns the accessibility ids of the nodes that contain the
269 StringBuilder ids = new StringBuilder(); local
275 ids.append(result.getMessage()).append(" ");
277 return new MonkeyCommandReturn(true, ids.toString());
454 * Command to get the accessibility ids of the given node. Returns the accessibility ids as
475 String ids = node.getWindowId() + " " + viewId; local
516 StringBuilder ids = new StringBuilder(); local
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
EABContactManager.java 450 * Include only the contacts with the given IDs.
453 public Query setFilterById(long... ids) {
454 mIds = ids;
688 long[] ids = null; local
700 ids = new long[count];
704 ids[idx++] = id;
715 if ((ids == null) || (ids.length == 0)) {
719 if (ids.length == 1) {
720 logger.debug("Update contact " + ids[0] + " with request: " + values)
    [all...]
  /external/mesa3d/src/mesa/main/
arbprogram.h 37 _mesa_DeleteProgramsARB(GLsizei n, const GLuint *ids);
40 _mesa_GenProgramsARB(GLsizei n, GLuint *ids);
arrayobj.h 101 void GLAPIENTRY _mesa_DeleteVertexArrays(GLsizei n, const GLuint *ids);
  /external/perf_data_converter/src/quipper/
test_perf_data.h 127 SelfT& WithIds(std::initializer_list<u64> ids) {
128 ids_.insert(ids_.end(), ids.begin(), ids.end());
147 perf_file_section AddIds(std::initializer_list<u64> ids) {
148 ids_.insert(ids_.end(), ids.begin(), ids.end());
151 .size = ids.size() * sizeof(decltype(ids)::value_type),
  /external/wayland-protocols/flinger_headers/
hwcomposer2_arc_private.h 257 /* arcSetLayerAttributes(..., numElements, ids, sizes, values)
268 * ids - an array of surface attribute ids
276 hwc2_display_t display, hwc2_layer_t layer, uint32_t numElements, const int32_t* ids,
297 /* arcAttributesShouldForceUpdate(..., numElements, ids, sizes, values, outShouldForceUpdate)
307 * ids - an array of surface attribute ids
318 uint32_t numElements, const int32_t* ids, const uint32_t* sizes,
  /frameworks/base/core/java/android/service/autofill/
FillResponse.java 249 * @param ids id of Views that when focused will display the authentication UI.
255 * <li>{@code ids} is {@code null}</li>
256 * <li>{@code ids} is empty</li>
257 * <li>{@code ids} contains a {@code null} element</li>
267 public @NonNull Builder setAuthentication(@NonNull AutofillId[] ids,
281 mAuthenticationIds = assertValid(ids);
293 public Builder setIgnoredIds(AutofillId...ids) {
295 mIgnoredIds = ids;
368 * @throws IllegalArgumentException is length of {@code ids} args is more than
372 * @throws NullPointerException if {@code ids} or any element on it is {@code null}
    [all...]
LuhnChecksumValidator.java 47 * @param ids id of fields that comprises the number to be checked.
49 public LuhnChecksumValidator(@NonNull AutofillId... ids) {
50 mIds = Preconditions.checkArrayElementsNotNull(ids, "ids");
111 return "LuhnChecksumValidator: [ids=" + Arrays.toString(mIds) + "]";
SaveInfo.java 364 // Set used to validate against duplicate ids.
377 * @param requiredIds ids of all required views that will trigger a save request.
425 * Sets the ids of additional, optional views the service would be interested to save.
429 * @param ids The ids of the optional views.
432 * @throws IllegalArgumentException if {@code ids} is {@code null} or empty, or if
435 public @NonNull Builder setOptionalIds(@NonNull AutofillId[] ids) {
437 mOptionalIds = assertValid(ids);
607 * {@link #setValidator(Validator) validator}. If any of the {@code ids} is a
612 * @param ids id of fields whose value will be sanitized
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestMenu.java 85 public static TestMenu create(int... ids) {
89 for (int id : ids) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
limits.cpp 153 TIndexTraverser(const TIdSetType& ids) : inductiveLoopIds(ids), bad(false) { }
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
ZoneTabFileTest.java 117 private void addIds(Map<String, List<String>> map, String iso, String... ids) {
118 map.put(iso, Arrays.asList(ids));
  /system/core/adf/libadf/
adf.cpp 61 std::vector<adf_id_t> ids;
70 ids.push_back(id);
75 return adf_id_vector_to_array(ids, ids_out);
78 ssize_t adf_devices(adf_id_t **ids)
80 return adf_find_nodes("adf%u", ids);
241 std::vector<adf_id_t> ids;
245 ids.push_back(data.allowed_attachments[i].interface);
248 return adf_id_vector_to_array(ids, interfaces);
256 std::vector<adf_id_t> ids; local
269 ids.push_back(in[i])
470 std::vector<adf_id_t> ids; local
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
JobListView.java 127 JSONArray ids = new JSONArray(); local
129 ids.set(ids.size(), jsonObj.get("id"));
133 params.put("job__id__in", ids);
  /external/oj-libjdwp/src/share/javavm/export/
jmm.h 234 jlongArray ids,
248 jlongArray ids,
307 jlongArray ids,
321 jlongArray ids,
  /external/syslinux/gpxe/src/include/gpxe/
eisa.h 64 struct eisa_device_id *ids; member in struct:eisa_driver
  /external/syslinux/gpxe/src/include/
nic.h 93 .ids = _ids, \
114 .ids = _ids, \
135 .ids = _ids, \
156 .ids = _ids, \
  /frameworks/base/services/autofill/java/com/android/server/autofill/
Helper.java 102 final ArrayList<AutofillId> ids = dataset.getFieldIds(); local
104 final int size = ids == null ? 0 : ids.size();
107 fields.put(ids.get(i), values.get(i));
181 * @param urlBarIds list of ids; only the first id found will be sanitized.
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/dao/
FunnyNamedDao.java 42 @Query("select * from \"" + TABLE_NAME + "\" WHERE \"" + COLUMN_ID + "\" IN (:ids)")
43 List<FunnyNamedEntity> loadAll(int... ids);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
PrimaryKeyTest.java 100 final long[] ids = mDatabase.intPKeyDao().insertAndGetIds(entity, entity2); local
101 assertThat(mDatabase.intPKeyDao().loadDataById(ids), is(Arrays.asList("foo", "foo2")));
118 final long[] ids = mDatabase.integerAutoIncPKeyDao().insertAndGetIds(entity, entity2); local
119 assertThat(mDatabase.integerAutoIncPKeyDao().loadDataById(ids),
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
SelectionHelper.java 79 * @param ids
83 public abstract boolean setItemsSelected(Iterable<String> ids, boolean selected);
202 * Facilitates the use of stable ids.
216 * @return A list of all known stable IDs.
  /packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
RecordingSampleBuffer.java 122 public void init(@NonNull List<String> ids, @NonNull List<MediaFormat> mediaFormats)
124 mTrackCount = ids.size();
132 ids, mediaFormats, mBufferReason, mBufferManager, mSamplePool, mIoCallback);
138 mBufferManager.registerChunkEvictedListener(ids.get(i), RecordingSampleBuffer.this);
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife-compiler/8.4.0/
butterknife-compiler-8.4.0.jar 
  /toolchain/binutils/binutils-2.27/bfd/
irix-core.c 174 struct idesc *idg, *idf, *ids; local
228 ids = &coreout.c_idesc[I_SPECREGS];
231 || idf->i_offset + idf->i_len != ids->i_offset)
239 idg->i_len + idf->i_len + ids->i_len,

Completed in 594 milliseconds

1 2 3 4 5 6 7 891011>>