Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 1305) sorted by relevance

12345678910>>...53

/packages/apps/DevCamera/src/com/android/devcamera/
DCameraDeviceReport.java55 Log.v(TAG, "Number of cameras:" + cameralist.length); in printCameraSystemInfo()
72 Log.v(TAG, "============= CAMERA " + id + " INFO ============="); in printCameraInfo()
86 Log.v(TAG, "SENSOR_INFO_ACTIVE_ARRAY_SIZE: " in printCameraInfo()
89 Log.v(TAG, "SENSOR_INFO_ACTIVE_ARRAY_SIZE: null"); in printCameraInfo()
93 Log.v(TAG, "SENSOR_INFO_PIXEL_ARRAY_SIZE: " + size2.getWidth() + "x" + size2.getHeight()); in printCameraInfo()
96 Log.v(TAG, "SENSOR_INFO_PHYSICAL_SIZE: " + size3.getWidth() + "x" + size3.getHeight()); in printCameraInfo()
100 Log.v(TAG, "SENSOR_ORIENTATION: " + sensorOrientation); in printCameraInfo()
102 Log.v(TAG, "SENSOR_INFO_TIMESTAMP_SOURCE: " + in printCameraInfo()
105 Log.v(TAG, "LENS_INFO_FOCUS_DISTANCE_CALIBRATION: " + in printCameraInfo()
109 Log.v(TAG, "STATISTICS_INFO_AVAILABLE_FACE_DETECT_MODES: "); in printCameraInfo()
[all …]
DApi2Camera.java161 Log.v(TAG, "STARTUP_REQUIREMENT ImageReader initialization done."); in Api2Camera()
278 Log.v(TAG, "AF trigger"); in triggerAFScan()
283 Log.v(TAG, "run CAF"); in setCAF()
298 Log.v(TAG, " onFrameAvailable(SurfaceTexture)"); in onFrameAvailable()
339 Log.v(TAG, "Opening camera " + mCameraInfoCache.getCameraId()); in openCamera()
356 Log.v(TAG, "Closing camera " + mCameraInfoCache.getCameraId()); in closeCamera()
366 Log.v(TAG, "Done closing camera " + mCameraInfoCache.getCameraId()); in closeCamera()
370 Log.v(TAG, "STARTUP_REQUIREMENT preview Surface ready."); in startPreview()
380 Log.v(TAG, "STARTUP_REQUIREMENT Done opening camera " + mCameraInfoCache.getCameraId() +
404 Log.v(TAG, "Configuring session.."); in startCaptureSession()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationViewAdapter.java132 final ConversationViewHeader v = (ConversationViewHeader) inflater.inflate( in createView() local
134 v.setCallbacks( in createView()
136 v.setSubject(mConversation.subject); in createView()
139 v.setFolders(mConversation); in createView()
141 v.setStarred(mConversation.starred); in createView()
142 v.setTag(OVERLAY_ITEM_ROOT_TAG); in createView()
144 return v; in createView()
148 public void bindView(View v, boolean measureOnly) { in bindView() argument
149 ConversationViewHeader header = (ConversationViewHeader) v; in bindView()
182 final ConversationFooterView v = (ConversationFooterView) in createView() local
[all …]
/packages/apps/CellBroadcastReceiver/tests/testapp/src/com/android/cellbroadcastreceiver/tests/
DSendTestBroadcastActivity.java105 public void onClick(View v) { in onCreate()
106 if (mDelayBeforeSending && v != null) { in onCreate()
119 public void onClick(View v) { in onCreate()
120 if (mDelayBeforeSending && v != null) { in onCreate()
134 public void onClick(View v) { in onCreate()
135 if (mDelayBeforeSending && v != null) { in onCreate()
148 public void onClick(View v) { in onCreate()
149 if (mDelayBeforeSending && v != null) { in onCreate()
162 public void onClick(View v) { in onCreate()
163 if (mDelayBeforeSending && v != null) { in onCreate()
[all …]
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/
DHvacTestFragment.java187 View v = inflater.inflate(R.layout.hvac_test, container, false); in onCreateView() local
206 configureOutsideTemp(v, prop); in onCreateView()
209 configureDualOn(v, prop); in onCreateView()
212 configureAcOn(v, prop); in onCreateView()
215 configureFanPosition(v, prop); in onCreateView()
218 configureFanSpeed(v, prop); in onCreateView()
221 configureTempSetpoint(v, prop); in onCreateView()
224 configureAutoModeOn(v, prop); in onCreateView()
227 configureRecircOn(v, prop); in onCreateView()
230 configureMaxAcOn(v, prop); in onCreateView()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/
DFocusHelper.java36 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
37 return FocusHelper.handleIconKeyEvent(v, keyCode, event); in onKey()
46 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
47 return FocusHelper.handleHotseatButtonKeyEvent(v, keyCode, event); in onKey()
56 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
62 return FocusHelper.handleIconKeyEvent(v, keyCode, event); in onKey()
85 public boolean onKey(View v, int keyCode, KeyEvent e) { in onKey() argument
91 Log.v(TAG, String.format("Handle ALL Folders keyevent=[%s].", in onKey()
95 if (!(v.getParent() instanceof ShortcutAndWidgetContainer)) { in onKey()
104 … final ShortcutAndWidgetContainer itemContainer = (ShortcutAndWidgetContainer) v.getParent(); in onKey()
[all …]
/packages/apps/Launcher2/src/com/android/launcher2/
DHideFromAccessibilityHelper.java35 public void setImportantForAccessibilityToNo(View v, boolean onlyAllApps) { in setImportantForAccessibilityToNo() argument
37 setImportantForAccessibilityToNoHelper(v); in setImportantForAccessibilityToNo()
41 private void setImportantForAccessibilityToNoHelper(View v) { in setImportantForAccessibilityToNoHelper() argument
42 mPreviousValues.put(v, v.getImportantForAccessibility()); in setImportantForAccessibilityToNoHelper()
43 v.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO); in setImportantForAccessibilityToNoHelper()
46 if (v instanceof ViewGroup) { in setImportantForAccessibilityToNoHelper()
47 ViewGroup vg = (ViewGroup) v; in setImportantForAccessibilityToNoHelper()
59 public void restoreImportantForAccessibility(View v) { in restoreImportantForAccessibility() argument
61 restoreImportantForAccessibilityHelper(v); in restoreImportantForAccessibility()
66 private void restoreImportantForAccessibilityHelper(View v) { in restoreImportantForAccessibilityHelper() argument
[all …]
DFocusHelper.java37 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
38 return FocusHelper.handleIconKeyEvent(v, keyCode, event); in onKey()
46 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
47 return FocusHelper.handleFolderKeyEvent(v, keyCode, event); in onKey()
55 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
56 final Configuration configuration = v.getResources().getConfiguration(); in onKey()
57 … return FocusHelper.handleHotseatButtonKeyEvent(v, keyCode, event, configuration.orientation); in onKey()
66 public boolean onKey(View v, int keyCode, KeyEvent event) { in onKey() argument
67 return FocusHelper.handleAppsCustomizeTabKeyEvent(v, keyCode, event); in onKey()
75 private static TabHost findTabHostParent(View v) { in findTabHostParent() argument
[all …]
/packages/apps/DocumentsUI/src/com/android/documentsui/
DItemDragListener.java65 public boolean onDrag(final View v, DragEvent event) { in onDrag() argument
70 handleEnteredEvent(v, event); in onDrag()
73 handleLocationEvent(v, event.getX(), event.getY()); in onDrag()
76 mDragHost.onDragExited(v, event.getLocalState()); in onDrag()
79 handleExitedEndedEvent(v, event); in onDrag()
82 return handleDropEvent(v, event); in onDrag()
88 private void handleEnteredEvent(View v, DragEvent event) { in handleEnteredEvent() argument
89 mDragHost.onDragEntered(v, event.getLocalState()); in handleEnteredEvent()
90 @Nullable TimerTask task = createOpenTask(v, event); in handleEnteredEvent()
91 mDragHost.setDropTargetHighlight(v, event.getLocalState(), true); in handleEnteredEvent()
[all …]
/packages/experimental/DreamTheater/src/com/android/dreamtheater/
DBouncyDroid.java60 public Vec add(Vec v) { in add() argument
61 return new Vec(x + v.x, y + v.y); in add()
66 public Vec sub(Vec v) { in sub() argument
67 return new Vec(x - v.x, y - v.y); in sub()
83 Vec v = new Vec(); field in BouncyDroid.BouncyView.World.Body
103 p = p.add(v.mul(dt)); in step()
105 v = v.add(f.mul(dt/m)); in step()
109 v = v.add(f.mul(dt/m)); in step()
113 return "Body(m=" + m + " p=" + p + " v=" + v + ")"; in toString()
166 public void onClick(View v) { in BouncyView()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DScrollAdapterView.java267 ExpandedView v = mExpandedViews.get(i); in saveVisibleViewsUnchecked() local
268 saveViewUnchecked(v.expandedView, v.index); in saveVisibleViewsUnchecked()
364 ExpandedView(View v, int i, int t) { in ExpandedView() argument
365 expandedView = v; in ExpandedView()
552 ExpandedView v = mExpandedViews.get(i);
553 v.close();
554 removeViewInLayout(v.expandedView);
555 mRecycleExpandedViews.recycleView(v.expandedView, v.viewType);
1013 ExpandedView v = findExpandedView(mExpandedViews, getAdapterIndex(expandableViewIndex));
1014 if (v != null && v.expandedView.hasFocus()) {
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
DActionAdapter.java273 private void changeFocus(View v, boolean hasFocus, boolean shouldAnimate) { in changeFocus() argument
274 if (v == null) { in changeFocus()
277 Action action = (Action) v.getTag(R.id.action_title); in changeFocus()
286 TextView title = (TextView) v.findViewById(R.id.action_title); in changeFocus()
289 TextView description = (TextView) v.findViewById(R.id.action_description); in changeFocus()
292 ImageView checkmark = (ImageView) v.findViewById(R.id.action_checkmark); in changeFocus()
295 ImageView icon = (ImageView) v.findViewById(R.id.action_icon); in changeFocus()
298 View chevronBackground = v.findViewById(R.id.action_next_chevron_background); in changeFocus()
303 mOnFocusListener.onActionFocused((Action) v.getTag(R.id.action_title)); in changeFocus()
334 public void onClick(View v) { in onClick() argument
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppService.java101 if (V) Log.v(TAG, "ContentObserver received notification"); in onChange()
163 if (V) Log.v(TAG, "onCreate"); in create()
194 if (V) Log.v(TAG, "start()"); in start()
208 if (V) Log.v(TAG, "Starting RfcommListener"); in startListener()
270 if (V) Log.v(TAG, "Update mInfo.id " + msg.arg1 + " for data uri= "
284 Log.v(TAG, "Update mInfo.id " + msg.arg1 + " for MEDIA_SCANNED_FAILED");
374 if (V) Log.v(TAG, "onDestroy"); in cleanup()
406 if (V) Log.v(TAG, "Bluetooth state changed: STATE_ON");
431 if (V) Log.v(TAG, "Bluetooth state changed: STATE_TURNING_OFF");
475 if (V) Log.v(TAG, "pendingUpdate is " + mPendingUpdate + " keepUpdateThread is " in run()
[all …]
DBluetoothOppTransfer.java123 Log.v(TAG, "Device :" + device + "- OPP device: " + mBatch.mDestination in onReceive()
130 Log.v(TAG, "ACTION_ACL_DISCONNECTED to be processed for batch: " in onReceive()
219 if (V) Log.v(TAG, "receive TRANSPORT_ERROR msg"); in handleMessage()
230 if (V) Log.v(TAG, "Transfer receive TRANSPORT_CONNECTED msg"); in handleMessage()
245 if (V) Log.v(TAG, "receive MSG_SHARE_COMPLETE for info " + info.mId); in handleMessage()
251 if (V) Log.v(TAG, "continue session for info " + mCurrentShare.mId + in handleMessage()
256 if (V) Log.v(TAG, "Batch " + mBatch.mId + " is done"); in handleMessage()
268 if (V) Log.v(TAG, "receive MSG_SESSION_COMPLETE for batch " + mBatch.mId); in handleMessage()
278 if (V) Log.v(TAG, "receive MSG_SESSION_ERROR for batch " + mBatch.mId); in handleMessage()
295 if (V) Log.v(TAG, "receive MSG_SHARE_INTERRUPTED for batch " + mBatch.mId); in handleMessage()
[all …]
/packages/apps/Calendar/src/com/android/calendar/month/
DMonthByWeekAdapter.java192 MonthWeekEventsView v; in getView() local
198 v = (MonthWeekEventsView) convertView; in getView()
201 if (mAnimateToday && v.updateToday(mSelectedDay.timezone)) { in getView()
213 v = new MonthWeekEventsView(mContext); in getView()
216 drawingParams = (HashMap<String, Integer>) v.getTag(); in getView()
219 v = new MonthWeekEventsView(mContext); in getView()
226 v.setLayoutParams(params); in getView()
227 v.setClickable(true); in getView()
228 v.setOnTouchListener(this); in getView()
250 v.setWeekParams(drawingParams, mSelectedDay.timezone); in getView()
[all …]
/packages/apps/Car/Media/src/com/android/car/media/
DMediaPlaybackFragment.java168 View v = inflater.inflate(R.layout.now_playing_screen, container, false); in onCreateView() local
169 mTitleView = (TextView) v.findViewById(R.id.title); in onCreateView()
170 mArtistView = (TextView) v.findViewById(R.id.artist); in onCreateView()
171 mSeekBar = (SeekBar) v.findViewById(R.id.seek_bar); in onCreateView()
175 public boolean onTouch(View v, MotionEvent event) { in onCreateView()
180 mControlsView = (LinearLayout) v.findViewById(R.id.controls); in onCreateView()
181 mPlayQueueButton = (ImageButton) v.findViewById(R.id.play_queue); in onCreateView()
182 mPrevButton = (ImageButton) v.findViewById(R.id.prev); in onCreateView()
183 mPlayPauseStopButton = (PlayPauseStopImageView) v.findViewById(R.id.play_pause); in onCreateView()
184 mNextButton = (ImageButton) v.findViewById(R.id.next); in onCreateView()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderPagedView.java275 public void removeItem(View v) { in removeItem() argument
277 getPageAt(i).removeView(v); in removeItem()
319 View v = list.size() > i ? list.get(i) : null; in arrangeChildren() local
330 if (v != null) { in arrangeChildren()
331 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) v.getLayoutParams(); in arrangeChildren()
334 ItemInfo info = (ItemInfo) v.getTag(); in arrangeChildren()
347 v, -1, mFolder.mLauncher.getViewIdForItem(info), lp, true); in arrangeChildren()
349 if (rank < FolderIcon.NUM_ITEMS_IN_PREVIEW && v instanceof BubbleTextView) { in arrangeChildren()
350 ((BubbleTextView) v).verifyHighRes(); in arrangeChildren()
449 View v = page.getChildAt(i, j); in iterateOverItems() local
[all …]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DTextCandidates1LineViewManager.java157 public void onClick(View v) {
158 if (!v.isShown()) {
163 if (v instanceof CandidateTextView) {
164 CandidateTextView text = (CandidateTextView)v;
175 public boolean onLongClick(View v) {
176 if (!v.isShown()) {
186 int wordcount = ((TextView)v).getId();
189 displayDialog(v, mWord);
237 public boolean onTouch(View v, MotionEvent event) { in initView()
257 public void onClick(View v) { in initView()
[all …]
/packages/apps/Settings/tests/app/src/com/android/settings/vpn2/
DVpnTests.java119 Log.v(TAG, "print out the vpn profiles"); in setUp()
134 Log.v(TAG, "disconnect legacy VPN"); in setUp()
142 Log.v(TAG, "Wait for legacy VPN to be disconnected."); in setUp()
160 Log.v(TAG, "profile: "); in printVpnProfile()
161 Log.v(TAG, "key: " + profile.key); in printVpnProfile()
162 Log.v(TAG, "name: " + profile.name); in printVpnProfile()
163 Log.v(TAG, "type: " + profile.type); in printVpnProfile()
164 Log.v(TAG, "server: " + profile.server); in printVpnProfile()
165 Log.v(TAG, "username: " + profile.username); in printVpnProfile()
166 Log.v(TAG, "password: " + profile.password); in printVpnProfile()
[all …]
/packages/apps/LegacyCamera/src/com/android/camera/
DEffectsRecorder.java138 if (mLogVerbose) Log.v(TAG, "EffectsRecorder created (" + this + ")"); in EffectsRecorder()
244 if (mLogVerbose) Log.v(TAG, "Setting time lapse capture rate to " + fps + " fps"); in setCaptureRate()
251 if (mLogVerbose) Log.v(TAG, "setPreviewDisplay (" + this + ")"); in setPreviewDisplay()
277 if (mLogVerbose) Log.v(TAG, in setEffect()
350 if (mLogVerbose) Log.v(TAG, "Setting orientation hint to: " + degrees); in setOrientationHint()
407 Log.v(TAG, "Effects framework initializing. Recording size " in initializeFilterFramework()
433 Log.v(TAG, "Effect initializing. Preview size " in initializeEffect()
465 Log.v(TAG, "New runner: " + mRunner in initializeEffect()
499 if (mLogVerbose) Log.v(TAG, "Setting the background to be mirrored"); in initializeEffect()
510 if (mLogVerbose) Log.v(TAG, "Starting preview (" + this + ")"); in startPreview()
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dpointer.h389 ValueType* v = &root; variable
392 if (v->IsArray() && t->name[0] == '-' && t->length == 1) {
393 v->PushBack(Value().Move(), allocator);
394 v = &((*v)[v->Size() - 1]);
399 if (!v->IsObject())
400 v->SetObject(); // Change to Object
403 if (!v->IsArray() && !v->IsObject())
404 v->SetArray(); // Change to Array
407 if (v->IsArray()) {
408 if (t->index >= v->Size()) {
[all …]
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/preprovisioning/
DPreProvisioningActivityTest.java83 CustomizationVerifier v = new CustomizationVerifier(activity); in profileOwnerDefaultColors() local
84 v.assertStatusBarColorCorrect(activity.getColor(DEFAULT_COLOR_ID_MP)); in profileOwnerDefaultColors()
85 v.assertSwiperColorCorrect(activity.getColor(DEFAULT_COLOR_ID_SWIPER)); in profileOwnerDefaultColors()
86 v.assertNextButtonColorCorrect(activity.getColor(DEFAULT_COLOR_ID_BUTTON)); in profileOwnerDefaultColors()
93 CustomizationVerifier v = new CustomizationVerifier(activity); in profileOwnerCustomColors() local
94 v.assertStatusBarColorCorrect(SAMPLE_COLOR); in profileOwnerCustomColors()
95 v.assertSwiperColorCorrect(SAMPLE_COLOR); in profileOwnerCustomColors()
96 v.assertNextButtonColorCorrect(SAMPLE_COLOR); in profileOwnerCustomColors()
103 CustomizationVerifier v = new CustomizationVerifier(activity); in deviceOwnerDefaultColorsAndLogo() local
105 v.assertStatusBarColorCorrect(color); in deviceOwnerDefaultColorsAndLogo()
[all …]
/packages/apps/PackageInstaller/src/android/support/wearable/view/
DWearableListView.java165 public void onLayoutChange(View v, int left, int top, int right, int bottom,
644 private static int getCenterYPos(View v) { in getCenterYPos() argument
645 return v.getTop() + v.getPaddingTop() + getAdjustedHeight(v) / 2; in getCenterYPos()
765 private static int getAdjustedHeight(View v) { in getAdjustedHeight() argument
766 return v.getHeight() - v.getPaddingBottom() - v.getPaddingTop(); in getAdjustedHeight()
975 View v = recycler.getViewForPosition(getFirstPosition()); in performLayoutOneChild() local
976 addView(v, 0); in performLayoutOneChild()
977 measureZoomView(v); in performLayoutOneChild()
978 v.layout(getPaddingLeft(), getPaddingTop(), right, parentBottom); in performLayoutOneChild()
993 View v = recycler.getViewForPosition(getFirstPosition() + i); in performLayoutMultipleChildren() local
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapService.java127 if (VERBOSE) Log.v(TAG, "Sap Service startRfcommSocketListener"); in startRfcommSocketListener()
137 if (VERBOSE) Log.v(TAG, "Sap Service initSocket"); in initSocket()
169 if (VERBOSE) Log.v(TAG, "wait 300 ms"); in initSocket()
180 if (VERBOSE) Log.v(TAG, "Succeed to create listening socket "); in initSocket()
212 if (VERBOSE) Log.v(TAG, "SAP Service closeService in"); in closeService()
237 if (VERBOSE) Log.v(TAG, "SAP Service closeService out"); in closeService()
241 if (VERBOSE) Log.v(TAG, "Sap Service startSapServerSession"); in startSapServerSession()
264 Log.v(TAG, "startSapServerSession() success!"); in startSapServerSession()
272 if (VERBOSE) Log.v(TAG, "SAP Service stopSapServerSession"); in stopSapServerSession()
313 if (VERBOSE) Log.v(TAG, "Accepting socket connection..."); in run()
[all …]
/packages/services/Telephony/src/com/android/phone/
DEmergencyActionGroup.java221 public void onClick(View v) { in onClick() argument
222 Intent intent = (Intent) v.getTag(R.id.tag_intent); in onClick()
224 switch (v.getId()) { in onClick()
231 revealTheButton(v); in onClick()
242 private void revealTheButton(View v) { in revealTheButton() argument
244 int centerX = v.getLeft() + v.getWidth() / 2; in revealTheButton()
245 int centerY = v.getTop() + v.getHeight() / 2; in revealTheButton()
255 animateHintText(mSelectedLabel, v, reveal); in revealTheButton()
256 animateHintText(mLaunchHint, v, reveal); in revealTheButton()
258 mSelectedLabel.setText(((Button) v).getText()); in revealTheButton()
[all …]

12345678910>>...53