Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/development/vndk/tools/definition-tool/tests/
Dtest_tagged_dict.py50 def _check_tag_visibility(self, d, from_tag, visible_tags): argument
52 self.assertEqual(d.is_tag_visible(from_tag, to_tag),
57 d = TaggedDict()
61 self._check_tag_visibility(d, 'll_ndk', visible_tags)
62 self._check_tag_visibility(d, 'll_ndk_indirect', visible_tags)
67 self._check_tag_visibility(d, 'vndk_sp', visible_tags)
68 self._check_tag_visibility(d, 'vndk_sp_indirect', visible_tags)
69 self._check_tag_visibility(d, 'vndk_sp_indirect_private', visible_tags)
74 self._check_tag_visibility(d, 'vndk', visible_tags)
81 self._check_tag_visibility(d, 'fwk_only', visible_tags)
[all …]
/development/tools/repo_diff/service/repodiff/mappers/
Dmappers.go74 func diffRowToDenormalizedCols(d e.AnalyzedDiffRow, rowIndex int) []interface{} {
77 d.Date,
78 d.DownstreamProject,
79 d.UpstreamProject,
80 constants.StatusToDisplay[d.DiffStatus],
81 d.FilesChanged,
82 d.LineInsertions,
83 d.LineDeletions,
84 d.LineChanges,
85 d.CommitsNotUpstreamed,
[all …]
/development/vndk/tools/definition-tool/assets/visual/
Ddep-graph.js13 line.radius(function(d) { return d.y; }); argument
14 line.angle(function(d) { return d.x / 180 * Math.PI; }); argument
201 let root = tagHierarchy(depDumps).sum(function(d) { return 1; }); argument
209 .each(function(d) { d.source = d[0], d.target = d[d.length - 1]; }) argument
210 .attr("class", function(d) { return d.allow ? "link" : "link--violate" }) argument
217 function(d) { argument
218 return d.data.parent.parent.parent.key == "system" ?
219 (d.data.parent.parent.key == "system.public" ?
226 function(d) { argument
227 return "rotate(" + (d.x - 90) + ")translate(" + (d.y + 8) + ",0)" +
[all …]
/development/samples/training/NsdChat/src/com/example/android/nsdchat/
DChatConnection.java98 Log.d(TAG, "setSocket being called."); in setSocket()
100 Log.d(TAG, "Setting a null socket."); in setSocket()
149 Log.d(TAG, "ServerSocket Created, awaiting connection"); in run()
151 Log.d(TAG, "Connected."); in run()
178 Log.d(CLIENT_TAG, "Creating chatClient"); in ChatClient()
200 Log.d(CLIENT_TAG, "Client-side socket initialized."); in run()
203 Log.d(CLIENT_TAG, "Socket already initialized. skipping!"); in run()
210 Log.d(CLIENT_TAG, "Initializing socket failed, UHE", e); in run()
212 Log.d(CLIENT_TAG, "Initializing socket failed, IOE.", e); in run()
220 Log.d(CLIENT_TAG, "Message sending loop interrupted, exiting"); in run()
[all …]
DNsdChatActivity.java46 Log.d(TAG, "Creating chat activity"); in onCreate()
65 Log.d(TAG, "ServerSocket isn't bound."); in clickAdvertise()
76 Log.d(TAG, "Connecting."); in clickConnect()
80 Log.d(TAG, "No service to connect to!"); in clickConnect()
101 Log.d(TAG, "Starting."); in onStart()
112 Log.d(TAG, "Pausing."); in onPause()
121 Log.d(TAG, "Resuming."); in onResume()
141 Log.d(TAG, "Being stopped."); in onStop()
151 Log.d(TAG, "Being destroyed."); in onDestroy()
DNsdHelper.java57 Log.d(TAG, "Service discovery started"); in initializeDiscoveryListener()
62 Log.d(TAG, "Service discovery success" + service); in initializeDiscoveryListener()
64 Log.d(TAG, "Unknown Service Type: " + service.getServiceType()); in initializeDiscoveryListener()
66 Log.d(TAG, "Same machine: " + mServiceName); in initializeDiscoveryListener()
110 Log.d(TAG, "Same IP."); in initializeResolveListener()
124 Log.d(TAG, "Service registered: " + mServiceName); in initializeRegistrationListener()
129 Log.d(TAG, "Service registration failed: " + arg1); in initializeRegistrationListener()
134 Log.d(TAG, "Service unregistered: " + arg0.getServiceName()); in initializeRegistrationListener()
139 Log.d(TAG, "Service unregistration failed: " + errorCode); in initializeRegistrationListener()
/development/samples/browseable/MultiWindowPlayground/src/com/android.multiwindowplayground/activities/
DLoggingActivity.java46 Log.d(mLogTag, "onCreate"); in onCreate()
54 Log.d(mLogTag, "onPostCreate"); in onPostCreate()
60 Log.d(mLogTag, "onPause"); in onPause()
66 Log.d(mLogTag, "onDestroy"); in onDestroy()
72 Log.d(mLogTag, "onResume"); in onResume()
78 Log.d(mLogTag, "onConfigurationChanged: " + newConfig.toString()); in onConfigurationChanged()
84 Log.d(mLogTag, "onPostCreate"); in onPostCreate()
93 Log.d(mLogTag, "onStart"); in onStart()
102 Log.d(mLogTag, "onStop"); in onStop()
109 Log.d(mLogTag, "onMultiWindowModeChanged: " + isInMultiWindowMode); in onMultiWindowModeChanged()
/development/samples/browseable/WearVerifyRemoteApp/Application/src/com.example.android.wearable.wear.wearverifyremoteapp/
DMainMobileActivity.java97 Log.d(TAG, "onReceiveResult: " + resultCode);
130 Log.d(TAG, "onCreate()"); in onCreate()
156 Log.d(TAG, "onPause()"); in onPause()
172 Log.d(TAG, "onResume()"); in onResume()
181 Log.d(TAG, "onConnected()"); in onConnected()
201 Log.d(TAG, "onConnectionSuspended(): connection to location client suspended: " + i); in onConnectionSuspended()
213 Log.d(TAG, "onCapabilityChanged(): " + capabilityInfo); in onCapabilityChanged()
225 Log.d(TAG, "findWearDevicesWithApp()"); in findWearDevicesWithApp()
238 Log.d(TAG, "onResult(): " + getCapabilityResult); in findWearDevicesWithApp()
246 Log.d(TAG, "Failed CapabilityApi: " + getCapabilityResult.getStatus()); in findWearDevicesWithApp()
[all …]
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DContactPhotoBinder.java67 Drawable d = mCache.get(id); in bind() local
69 if (d == null) { in bind()
80 d = new BitmapDrawable(mResources, bitmap); in bind()
82 d = mDefault; in bind()
85 d.setBounds(0, 0, mPhotoSize, mPhotoSize); in bind()
86 ((TextView) view).setCompoundDrawables(d, null, null, null); in bind()
89 mCache.put(id, d); in bind()
91 ((TextView) view).setCompoundDrawables(d, null, null, null); in bind()
/development/samples/browseable/WearVerifyRemoteApp/Wearable/src/com.example.android.wearable.wear.wearverifyremoteapp/
DMainWearActivity.java112 Log.d(TAG, "onCreate()"); in onCreate()
140 Log.d(TAG, "onPause()"); in onPause()
155 Log.d(TAG, "onResume()"); in onResume()
164 Log.d(TAG, "onConnected()"); in onConnected()
177 Log.d(TAG, "onConnectionSuspended(): connection to location client suspended: " + i); in onConnectionSuspended()
189 Log.d(TAG, "onCapabilityChanged(): " + capabilityInfo); in onCapabilityChanged()
196 Log.d(TAG, "checkIfPhoneHasApp()"); in checkIfPhoneHasApp()
208 Log.d(TAG, "onResult(): " + getCapabilityResult); in checkIfPhoneHasApp()
216 Log.d(TAG, "Failed CapabilityApi: " + getCapabilityResult.getStatus()); in checkIfPhoneHasApp()
231 Log.d(TAG, installMessage); in verifyNodeAndUpdateUI()
[all …]
/development/samples/browseable/RuntimePermissionsBasic/src/com.example.android.basicpermissions/camera/
DCameraPreview.java67 Log.d(TAG, "Camera preview started."); in surfaceCreated()
69 Log.d(TAG, "Error setting camera preview: " + e.getMessage()); in surfaceCreated()
83 Log.d(TAG, "Preview surface does not exist"); in surfaceChanged()
90 Log.d(TAG, "Preview stopped."); in surfaceChanged()
93 Log.d(TAG, "Error starting camera preview: " + e.getMessage()); in surfaceChanged()
102 Log.d(TAG, "Camera preview started."); in surfaceChanged()
104 Log.d(TAG, "Error starting camera preview: " + e.getMessage()); in surfaceChanged()
/development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/camera/
DCameraPreview.java67 Log.d(TAG, "Camera preview started."); in surfaceCreated()
69 Log.d(TAG, "Error setting camera preview: " + e.getMessage()); in surfaceCreated()
83 Log.d(TAG, "Preview surface does not exist"); in surfaceChanged()
90 Log.d(TAG, "Preview stopped."); in surfaceChanged()
93 Log.d(TAG, "Error starting camera preview: " + e.getMessage()); in surfaceChanged()
102 Log.d(TAG, "Camera preview started."); in surfaceChanged()
104 Log.d(TAG, "Error starting camera preview: " + e.getMessage()); in surfaceChanged()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DDensityActivity.java140 final BitmapDrawable d = new BitmapDrawable(getResources(), bitmap); in addBitmapDrawable() local
141 if (!scale) d.setTargetDensity(getResources().getDisplayMetrics()); in addBitmapDrawable()
142 view.setBackgroundDrawable(d); in addBitmapDrawable()
144 view.setLayoutParams(new LinearLayout.LayoutParams(d.getIntrinsicWidth(), in addBitmapDrawable()
145 d.getIntrinsicHeight())); in addBitmapDrawable()
152 final Drawable d = getResources().getDrawable(resource); in addResourceDrawable() local
153 view.setBackgroundDrawable(d); in addResourceDrawable()
155 view.setLayoutParams(new LinearLayout.LayoutParams(d.getIntrinsicWidth(), in addResourceDrawable()
156 d.getIntrinsicHeight())); in addResourceDrawable()
174 final Drawable d = getResources().getDrawable(resource); in addNinePatchResourceDrawable() local
[all …]
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
DInsecureSHA1PRNGKeyDerivator.java442 int d = arrW[HASH_OFFSET +3];
464 ( ( b & c) | ((~b) & d) ) +
466 e = d;
467 d = c;
474 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ;
475 e = d;
476 d = c;
483 temp = (( a<<5 ) | ( a>>>27 )) + ((b & c) | (b & d) | (c & d)) +
485 e = d;
486 d = c;
[all …]
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
DMusicService.java147 LogHelper.d(TAG, "onCreate"); in onCreate()
206 LogHelper.d(TAG, "onDestroy"); in onDestroy()
218 LogHelper.d(TAG, "OnGetRoot: clientPackageName=" + clientPackageName, in onGetRoot()
268 LogHelper.d(TAG, "OnLoadChildren: parentMediaId=", parentMediaId); in loadChildrenImpl()
273 LogHelper.d(TAG, "OnLoadChildren.ROOT"); in loadChildrenImpl()
285 LogHelper.d(TAG, "OnLoadChildren.GENRES"); in loadChildrenImpl()
299 LogHelper.d(TAG, "OnLoadChildren.SONGS_BY_GENRE genre=", genre); in loadChildrenImpl()
317 LogHelper.d(TAG, "OnLoadChildren sending ", mediaItems.size(), in loadChildrenImpl()
325 LogHelper.d(TAG, "play"); in onPlay()
342 LogHelper.d(TAG, "OnSkipToQueueItem:" + queueId); in onSkipToQueueItem()
[all …]
DQueueFragment.java58 LogHelper.d(TAG, "onConnected: session token ", mMediaBrowser.getSessionToken());
84 LogHelper.d(TAG, "onConnectionFailed");
89 LogHelper.d(TAG, "onConnectionSuspended");
103 LogHelper.d(TAG, "Session destroyed. Need to fetch a new Media Session");
111 LogHelper.d(TAG, "Received playback state change to state ", state.getState());
118 LogHelper.d(TAG, "onQueueChanged ", queue);
190 LogHelper.d(TAG, "onPlaybackStateChanged ", state); in onPlaybackStateChanged()
228 LogHelper.d(TAG, statusBuilder.toString()); in onPlaybackStateChanged()
240 LogHelper.d(TAG, "Queue From MediaController *** Title " + in onPlaybackStateChanged()
252 LogHelper.d(TAG, "Play button pressed, in state " + state);
[all …]
/development/samples/browseable/RuntimePermissionsWear/Wearable/src/com.example.android.wearable.runtimepermissions/
DIncomingRequestWearService.java53 Log.d(TAG, "IncomingRequestWearService()"); in IncomingRequestWearService()
59 Log.d(TAG, "onCreate()"); in onCreate()
64 Log.d(TAG, "onMessageReceived(): " + messageEvent); in onMessageReceived()
83 Log.d(TAG, "promptUserForSensorPermission()"); in promptUserForSensorPermission()
104 Log.d(TAG, "respondWithSensorInformation()"); in respondWithSensorInformation()
134 Log.d(TAG, "sendMessage(): " + dataMap); in sendMessage()
145 Log.d(TAG, "Google API Client failed to connect."); in sendMessage()
161 Log.d(TAG, "CapabilityApi failed to return any results."); in sendMessage()
180 Log.d(TAG, "Sending message failed, onResult: " + sendMessageResult.getStatus()); in sendMessage()
182 Log.d(TAG, "Message sent successfully"); in sendMessage()
[all …]
DMainWearActivity.java95 Log.d(TAG, "onCreate()"); in onCreate()
175 Log.d(TAG, "onPause()"); in onPause()
189 Log.d(TAG, "onResume()"); in onResume()
208 Log.d(TAG, "onNewIntent()"); in onNewIntent()
222 Log.d(TAG, "onEnterAmbient() " + ambientDetails); in onEnterAmbient()
244 Log.d(TAG, "onExitAmbient()"); in onExitAmbient()
266 Log.d(TAG, "onConnected()"); in onConnected()
291 Log.d(TAG, "Failed CapabilityApi result: " in onConnected()
300 Log.d(TAG, "onConnectionSuspended(): connection to location client suspended"); in onConnectionSuspended()
309 Log.d(TAG, "onCapabilityChanged(): " + capabilityInfo); in onCapabilityChanged()
[all …]
/development/samples/browseable/MultiWindowPlayground/src/com/android.multiwindowplayground/
DMainActivity.java51 Log.d(mLogTag, "** starting UnresizableActivity"); in onStartUnresizableClick()
65 Log.d(mLogTag, "** starting MinimumSizeActivity"); in onStartMinimumSizeActivity()
71 Log.d(mLogTag, "** starting AdjacentActivity"); in onStartAdjacentActivity()
86 Log.d(mLogTag, "** starting LaunchBoundsActivity"); in onStartLaunchBoundsActivity()
102 Log.d(mLogTag, "** starting BasicActivity"); in onStartBasicActivity()
111 Log.d(mLogTag, "** starting CustomConfigurationChangeActivity"); in onStartCustomConfigurationActivity()
/development/tools/repo_diff/service/repodiff/repositories/
Ddenormalizer_test.go52 d, err := repositories.NewScopedDenormalizerRepository(fakeTarget, fakeMappedTarget)
56 err = d.DenormalizeToRecentView(fixtures)
64 d, _ := repositories.NewScopedDenormalizerRepository(fakeTarget, fakeMappedTarget)
67 err := d.DenormalizeToChangesOverTime(fixtures)
74 d, _ := repositories.NewScopedDenormalizerRepository(fakeTarget, fakeMappedTarget)
88 err := d.DenormalizeToRecentCommits(
154 d, _ := repositories.NewGlobalDenormalizerRepository()
155 err = d.DenormalizeToTopCommitter()
215 d, _ := repositories.NewGlobalDenormalizerRepository()
216 err = d.DenormalizeToTopTechArea()
/development/samples/browseable/RuntimePermissionsWear/Application/src/com.example.android.wearable.runtimepermissions/
DMainPhoneActivity.java95 Log.d(TAG, "onCreate()"); in onCreate()
148 Log.d(TAG, "onPause()"); in onPause()
162 Log.d(TAG, "onResume()"); in onResume()
184 Log.d(TAG, "onActivityResult()"); in onActivityResult()
200 Log.d(TAG, "onConnected()"); in onConnected()
249 Log.d(TAG, "onConnectionSuspended(): connection to location client suspended"); in onConnectionSuspended()
259 Log.d(TAG, "onCapabilityChanged(): " + capabilityInfo); in onCapabilityChanged()
265 Log.d(TAG, "onMessageReceived(): " + messageEvent); in onMessageReceived()
307 Log.d(TAG, "Unrecognized communication type received."); in onMessageReceived()
315 Log.d(TAG, "Sending message failed, onResult: " + sendMessageResult); in onResult()
[all …]
/development/samples/ApiDemos/src/com/example/android/apis/view/
DStaticPointerIconButton.java51 Drawable d = getContext().getDrawable(R.drawable.smile); in onResolvePointerIcon() local
52 final BitmapDrawable bitmapDrawable = (BitmapDrawable) d; in onResolvePointerIcon()
53 final int hotSpotX = d.getIntrinsicWidth() / 2; in onResolvePointerIcon()
54 final int hotSpotY = d.getIntrinsicHeight() / 2; in onResolvePointerIcon()
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DDigitalWatchFaceConfigListenerService.java45 Log.d(TAG, "onMessageReceived: " + messageEvent); in onMessageReceived()
56 Log.d(TAG, "Received watch face config message: " + configKeysToOverwrite); in onMessageReceived()
79 Log.d(TAG, "onConnected: " + connectionHint); in onConnected()
86 Log.d(TAG, "onConnectionSuspended: " + cause); in onConnectionSuspended()
93 Log.d(TAG, "onConnectionFailed: " + result); in onConnectionFailed()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
DLogger.java76 public void d(String msg) { in d() method in Logger
77 Log.d(APP_TAG, getMsg(msg)); in d()
80 public void d(String msg, Throwable t) { in d() method in Logger
81 Log.d(APP_TAG, getMsg(msg), t); in d()
/development/samples/ApiDemos/src/com/example/android/apis/appwidget/
DExampleAppWidgetProvider.java53 Log.d(TAG, "onUpdate"); in onUpdate()
68 Log.d(TAG, "onDeleted"); in onDeleted()
78 Log.d(TAG, "onEnabled"); in onEnabled()
94 Log.d(TAG, "onDisabled"); in onDisabled()
104 Log.d(TAG, "updateAppWidget appWidgetId=" + appWidgetId + " titlePrefix=" + titlePrefix); in updateAppWidget()

12345678910>>...14