OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:resid
(Results
126 - 150
of
482
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/cts/tests/tests/view/src/android/view/cts/
ContextThemeWrapperTest.java
39
protected void onApplyThemeResource(Theme theme, int
resid
, boolean first) {
41
super.onApplyThemeResource(theme,
resid
, first);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowToast.java
30
public static Toast makeText(Context context, int
resId
, int duration) {
31
return makeText(context, context.getResources().getString(
resId
), duration);
ShadowResources.java
223
public TypedArray obtainStyledAttributes(int
resid
, int[] attrs) throws android.content.res.Resources.NotFoundException {
233
public boolean resolveAttribute (int
resid
, TypedValue outValue, boolean resolveRefs) {
234
TypedValue foundValue = attrMap.get(
resid
);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestWindow.java
116
@Override public void setFeatureDrawableResource(int featureId, int
resId
) {
118
featureDrawableResourceResId =
resId
;
/external/strace/
scsi.c
101
tprintf("
resid
=%d, ", sg_io->
resid
);
/frameworks/base/core/java/android/inputmethodservice/
ExtractEditLayout.java
112
public void setTitle(int
resId
) {
122
public void setSubtitle(int
resId
) {
/frameworks/base/core/java/android/webkit/
DateSorter.java
76
int
resId
= com.android.internal.R.plurals.last_num_days;
77
String format = resources.getQuantityString(
resId
, NUM_DAYS_AGO);
/frameworks/opt/bitmap/src/com/android/bitmap/view/
BitmapDrawableImageView.java
90
public void setImageResource(final int
resId
) {
91
super.setImageResource(
resId
);
/frameworks/support/v4/java/android/support/v4/view/
MenuItemCompat.java
74
MenuItem setActionView(MenuItem item, int
resId
);
125
public MenuItem setActionView(MenuItem item, int
resId
) {
170
public MenuItem setActionView(MenuItem item, int
resId
) {
171
return MenuItemCompatHoneycomb.setActionView(item,
resId
);
303
* @param
resId
Layout resource to use for presenting this item to the user.
308
public static MenuItem setActionView(MenuItem item, int
resId
) {
310
return ((SupportMenuItem) item).setActionView(
resId
);
312
return IMPL.setActionView(item,
resId
);
/frameworks/volley/tests/src/com/android/volley/toolbox/
ImageRequestTest.java
88
private static byte[] readRawResource(Resources res, int
resId
) throws IOException {
89
InputStream in = res.openRawResource(
resId
);
/packages/apps/Camera/src/com/android/camera/
PreferenceInflater.java
50
public CameraPreference inflate(int
resId
) {
51
return inflate(mContext.getResources().getXml(
resId
));
/packages/apps/Camera/src/com/android/camera/ui/
PieItem.java
196
public void setImageResource(Context context, int
resId
) {
197
Drawable d = context.getResources().getDrawable(
resId
).mutate();
/packages/apps/Contacts/src/com/android/contacts/widget/
AlphaTouchInterceptorOverlay.java
52
final int
resId
= ThemeUtils.getSelectableItemBackground(context.getTheme());
53
mInterceptorLayer.setBackgroundResource(
resId
);
/packages/apps/InCallUI/src/com/android/incallui/
GlowPadWrapper.java
112
final int
resId
= getResourceIdForTarget(target);
113
switch (
resId
) {
/packages/apps/LegacyCamera/src/com/android/camera/
PreferenceInflater.java
50
public CameraPreference inflate(int
resId
) {
51
return inflate(mContext.getResources().getXml(
resId
));
/packages/apps/Settings/src/com/android/settings/notification/
VolumeSeekBarPreference.java
121
public void showIcon(int
resId
) {
125
mIconView.setImageResource(
resId
);
/packages/apps/Stk/src/com/android/stk/
ToneDialog.java
143
private void sendResponse(int
resId
) {
146
args.putInt(StkAppService.RES_ID,
resId
);
StkInputActivity.java
183
private void sendResponse(int
resId
) {
184
sendResponse(
resId
, null, false);
187
private void sendResponse(int
resId
, String input, boolean help) {
190
args.putInt(StkAppService.RES_ID,
resId
);
StkMenuActivity.java
364
private void sendResponse(int
resId
) {
365
sendResponse(
resId
, 0, false);
368
private void sendResponse(int
resId
, int itemId, boolean help) {
371
args.putInt(StkAppService.RES_ID,
resId
);
/packages/services/Telecomm/src/com/android/server/telecom/
ErrorDialogActivity.java
61
private void showGenericErrorDialog(int
resid
) {
62
final CharSequence msg = getResources().getText(
resid
);
/cts/tests/tests/media/src/android/media/cts/
MediaRandomTest.java
164
private void loadSource(int
resid
) throws Exception {
165
AssetFileDescriptor afd = mResources.openRawResourceFd(
resid
);
179
private void testPlayerRandomAction(int
resid
) throws Exception {
193
loadSource(
resid
);
/frameworks/base/core/java/android/view/
ActionMode.java
78
* @param
resId
Resource ID of a string to set as the title
83
public abstract void setTitle(int
resId
);
100
* @param
resId
Resource ID of a string to set as the subtitle
105
public abstract void setSubtitle(int
resId
);
/frameworks/base/services/core/java/com/android/server/wm/
AppTransition.java
298
+ "
resId
=0x" + (lp != null ? Integer.toHexString(lp.windowAnimations) : null));
304
int
resId
= lp.windowAnimations;
305
if ((
resId
&0xFF000000) == 0x01000000) {
310
return AttributeCache.instance().get(packageName,
resId
,
316
private AttributeCache.Entry getCachedAnimations(String packageName, int
resId
) {
318
+ packageName + "
resId
=0x" + Integer.toHexString(
resId
));
320
if ((
resId
&0xFF000000) == 0x01000000) {
325
return AttributeCache.instance().get(packageName,
resId
,
347
Animation loadAnimationRes(WindowManager.LayoutParams lp, int
resId
) {
[
all
...]
/frameworks/support/v7/appcompat/src/android/support/v7/view/
ActionMode.java
85
* @param
resId
Resource ID of a string to set as the title
90
public abstract void setTitle(int
resId
);
107
* @param
resId
Resource ID of a string to set as the subtitle
112
public abstract void setSubtitle(int
resId
);
/packages/apps/Protips/src/com/android/protips/
ProtipWidget.java
165
private void setIcon(int
resId
) {
166
mIconRes =
resId
;
220
int
resId
= context.getResources().getIdentifier(
223
updateViews.setImageViewResource(R.id.tip_callout,
resId
);
Completed in 1100 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>