Searched refs:id (Results 276 - 300 of 1901) sorted by relevance

<<11121314151617181920>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDataUsageDetailView.java52 FontSizeUtils.updateFontSize(this, android.R.id.title, R.dimen.qs_data_usage_text_size);
53 FontSizeUtils.updateFontSize(this, R.id.usage_text, R.dimen.qs_data_usage_usage_text_size);
54 FontSizeUtils.updateFontSize(this, R.id.usage_carrier_text,
56 FontSizeUtils.updateFontSize(this, R.id.usage_info_top_text,
58 FontSizeUtils.updateFontSize(this, R.id.usage_period_text, R.dimen.qs_data_usage_text_size);
59 FontSizeUtils.updateFontSize(this, R.id.usage_info_bottom_text,
95 final TextView title = (TextView) findViewById(android.R.id.title);
97 final TextView usage = (TextView) findViewById(R.id.usage_text);
100 final DataUsageGraph graph = (DataUsageGraph) findViewById(R.id.usage_graph);
102 final TextView carrier = (TextView) findViewById(R.id
[all...]
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DOnePlayerActivity.java71 mStartButton = (Button) findViewById(R.id.start_button);
72 mPlayButton = (Button) findViewById(R.id.play_button);
73 mRouteButton = (Button) findViewById(R.id.route_button);
74 mStatusView = (TextView) findViewById(R.id.status);
75 mContentText = (EditText) findViewById(R.id.content);
76 mNextContentText = (EditText) findViewById(R.id.next_content);
77 mHasVideo = (CheckBox) findViewById(R.id.has_video);
78 mArtView = (ImageView) findViewById(R.id.art);
80 final Button artPicker = (Button) findViewById(R.id.art_picker);
145 case R.id
[all...]
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
H A DExpressionVisitorTest.java110 final IdentifierExpr id = (IdentifierExpr) parent;
111 assertEquals("a", id.getName());
112 assertEquals(0, id.getDependencies().size());
118 final IdentifierExpr id = parse("myStr", IdentifierExpr.class);
120 assertEquals("myStr", id.getName());
121 id.setUserDefinedType("java.lang.String");
122 assertEquals(new JavaClass(String.class), id.getResolvedType());
147 final IdentifierExpr id = (IdentifierExpr) parsed.getChild();
148 id.setUserDefinedType("java.lang.String");
155 assertSame(id, de
[all...]
/frameworks/support/percent/tests/java/android/support/percent/
H A DPercentRelativeRtlTest.java112 mPercentRelativeLayout = (PercentRelativeLayout) activity.findViewById(R.id.container);
119 onView(withId(R.id.container)).perform(
133 final View childToTest = mPercentRelativeLayout.findViewById(R.id.child_top);
162 final View childToTest = mPercentRelativeLayout.findViewById(R.id.child_start);
192 final View childToTest = mPercentRelativeLayout.findViewById(R.id.child_bottom);
223 final View childToTest = mPercentRelativeLayout.findViewById(R.id.child_end);
253 final View childToTest = mPercentRelativeLayout.findViewById(R.id.child_center);
266 ? mPercentRelativeLayout.findViewById(R.id.child_end)
267 : mPercentRelativeLayout.findViewById(R.id.child_start);
271 final View topChild = mPercentRelativeLayout.findViewById(R.id
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
H A DRecyclerViewTest.java76 view = (RecyclerView) getActivity().findViewById(R.id.clipToPaddingUndefined);
78 view = (RecyclerView) getActivity().findViewById(R.id.clipToPaddingYes);
80 view = (RecyclerView) getActivity().findViewById(R.id.clipToPaddingNo);
83 view = (RecyclerView) getActivity().findViewById(R.id.recyclerView);
94 view = (RecyclerView) getActivity().findViewById(R.id.recyclerView2);
106 view = (RecyclerView) getActivity().findViewById(R.id.recyclerView3);
113 view = (RecyclerView) getActivity().findViewById(R.id.recyclerView4);
120 view = (RecyclerView) getActivity().findViewById(R.id.recyclerView5);
124 view = (RecyclerView) getActivity().findViewById(R.id.recyclerView6);
129 view = (RecyclerView) getActivity().findViewById(R.id
[all...]
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java141 long id = intent.getExtras().getLong(DownloadManager.EXTRA_DOWNLOAD_ID);
142 Log.i(LOG_TAG, "Received Notification for download: " + id);
144 if(!mFinishedDownloads.contains(id)) {
145 mFinishedDownloads.add(id);
149 String.format("Notification for %d was already received", id));
184 * @param id id of the download to wait for.
189 public boolean waitForDownloadToFinish(long id, long timeout) throws InterruptedException { argument
192 while (!mFinishedDownloads.contains(id)) {
194 Log.i(LOG_TAG, String.format("Timeout while waiting for %d to finish", id));
358 waitForDownload(long id, long timeoutMillis) argument
373 hasDownloadFinished(long id) argument
472 waitToReceiveData(long id, long bytesToReceive) argument
484 getBytesDownloaded(long id) argument
539 getCursor(long id) argument
[all...]
/frameworks/av/include/media/
H A DAudioIoDescriptor.h50 return mPatch.sinks[0].id;
53 return mPatch.sources[0].id;
/frameworks/av/media/mtp/
H A DMtpStorageInfo.cpp28 MtpStorageInfo::MtpStorageInfo(MtpStorageID id) argument
29 : mStorageID(id),
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothHealthCallback.aidl31 ParcelFileDescriptor fd, int id);
/frameworks/base/core/java/com/android/internal/util/
H A DProgressReporter.java80 public ProgressReporter(int id) { argument
81 mId = id;
208 private void notifyStarted(int id, Bundle extras) { argument
211 mListeners.getBroadcastItem(i).onStarted(id, extras);
218 private void notifyProgress(int id, int progress, Bundle extras) { argument
221 mListeners.getBroadcastItem(i).onProgress(id, progress, extras);
228 private void notifyFinished(int id, Bundle extras) { argument
231 mListeners.getBroadcastItem(i).onFinished(id, extras);
/frameworks/base/core/tests/coretests/src/android/view/
H A DMutateDrawable.java33 ok.setId(R.id.a);
38 cancel.setId(R.id.b);
H A DMutateDrawableTest.java36 mFirstButton = getActivity().findViewById(com.android.frameworks.coretests.R.id.a);
37 mSecondButton = getActivity().findViewById(com.android.frameworks.coretests.R.id.b);
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridInHorizontal.java48 mText = (TextView) findViewById(R.id.text);
49 mGridView = (GridView) findViewById(R.id.grid);
H A DGridInVertical.java48 mText = (TextView) findViewById(R.id.text);
49 mGridView = (GridView) findViewById(R.id.grid);
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineAlignmentSpinnerButton.java41 mSpinner = activity.findViewById(R.id.reminder_value);
42 mButton = activity.findViewById(R.id.reminder_remove);
H A DFillInWrapTest.java39 mChild = activity.findViewById(R.id.data);
40 mContainer = activity.findViewById(R.id.layout);
H A DLLOfButtons1.java40 mFirstButton = (Button) findViewById(R.id.button1);
51 return (LinearLayout) findViewById(R.id.layout);
H A DLinearLayoutEditTextsTest.java40 mChild = activity.findViewById(R.id.editText1);
41 mContainer = activity.findViewById(R.id.layout);
H A DWeightSumTest.java40 mChild = activity.findViewById(R.id.child);
41 mContainer = activity.findViewById(R.id.container);
H A DWeightTest.java43 mChild = activity.findViewById(R.id.child4);
44 mContainer = activity.findViewById(R.id.layout);
/frameworks/base/media/java/android/media/
H A DAudioPatch.java59 public int id() { method in class:AudioPatch
60 return mHandle.id();
/frameworks/base/native/android/
H A Dchoreographer.cpp70 virtual void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count);
71 virtual void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected);
81 const std::thread::id mThreadId;
143 void Choreographer::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t) { argument
144 if (id != ISurfaceComposer::eDisplayIdMain) {
145 ALOGV("choreographer %p ~ ignoring vsync signal for non-main display (id=%d)", this, id);
163 void Choreographer::dispatchHotplug(nsecs_t, int32_t id, bool connected) { argument
164 ALOGV("choreographer %p ~ received hotplug event (id=%" PRId32 ", connected=%s), ignoring.",
165 this, id, toStrin
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DEmergencyCarrierArea.java40 mCarrierText = (CarrierText) findViewById(R.id.carrier_text);
41 mEmergencyButton = (EmergencyButton) findViewById(R.id.emergency_call_button);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarNavigationBarView.java43 mNavButtons = (LinearLayout) findViewById(R.id.nav_buttons);
44 mLightsOutButtons = (LinearLayout) findViewById(R.id.lights_out);
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerZenModePanel.java54 mHeaderSwitch = findViewById(R.id.tuner_zen_switch);
57 mHeaderSwitch.findViewById(com.android.internal.R.id.up).setVisibility(View.GONE);
58 ((TextView) mHeaderSwitch.findViewById(android.R.id.title)).setText(
60 mZenModePanel = (ZenModePanel) findViewById(R.id.zen_mode_panel);
62 mButtons = findViewById(R.id.tuner_zen_buttons);
63 mMoreSettings = mButtons.findViewById(android.R.id.button2);
66 mDone = mButtons.findViewById(android.R.id.button1);
130 ((Checkable) mHeaderSwitch.findViewById(android.R.id.toggle)).setChecked(zenOn);

Completed in 709 milliseconds

<<11121314151617181920>>