Searched refs:suffix (Results 51 - 75 of 75) sorted by relevance

123

/frameworks/base/core/java/android/view/
H A DViewDebug.java1223 final String suffix = "()";
1225 exportUnrolledArray(context, out, property, array, valuePrefix, suffix);
1315 final String suffix = "";
1317 exportUnrolledArray(context, out, property, array, valuePrefix, suffix);
1351 String suffix, Object value) throws IOException {
1355 out.write(suffix);
1379 ExportedProperty property, int[] array, String prefix, String suffix)
1426 writeEntry(out, prefix, name, suffix, value);
1350 writeEntry(BufferedWriter out, String prefix, String name, String suffix, Object value) argument
1378 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
/frameworks/rs/
H A DrsScriptC.cpp263 const char *suffix, const uint8_t *bitcode,
269 f.append(suffix);
262 dumpBitcodeFile(const char *cacheDir, const char *resName, const char *suffix, const uint8_t *bitcode, size_t bitcodeLen) argument
/frameworks/base/tools/aapt2/util/
H A DUtil.h62 * Returns true if the string ends with suffix.
64 bool EndsWith(const android::StringPiece& str, const android::StringPiece& suffix);
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h266 /* Gets the path of a bugreport file with the given suffix. */
267 std::string GetPath(const std::string& suffix) const;
312 // Base name (without suffix or extensions) of the bugreport files, typically
316 // Name is the suffix part of the bugreport files - it's typically the date (when invoked with
H A Dutils.cpp255 std::string Dumpstate::GetPath(const std::string& suffix) const {
257 name_.c_str(), suffix.c_str());
/frameworks/native/libs/vr/libpdx_uds/
H A Dservice_endpoint.cpp379 const std::string suffix = "_endpoint_socket"; local
380 auto pos = channel_context.find(suffix);
382 channel_context.replace(pos, suffix.size(), "_channel_socket");
387 channel_context.c_str(), suffix.c_str());
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp201 bool FwdLockEngine::IsFileSuffixSupported(const String8& suffix) { argument
202 String8 tmp(suffix);
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java766 String suffix = new String(Arrays.copyOfRange(mPayload, 1, mPayload.length),
768 return Uri.parse(prefix + suffix);
/frameworks/ml/nn/tools/test_generator/
H A Dtest_generator.py543 suffix = "f"
547 suffix = ""
549 [str(i) + (suffix if str(i).find(".") != -1 else "") for i in v])
/frameworks/native/cmds/installd/
H A Dutils.cpp434 LOG(WARNING) << "Bad suffix character " << c << " in " << packageName;
906 int copy_and_append(dir_rec_t* dst, const dir_rec_t* src, const char* suffix) { argument
907 dst->len = src->len + strlen(suffix);
912 || snprintf(dst->path, dstSize, "%s%s", src->path, suffix)
H A DInstalldNativeService.cpp532 std::string suffix = ""; local
535 suffix = CACHE_DIR_POSTFIX;
538 suffix = CODE_CACHE_DIR_POSTFIX;
542 auto path = create_data_user_de_package_path(uuid_, userId, pkgname) + suffix;
2033 // Transform string /a/b/c.apk to (prefix)/a@b@c.apk@(suffix)
2035 static int flatten_path(const char *prefix, const char *suffix, argument
2047 const size_t len_suffix = strlen(suffix);
2057 snprintf(idmap_path, N, "%s%s%s", prefix, overlay_path + 1, suffix);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java342 final String prefix, final String suffix) {
360 if (!TextUtils.isEmpty(suffix)) {
364 builder.append(suffix);
340 constructNameFromElements(final int nameOrder, final String familyName, final String middleName, final String givenName, final String prefix, final String suffix) argument
H A DVCardEntry.java254 return String.format("family: %s, given: %s, middle: %s, prefix: %s, suffix: %s",
300 public void setSuffix(String suffix) { mSuffix = suffix; } argument
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java875 String suffix = "";
878 suffix = "_ref";
880 suffix = "_buf";
896 out.print(getJniType(argType) + " " + jfunc.getArgName(i) + suffix);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h830 static void dumpTee(int fd, const sp<NBAIO_Source>& source, audio_io_handle_t id, char suffix);
H A DAudioFlinger.cpp3264 void AudioFlinger::dumpTee(int fd, const sp<NBAIO_Source>& source, audio_io_handle_t id, char suffix) argument
3327 suffix);
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java1342 for (int suffix = 0; ; suffix++) {
1343 final String filename = (suffix == 0 ? baseName : baseName + "_" + suffix) + ".png";
H A DPackageManagerService.java683 // the suffix "LI".
9858 // The package is the stub one, remove the stub suffix to get the normal
17527 private static String getNextCodePath(String oldCodePath, String prefix, String suffix) { argument
17534 // Drop the suffix right away
17535 if (suffix != null && subStr.endsWith(suffix)) {
17536 subStr = subStr.substring(0, subStr.length() - suffix.length());
17569 String suffix = Base64.encodeToString(bytes, Base64.URL_SAFE | Base64.NO_WRAP);
17570 result = new File(targetDir, packageName + "-" + suffix);
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java5890 String suffix = "";
5892 suffix = "KB";
5896 suffix = "MB";
5900 suffix = "GB";
5904 suffix = "TB";
5908 suffix = "PB";
5912 pw.print(suffix);
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java1709 final String suffix = enable ? "add" : "remove";
1725 mConnector.execute("bandwidth", suffix + chain, uid);
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java4243 final String suffix = AudioSystem.getOutputDeviceName(device);
4244 if (suffix.isEmpty()) {
4247 return mVolumeIndexSettingName + "_" + suffix;
/frameworks/base/tools/aapt/
H A DResourceTable.cpp202 "The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\n"
5161 // increment a suffix until we succeed.
5164 int suffix = 1; local
5169 String8(resourceName).string(), suffix++);
5195 // (increment the suffix).
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java11279 final String suffix;
11281 suffix = " that is not exported from UID " + cpi.applicationInfo.uid;
11283 suffix = " requires that you obtain access using ACTION_OPEN_DOCUMENT or related APIs";
11285 suffix = " requires " + cpi.readPermission + " or " + cpi.writePermission;
11289 + ", uid=" + callingUid + ")" + suffix;
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 1075 milliseconds

123