Searched refs:prefix (Results 76 - 100 of 206) sorted by relevance

123456789

/frameworks/rs/
H A DrsComponent.cpp236 void Component::dumpLOGV(const char *prefix) const {
239 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
242 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
/frameworks/support/renderscript/v8/rs_support/
H A DrsComponent.cpp236 void Component::dumpLOGV(const char *prefix) const {
239 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
242 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
/frameworks/base/core/java/android/os/
H A DLooper.java257 public void dump(Printer pw, String prefix) { argument
258 pw = PrefixPrinter.create(pw, prefix);
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py111 def makePattern(prefix, suffix, buckets, isWebUrl=False):
112 output = prefix
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java108 String prefix, Map<String, F[]> map, String packageName,
110 String eprefix = prefix + " ";
111 String fprefix = prefix + " ";
144 public boolean dump(PrintWriter out, String title, String prefix, String packageName, argument
146 String innerPrefix = prefix + " ";
147 String sepPrefix = "\n" + prefix;
148 String curPrefix = title + "\n" + prefix;
378 protected void dumpFilter(PrintWriter out, String prefix, F filter) { argument
379 out.print(prefix); out.println(filter);
405 private final int register_mime_types(F filter, String prefix) { argument
107 dumpMap(PrintWriter out, String titlePrefix, String title, String prefix, Map<String, F[]> map, String packageName, boolean printFilter) argument
436 unregister_mime_types(F filter, String prefix) argument
466 register_intent_filter(F filter, Iterator<String> i, HashMap<String, F[]> dest, String prefix) argument
482 unregister_intent_filter(F filter, Iterator<String> i, HashMap<String, F[]> dest, String prefix) argument
[all...]
H A DPreferredComponent.java204 public void dump(PrintWriter out, String prefix, Object ident) { argument
205 out.print(prefix); out.print(
212 out.print(prefix); out.println(" Selected from:");
214 out.print(prefix); out.print(" ");
/frameworks/base/services/java/com/android/server/wm/
H A DWindowAnimator.java791 public void dumpLocked(PrintWriter pw, String prefix, boolean dumpAll) { argument
792 final String subPrefix = " " + prefix;
801 pw.print(prefix); pw.print("App Animator #"); pw.print(i);
816 pw.print(prefix); pw.println("Wallpaper tokens:");
819 pw.print(prefix); pw.print("Wallpaper #"); pw.print(i);
834 pw.print(prefix); pw.print("DisplayContentsAnimator #");
874 pw.print(prefix); pw.print("mAnimTransactionSequence=");
877 pw.print(prefix); pw.print("mCurrentTime=");
879 pw.print(prefix); pw.print("mDw=");
885 pw.print(prefix); p
[all...]
/frameworks/base/core/java/android/app/
H A DWallpaperInfo.java266 public void dump(Printer pw, String prefix) { argument
267 pw.println(prefix + "Service:");
268 mService.dump(pw, prefix + " ");
269 pw.println(prefix + "mSettingsActivityName=" + mSettingsActivityName);
H A DFragmentManager.java329 * @param prefix Text to print at the front of each line.
334 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
617 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
618 String innerPrefix = prefix + " ";
624 writer.print(prefix); writer.print("Active Fragments in ");
629 writer.print(prefix); writer.print(" #"); writer.print(i);
641 writer.print(prefix); writer.println("Added Fragments:");
644 writer.print(prefix); writer.print(" #"); writer.print(i);
653 writer.print(prefix); writer.println("Fragments Created Menus:");
656 writer.print(prefix); write
[all...]
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java446 * a prefix. Each item that does not start with the supplied prefix
451 protected FilterResults performFiltering(CharSequence prefix) { argument
460 if (prefix == null || prefix.length() == 0) {
468 String prefixString = prefix.toString().toLowerCase();
H A DSimpleAdapter.java320 * a prefix. Each item that does not start with the supplied prefix
326 protected FilterResults performFiltering(CharSequence prefix) { argument
333 if (prefix == null || prefix.length() == 0) {
338 String prefixString = prefix.toString().toLowerCase();
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java417 final String prefix;
420 prefix = "DOWN";
423 prefix = "UP";
426 prefix = "MOVE";
429 prefix = "CANCEL";
432 prefix = "OUTSIDE";
437 prefix = "DOWN";
439 prefix = "MOVE";
445 prefix = "UP";
447 prefix
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.h43 sp<XMLNode> newNamespace(const String8& filename, const String16& prefix, const String16& uri) { argument
44 return new XMLNode(filename, prefix, uri, true);
153 startNamespace(void *userData, const char *prefix, const char *uri);
161 endNamespace(void *userData, const char *prefix);
/frameworks/base/tools/aidl/
H A Doptions_test.cpp39 print_array(const char* prefix, const char* const*expected) argument
42 cout << prefix << *expected << endl;
48 print_array(const char* prefix, const vector<string> &got) argument
52 cout << prefix << got[i] << endl;
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java72 * Note that it is good practice to prefix these custom names with your
367 public final T createItem(String name, String prefix, AttributeSet attrs) argument
376 prefix != null ? (prefix + name) : name);
389 + (prefix != null ? (prefix + name) : name));
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java343 public void dump(Printer pw, String prefix) { argument
344 pw.println(prefix + "mId=" + mId
346 pw.println(prefix + "mIsDefaultResId=0x"
348 pw.println(prefix + "Service:");
349 mService.dump(pw, prefix + " ");
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py243 # Extract a word following the specified prefix.
244 def _get_following_word(self, line, prefix):
245 prefix_index = line.find(prefix)
248 start_index = prefix_index + len(prefix)
255 # Extract a number following the specified prefix.
256 def _get_following_number(self, line, prefix):
257 word = self._get_following_word(line, prefix)
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java236 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
237 dump(prefix, writer, true);
240 public void dump(String prefix, PrintWriter writer, boolean full) { argument
242 writer.print(prefix); writer.print("mName="); writer.print(mName);
246 writer.print(prefix); writer.print("mTransition=#");
252 writer.print(prefix); writer.print("mEnterAnim=#");
258 writer.print(prefix); writer.print("mPopEnterAnim=#");
264 writer.print(prefix); writer.print("mBreadCrumbTitleRes=#");
270 writer.print(prefix); writer.print("mBreadCrumbShortTitleRes=#");
278 writer.print(prefix); write
[all...]
H A DFragmentManager.java321 * @param prefix Text to print at the front of each line.
326 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
599 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
600 String innerPrefix = prefix + " ";
606 writer.print(prefix); writer.print("Active Fragments in ");
611 writer.print(prefix); writer.print(" #"); writer.print(i);
623 writer.print(prefix); writer.println("Added Fragments:");
626 writer.print(prefix); writer.print(" #"); writer.print(i);
635 writer.print(prefix); writer.println("Fragments Created Menus:");
638 writer.print(prefix); write
[all...]
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_file.c222 DRM_file_listOpen(const uint16_t *prefix, argument
227 Trace("DRM_file_listOpen: %.*S", prefixLen, prefix);
229 if (convertFilename(prefix, prefixLen, tmpPathBuf1) <= 0)
237 /* find the last /, and store the offset to the leaf prefix in
276 DRM_file_listNextEntry(const uint16_t *prefix, int32_t prefixLen, argument
282 /* We stored the offset of the leaf part of the prefix (if any)
285 const uint16_t* strData = prefix + *iteration;
293 * which means *iteration characters from prefix, plus the
324 entry[idx] = prefix[idx];
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java326 void dump(PrintWriter pw, String prefix) { argument
327 pw.print(prefix); pw.print("uid="); pw.print(uid);
332 pw.print(prefix); pw.print("activity="); pw.print(key.activity);
336 pw.print(prefix); pw.print("requestCode="); pw.print(key.requestCode);
340 pw.print(prefix); pw.print("requestIntent=");
344 pw.print(prefix); pw.print("sent="); pw.print(sent);
/frameworks/native/libs/utils/
H A DString16.cpp321 bool String16::startsWith(const String16& prefix) const
323 const size_t ps = prefix.size();
325 return strzcmp16(mString, ps, prefix.string(), ps) == 0;
328 bool String16::startsWith(const char16_t* prefix) const
330 const size_t ps = strlen16(prefix);
332 return strncmp16(mString, prefix, ps) == 0;
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java503 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) { argument
504 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
506 out.print(prefix); out.print("mVisible="); out.print(mVisible);
509 out.print(prefix); out.print("mCreated="); out.print(mCreated);
513 out.print(prefix); out.print("mWidth="); out.print(mWidth);
517 out.print(prefix); out.print("mType="); out.print(mType);
522 out.print(prefix); out.print("mVisibleInsets=");
526 out.print(prefix); out.print("mConfiguration="); out.println(mConfiguration);
527 out.print(prefix); out.print("mLayout="); out.println(mLayout);
529 out.print(prefix); ou
[all...]
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java370 * @param prefix "set" or "get", depending on whether we need a setter or getter.
378 private Method getPropertyFunction(Class targetClass, String prefix, Class valueType) { argument
381 String methodName = getMethodName(prefix, mPropertyName);
418 getMethodName(prefix, mPropertyName) + "() with type " + mValueType +
432 * @param prefix "set" or "get", for the setter or getter.
438 String prefix, Class valueType) {
450 setterOrGetter = getPropertyFunction(targetClass, prefix, valueType);
722 * prefix is typically "set" or "get" and the first letter of the property name is
725 * @param prefix The precursor to the method name, before the property name begins, typically
728 * after the prefix
436 setupSetterOrGetter(Class targetClass, HashMap<Class, HashMap<String, Method>> propertyMapMap, String prefix, Class valueType) argument
733 getMethodName(String prefix, String propertyName) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java116 String prefix = rawKey.substring(0, pos);
117 BackupHelper helper = mHelpers.get(prefix);
130 Log.w(TAG, "Entity with no prefix: '" + rawKey + "'");

Completed in 3589 milliseconds

123456789