Home
last modified time | relevance | path

Searched refs:rep (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DInstrumentationReporter.java75 final Report rep = reports.get(i); in run() local
77 if (rep.mType == REPORT_TYPE_STATUS) { in run()
78 if (DEBUG) Slog.d(TAG, "Dispatch status to " + rep.mWatcher in run()
79 + ": " + rep.mName.flattenToShortString() in run()
80 + " code=" + rep.mResultCode + " result=" + rep.mResults); in run()
81 rep.mWatcher.instrumentationStatus(rep.mName, rep.mResultCode, in run()
82 rep.mResults); in run()
84 if (DEBUG) Slog.d(TAG, "Dispatch finished to " + rep.mWatcher in run()
85 + ": " + rep.mName.flattenToShortString() in run()
86 + " code=" + rep.mResultCode + " result=" + rep.mResults); in run()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DIcon.java609 final Icon rep = new Icon(TYPE_RESOURCE); in createWithResource() local
610 rep.mInt1 = resId; in createWithResource()
611 rep.mString1 = context.getPackageName(); in createWithResource()
612 return rep; in createWithResource()
624 final Icon rep = new Icon(TYPE_RESOURCE); in createWithResource() local
625 rep.mInt1 = resId; in createWithResource()
626 rep.mString1 = res.getResourcePackageName(resId); in createWithResource()
627 return rep; in createWithResource()
639 final Icon rep = new Icon(TYPE_RESOURCE); in createWithResource() local
640 rep.mInt1 = resId; in createWithResource()
[all …]
/frameworks/wilhelm/src/android/
Dchannels.cpp95 audio_channel_representation_t rep in sles_channel_count_from_mask() local
98 if (rep == AUDIO_CHANNEL_REPRESENTATION_INDEX) { in sles_channel_count_from_mask()
101 } else if (rep == AUDIO_CHANNEL_REPRESENTATION_POSITION){ in sles_channel_count_from_mask()
174 audio_channel_representation_t rep = sles_to_audio_channel_mask_representation(mask); in sles_to_android_mask_helper() local
178 if (rep == AUDIO_CHANNEL_REPRESENTATION_INDEX) { in sles_to_android_mask_helper()
182 } else if (rep == AUDIO_CHANNEL_REPRESENTATION_POSITION){ in sles_to_android_mask_helper()
192 SL_LOGE("Unrecognized channel representation %#x", rep); in sles_to_android_mask_helper()
196 rep, in sles_to_android_mask_helper()
208 (rep == AUDIO_CHANNEL_REPRESENTATION_POSITION) ? "positional" : "indexed", in sles_to_android_mask_helper()
/frameworks/av/media/libeffects/downmix/
DEffectDownmix.cpp456 effect_param_t *rep = (effect_param_t *) pReplyData; in Downmix_Command() local
459 *(int32_t *)rep->data, rep->vsize); in Downmix_Command()
460 rep->status = Downmix_getParameter(pDownmixer, *(int32_t *)rep->data, &rep->vsize, in Downmix_Command()
461 rep->data + sizeof(int32_t)); in Downmix_Command()
462 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize; in Downmix_Command()
/frameworks/rs/script_api/
DUtilities.cpp77 string stringReplace(string s, string match, string rep) { in stringReplace() argument
84 s.insert(p, rep); in stringReplace()
DUtilities.h31 std::string stringReplace(std::string s, std::string match, std::string rep);
/frameworks/base/core/java/android/text/method/
DQwertyKeyListener.java265 String rep = getReplacement(content, x, oldStart, view); in onKeyDown() local
267 if (rep != null) { in onKeyDown()
278 content.replace(x, oldStart, rep); in onKeyDown()
/frameworks/av/media/libeffects/testlibs/
DEffectReverb.c331 effect_param_t *rep = (effect_param_t *) pReplyData; in Reverb_Command() local
333 …GV("Reverb_Command EFFECT_CMD_GET_PARAM param %d, replySize %d",*(int32_t *)rep->data, rep->vsize); in Reverb_Command()
334 rep->status = Reverb_getParameter(pReverb, *(int32_t *)rep->data, &rep->vsize, in Reverb_Command()
335 rep->data + sizeof(int32_t)); in Reverb_Command()
336 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize; in Reverb_Command()
/frameworks/av/media/codecs/m4v_h263/enc/src/
Dsad.cpp64 Int SAD_MB_PAD1(UChar *ref, UChar *cur, Int dmin, Int lx, Int *rep);
/frameworks/base/services/core/java/com/android/server/appop/
DAppOpsService.java3052 ChangeRec rep = reports.get(i); in resetAllModes() local
3055 this, cb, rep.op, rep.uid, rep.pkg)); in resetAllModes()