| /frameworks/av/media/libmedia/include/media/ |
| PluginMetricsReporting.h | 26 status_t reportDrmPluginMetrics(const std::string& b64EncodedMetrics,
|
| /frameworks/av/services/audiopolicy/engineconfigurable/src/ |
| Element.h | 20 #include <string> 34 Element(const std::string &name) 42 * @returns string representing the name of this policy element 44 const std::string &getName() const { return mName; } 68 * or a string. 79 * or a string. 95 std::string mName; /**< Unique literal Identifier of a policy base element*/
|
| /frameworks/base/cmds/bootanimation/ |
| audioplay.h | 21 #include <string.h>
|
| /frameworks/base/cmds/statsd/src/config/ |
| ConfigKey.h | 21 #include <string> 28 using std::string; 61 string ToString() const; 68 int64_t StrToInt64(const string& str);
|
| /frameworks/base/cmds/statsd/src/packages/ |
| UidMap.h | 33 #include <string> 60 const string package; 65 ChangeRecord(const bool isDeletion, const int64_t timestampNs, const string& package, 84 static const std::map<std::string, uint32_t> sAidToUidMapping; 97 bool hasApp(int uid, const string& packageName) const; 100 std::set<string> getAppNamesFromUid(const int32_t& uid, bool returnNormalized) const; 102 int64_t getAppVersion(int uid, const string& packageName) const; 131 std::set<string> *str_set, util::ProtoOutputStream* proto); 141 std::set<int32_t> getAppUid(const string& package) const; 144 std::set<string> getAppNamesFromUidLocked(const int32_t& uid, bool returnNormalized) const [all...] |
| /frameworks/base/core/java/android/security/keystore/recovery/ |
| X509CertificateParsingUtils.java | 32 private static final String CERT_FORMAT = "X.509"; 35 * Decodes an {@link X509Certificate} encoded as a base-64 string. 37 public static X509Certificate decodeBase64Cert(String string) throws CertificateException { 39 return decodeCert(decodeBase64(string)); 46 * Decodes a base-64 string. 48 * @throws IllegalArgumentException if not a valid base-64 string. 50 private static byte[] decodeBase64(String string) { 51 return Base64.getDecoder().decode(string); [all...] |
| /frameworks/base/core/proto/android/app/ |
| profilerinfo.proto | 31 optional string profile_file = 1; 36 optional string agent = 6;
|
| /frameworks/base/core/proto/android/content/ |
| clipdescription.proto | 29 repeated string mime_types = 1; 30 optional string label = 2 [ (.android.privacy).dest = DEST_EXPLICIT ];
|
| /frameworks/base/libs/hwui/tests/common/ |
| TestScene.h | 22 #include <string> 51 std::string name; 52 std::string description; 70 static std::unordered_map<std::string, Info>& testMap();
|
| /frameworks/base/tools/aapt/tests/ |
| TestHelper.h | 28 return stream << str.string();
|
| /frameworks/base/tools/aapt2/filter/ |
| AbiFilter.cpp | 26 std::unordered_set<std::string> abi_set; 34 bool AbiFilter::Keep(const std::string& path) { 41 if (abi_end == std::string::npos) { 47 const std::string& path_abi = path.substr(kLibPrefixLen, abi_end - kLibPrefixLen);
|
| /frameworks/base/tools/aapt2/xml/ |
| XmlUtil.h | 20 #include <string> 37 // The name of the package. This can be the empty string, which means that the package 39 std::string package; 56 Maybe<ExtractedPackage> ExtractPackageFromNamespace(const std::string& namespace_uri); 63 std::string BuildPackageNamespace(const android::StringPiece& package,
|
| /frameworks/base/tools/incident_report/ |
| generic_message.h | 21 #include <string> 51 string* str; 52 string* data; 59 void addString(int32_t fieldId, const string& value);
|
| /frameworks/base/wifi/java/android/net/wifi/p2p/ |
| WifiP2pProvDiscEvent.java | 27 private static final String TAG = "WifiP2pProvDiscEvent"; 40 public String pin; 47 * @param string formats supported include 57 public WifiP2pProvDiscEvent(String string) throws IllegalArgumentException { 58 String[] tokens = string.split(" "); 61 throw new IllegalArgumentException("Malformed event " + string); 68 else throw new IllegalArgumentException("Malformed event " + string); 79 public String toString() [all...] |
| /frameworks/compile/libbcc/lib/ |
| FileBase.h | 22 #include <string> 71 std::string mName; 106 FileBase(const std::string &pFilename, unsigned pOpenFlags, unsigned pFlags); 131 inline std::string getErrorMessage() const
|
| /frameworks/compile/mclinker/include/mcld/Script/ |
| ScriptFile.h | 16 #include <string> 78 const std::string& name() const { return m_Name; } 79 std::string& name() { return m_Name; } 85 void addEntryPoint(const std::string& pSymbol); 89 void addOutputFormatCmd(const std::string& pFormat); 90 void addOutputFormatCmd(const std::string& pDefault, 91 const std::string& pBig, 92 const std::string& pLittle); 109 void addOutputCmd(const std::string& pFileName); 112 void addSearchDirCmd(const std::string& pPath) [all...] |
| /frameworks/compile/mclinker/lib/Core/ |
| LinkerScript.cpp | 34 const std::string& LinkerScript::entry() const { 38 void LinkerScript::setEntry(const std::string& pEntry) { 46 const std::string& LinkerScript::outputFile() const { 50 void LinkerScript::setOutputFile(const std::string& pOutputFile) {
|
| /frameworks/compile/mclinker/lib/Script/ |
| OutputFormatCmd.cpp | 17 OutputFormatCmd::OutputFormatCmd(const std::string& pFormat) 22 OutputFormatCmd::OutputFormatCmd(const std::string& pDefault, 23 const std::string& pBig, 24 const std::string& pLittle)
|
| /frameworks/compile/mclinker/lib/Target/AArch64/ |
| AArch64Diagnostic.cpp | 19 const std::string& pTriple) {
|
| /frameworks/compile/mclinker/lib/Target/Hexagon/ |
| HexagonDiagnostic.cpp | 20 const std::string& pTriple) {
|
| /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/ |
| BindToFinalObservableFieldTest.java | 31 final PublicFinalWithObservableTestVo vo = new PublicFinalWithObservableTestVo(R.string.app_name); 35 assertEquals(getActivity().getResources().getString(R.string.app_name), textView.getText().toString()); 36 vo.myFinalVo.setVal(R.string.rain); 39 + " binder flags.", getActivity().getResources().getString(R.string.rain),
|
| /frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/ |
| ArraysCheckWidget.class | |
| /frameworks/minikin/tests/util/ |
| FreeTypeMinikinFontForTest.h | 31 FreeTypeMinikinFontForTest(const std::string& font_path, int index); 32 FreeTypeMinikinFontForTest(const std::string& font_path) 44 const std::string& fontPath() const { return mFontPath; } 52 const std::string mFontPath;
|
| /frameworks/native/cmds/installd/ |
| otapreopt_utils.h | 25 static inline bool ValidateTargetSlotSuffix(const std::string& input) {
|
| /frameworks/rs/rsov/compiler/ |
| RSAllocationUtils.h | 23 #include <string> 35 std::string VarName; 36 llvm::Optional<std::string> RSElementType; 53 std::string RSElementTy;
|