Home
last modified time | relevance | path

Searched full:status (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/developers/samples/android/media/MidiScope/Application/src/main/java/com/example/android/midiscope/
DMidiPrinter.java50 public static String getName(int status) { in getName() argument
51 if (status >= 0xF0) { in getName()
52 int index = status & 0x0F; in getName()
54 } else if (status >= 0x80) { in getName()
55 int index = (status >> 4) & 0x07; in getName()
73 int status = statusByte & 0xFF; in formatMessage() local
74 sb.append(getName(status)).append("("); in formatMessage()
76 if ((status >= 0x80) && (status < 0xF0)) { // channel message in formatMessage()
77 int channel = status & 0x0F; in formatMessage()
DMidiScope.java67 public void onDeviceStatusChanged(MidiDeviceStatus status) { in onDeviceStatusChanged() argument
69 if (status.isInputPortOpen(0)) { in onDeviceStatusChanged()
72 status.getDeviceInfo()); in onDeviceStatusChanged()
/developers/samples/android/media/MidiSynth/Application/src/main/java/com/example/android/midisynth/
DMidiSynthDeviceService.java50 public void onDeviceStatusChanged(MidiDeviceStatus status) { in onDeviceStatusChanged() argument
51 if (status.isInputPortOpen(0) && !mSynthStarted) { in onDeviceStatusChanged()
54 } else if (!status.isInputPortOpen(0) && mSynthStarted) { in onDeviceStatusChanged()
/developers/build/templates/base/.google/
Dpackaging.yaml.ftl6 status: <#if sample.metadata.status?is_node>${sample.metadata.status}<#else>PUBLISHED</#if>
/developers/build/templates/base-build/.google/
Dpackaging.yaml.ftl6 status: <#if sample.metadata.status?is_node>${sample.metadata.status}<#else>PUBLISHED</#if>
/developers/build/templates/unmanaged/.google/
Dpackaging.yaml.ftl6 status: <#if sample.metadata.status?is_node>${sample.metadata.status}<#else>PUBLISHED</#if>
/developers/samples/android/deprecated/wearable/wear/Quiz/
Dtemplate-params.xml41 …which allows the phone application to update the status of the question (i.e. did the user answer …
50 <status>DEPRECATED</status>
/developers/samples/android/common/src/java/com/example/android/common/midi/
DMidiPortSelector.java132 public void onDeviceStatusChanged(final MidiDeviceStatus status) { in onDeviceStatusChanged() argument
136 MidiDeviceInfo info = status.getDeviceInfo(); in onDeviceStatusChanged()
137 Log.i(MidiConstants.TAG, "MidiPortSelector.onDeviceStatusChanged status = " + status in onDeviceStatusChanged()
146 if (status.isInputPortOpen(i)) { // busy? in onDeviceStatusChanged()
/developers/samples/android/deprecated/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
DMainActivity.java80 * The status of questions will be updated on the phone when the user answers them.
314 * Sets the question's status to be the default "unanswered." This will be updated when the
323 ((TextView) questionStatusElem.findViewById(R.id.status)) in setNewQuestionStatus()
342 // Update the answered question's status. in onDataChanged()
348 // Update the deleted question's status by marking it as left blank. in onDataChanged()
361 * This involves changing the question's text color and changing the status text for it.
367 TextView questionStatus = (TextView) questionStatusElement.findViewById(R.id.status); in updateQuestionStatus()
386 TextView questionStatus = (TextView) questionStatusElement.findViewById(R.id.status); in markQuestionLeftBlank()
436 // Reset quiz status in phone layout. in resetQuiz()
440 TextView questionStatus = (TextView) questionStatusElement.findViewById(R.id.status); in resetQuiz()
[all …]
/developers/samples/android/ui/window/BasicImmersiveMode/
Dtemplate-params.xml42 <status>PUBLISHED</status>
72 …AVIGATION and SYSTEM_UI_FLAG_FULLSCREEN flags, hides the navigation and status bars and lets your…
/developers/samples/android/ui/window/AdvancedImmersiveMode/
Dtemplate-params.xml41 <status>PUBLISHED</status>
70 `SYSTEM_UI_FLAG_FULLSCREEN` flags, hides the navigation and status bars
/developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/
DWearableMainActivity.java46 import com.google.android.gms.common.api.Status;
367 .setResultCallback(new ResultCallback<Status>() { in requestLocation()
370 public void onResult(Status status) { in requestLocation()
371 if (status.getStatus().isSuccess()) { in requestLocation()
378 + "status code: " in requestLocation()
379 + status.getStatusCode() + ", message: " + status in requestLocation()
437 + "status: " + dataItemResult.getStatus() in addLocationEntry()
/developers/samples/android/deprecated/wearable/wear/Timer/
Dtemplate-params.xml40 <status>DEPRECATED</status>
/developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
DStorageProviderFragment.java31 * Toggles the user's login status via a login menu option, and enables/disables the cloud storage
62 // Notify the system that the status of our roots has changed. This will trigger in onOptionsItemSelected()
73 * Placeholder function to change the user's authorization status.
/developers/samples/android/accessibility/CheckableLayout/
Dtemplate-params.xml35 <status>PUBLISHED</status>
64 display status toggles with the checked state of it's parent (the
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DAsyncTask.java242 private volatile Status mStatus = Status.PENDING;
275 * Indicates the current status of the task. Each status will be set only once
278 public enum Status { enum in AsyncTask
350 * Returns the current status of this task.
352 * @return The current status.
354 public final Status getStatus() { in getStatus()
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
592 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
598 if (mStatus != Status.PENDING) { in executeOnExecutor()
610 mStatus = Status.RUNNING; in executeOnExecutor()
[all …]
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
DBluetoothLeService.java73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
93 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
94 if (status == BluetoothGatt.GATT_SUCCESS) {
97 Log.w(TAG, "onServicesDiscovered received: " + status);
104 int status) {
105 if (status == BluetoothGatt.GATT_SUCCESS) {
/developers/samples/android/deprecated/wearable/wear/FindMyPhone/
Dtemplate-params.xml48 <status>DEPRECATED</status>
/developers/samples/android/deprecated/wearable/wear/RecipeAssistant/
Dtemplate-params.xml46 <status>DEPRECATED</status>
/developers/samples/android/deprecated/wearable/wear/DelayedConfirmation/
Dtemplate-params.xml50 <status>DEPRECATED</status>
/developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
DStatusFragment.java35 * Provides UI for enabling the target app in this profile. The status of the app can be
37 * controls for each status.
53 mTextStatus = (TextView) view.findViewById(R.id.status); in onViewCreated()
/developers/samples/android/ui/window/AdvancedImmersiveMode/Application/src/main/java/com/example/android/advancedimmersivemode/
DAdvancedImmersiveModeFragment.java192 // Low profile mode doesn't resize the screen at all, but it covers the nav & status bar in toggleUiFlags()
204 // When enabled, this flag hides non-critical UI, such as the status bar, in toggleUiFlags()
207 // mode is also enabled, the app-drawable area expands, and when the status bar is swiped in toggleUiFlags()
231 // enabled. When enabled, it allows the user to swipe the status and/or nav bars in toggleUiFlags()
245 // * Uses semi-transparent bars for the nav and status bars in toggleUiFlags()
/developers/samples/android/wearable/wear/JumpingJack/
Dtemplate-params.xml39 <status>DEPRECATED</status>
/developers/samples/android/deprecated/wearable/wear/SynchronizedNotifications/
Dtemplate-params.xml49 <status>DEPRECATED</status>
107 + "status: " + dataItemResult.getStatus().getStatusCode());
/developers/samples/android/deprecated/wearable/wear/WatchViewStub/
Dtemplate-params.xml34 <status>DEPRECATED</status>

12345678910>>...12