HomeSort by relevance Sort by last modified time
    Searched full:modelid (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
SoundTriggerUtil.java 76 * @param modelId The model ID to look-up the sound model for.
80 public GenericSoundModel getSoundModel(UUID modelId) {
83 model = mSoundTriggerService.getSoundModel(new ParcelUuid(modelId));
99 * @param modelId The model ID to look-up the sound model for.
103 public boolean deleteSoundModel(UUID modelId) {
105 mSoundTriggerService.deleteSoundModel(new ParcelUuid(modelId));
113 public SoundTriggerDetector createSoundTriggerDetector(UUID modelId,
115 return mSoundTriggerManager.createSoundTriggerDetector(modelId, callback, null);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
GridDirectoryHolder.java 61 * @param modelId The model ID of the item.
64 public void bind(Cursor cursor, String modelId, State state) {
67 this.modelId = modelId;
ModelBackedDocumentsAdapter.java 113 String modelId = mModelIds.get(position);
114 Cursor cursor = mEnv.getModel().getItem(modelId);
115 holder.bind(cursor, modelId, mEnv.getDisplayState());
121 boolean selected = mEnv.isSelected(modelId);
126 holder.setSelected(mEnv.isSelected(modelId), false);
GridDocumentHolder.java 113 * @param modelId The model ID of the item.
116 public void bind(Cursor cursor, String modelId, State state) {
119 this.modelId = modelId;
ListDocumentHolder.java 108 * @param modelId The model ID of the item.
112 public void bind(Cursor cursor, String modelId, State state) {
115 this.modelId = modelId;
Model.java 368 public @Nullable Cursor getItem(String modelId) {
369 Integer pos = mPositions.get(modelId);
371 if (DEBUG) Log.d(TAG, "Unabled to find cursor position for modelId: " + modelId);
377 "Unabled to move cursor to position " + pos + " for modelId: " + modelId);
396 for (String modelId: items.getAll()) {
397 final Cursor cursor = getItem(modelId);
400 "Skipping document. Unabled to obtain cursor for modelId: " + modelId);
    [all...]
DocumentsAdapter.java 91 String modelId = getModelIds().get(position);
92 Cursor cursor = model.getItem(modelId);
DocumentHolder.java 41 public @Nullable String modelId;
72 * @param modelId
75 public abstract void bind(Cursor cursor, String modelId, State state);
DirectoryFragment.java 477 public boolean onBeforeItemStateChange(String modelId, boolean selected) {
479 final Cursor cursor = mModel.getItem(modelId);
481 Log.w(TAG, "Can't obtain cursor for modelId: " + modelId);
504 public void onItemStateChanged(String modelId, boolean selected) {
505 final Cursor cursor = mModel.getItem(modelId);
507 Log.w(TAG, "Model returned null cursor for document: " + modelId
    [all...]
SectionBreakDocumentsAdapterWrapper.java 242 public void bind(Cursor cursor, String modelId, State state) {
MultiSelectManager.java 361 * @param modelId
363 public void toggleSelection(String modelId) {
364 assert(modelId != null);
367 if (mSelection.contains(modelId)) {
368 changed = attemptDeselect(modelId);
370 changed = attemptSelect(modelId);
468 * @param modelId
471 private boolean selectAndNotify(String modelId) {
472 boolean changed = mSelection.add(modelId);
474 notifyItemStateChanged(modelId, true)
    [all...]
FocusManager.java 479 String modelId = mAdapter.getModelId(i);
480 Cursor cursor = mModel.getItem(modelId);
481 if (modelId != null && cursor != null) {
  /frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
SoundTriggerHelper.java 131 * @param modelId UUID of the sound model.
138 int startGenericRecognition(UUID modelId, GenericSoundModel soundModel,
141 if (modelId == null || soundModel == null || callback == null ||
148 ModelData modelData = getOrCreateGenericModelDataLocked(modelId);
330 * @param modelId The identifier of the generic sound model for which
336 int stopGenericRecognition(UUID modelId, IRecognitionStatusCallback callback) {
339 if (callback == null || modelId == null) {
340 Slog.e(TAG, "Null callbackreceived for stopGenericRecognition() for modelid:" +
341 modelId);
345 ModelData modelData = mModelDataMap.get(modelId);
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
MultiSelectManagerTest.java 385 public void onItemStateChanged(String modelId, boolean selected) {}
388 public boolean onBeforeItemStateChange(String modelId, boolean selected) {
389 return !ignored.contains(modelId);
DocumentHolderTest.java 45 public void bind(Cursor cursor, String modelId, State state) {}
  /external/webrtc/talk/media/devices/
macdevicemanagermm.mm 163 @"modelID: \"%@\", uniqueID \"%@\", isConnected: %d, "
168 [capture_device modelID],
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
QuickViewIntentBuilder.java 147 "Unable to obtain cursor for sibling document, modelId: "
155 "Skipping directory, not supported by quick view. modelId: "
  /external/libweave/src/privet/
wifi_ssid_generator.cc 24 // [DeviceName+Idx <= 20].[modelID == 5][flags == 2]prv
  /external/libexif/libexif/pentax/
mnote-pentax-tag.c 67 {MNOTE_PENTAX2_TAG_MODEL_ID, "ModelID", N_("Model Identification"), ""},
  /external/autotest/client/cros/networking/
cellular_proxy.py 17 DEVICE_PROPERTY_MODEL_ID = 'Cellular.ModelID'
  /hardware/qcom/msm8x26/kernel-headers/sound/
compress_params.h 231 __u8 *modelId;
  /hardware/qcom/msm8x84/kernel-headers/sound/
compress_params.h 232 __u8 *modelId;
  /hardware/qcom/msm8x26/original-kernel-headers/sound/
compress_params.h 342 __u8 *modelId;
  /hardware/qcom/msm8x84/original-kernel-headers/sound/
compress_params.h 343 __u8 *modelId;
  /external/cros/system_api/dbus/shill/
dbus-constants.h 193 const char kModelIDProperty[] = "Cellular.ModelID";
    [all...]

Completed in 1534 milliseconds

1 2