Searched refs:std (Results 76 - 100 of 655) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt2/
H A DMockResolver.h34 MockResolver(const std::shared_ptr<ResourceTable>& table, argument
35 const std::map<ResourceName, ResourceId>& items) :
36 mResolver(std::make_shared<ResourceTableResolver>(
37 table, std::vector<std::shared_ptr<const android::AssetManager>>())),
86 std::shared_ptr<ResourceTableResolver> mResolver;
88 std::map<ResourceName, ResourceId> mItems;
H A DLinker.h65 Linker(const std::shared_ptr<ResourceTable>& table,
66 const std::shared_ptr<IResolver>& resolver, const Options& options);
84 using ResourceNameToSourceMap = std::map<ResourceName, std::vector<SourceLine>>;
91 std::shared_ptr<IResolver> mResolver;
112 const Attribute& attr, std::unique_ptr<Item>& value);
116 std::shared_ptr<ResourceTable> mTable;
117 std::map<ResourceName, std::vector<SourceLine>> mUnresolvedSymbols;
H A DLocale.cpp65 static inline bool isAlpha(const std::string& str) {
66 return std::all_of(std::begin(str), std::end(str), ::isalpha);
69 static inline bool isNumber(const std::string& str) {
70 return std::all_of(std::begin(str), std::end(str), ::isdigit);
73 bool LocaleValue::initFromFilterString(const std::string& str) {
76 std
[all...]
H A DUtil.cpp34 static std::vector<std::string> splitAndTransform(const StringPiece& str, char sep,
35 const std::function<char(char)>& f) {
36 std::vector<std::string> parts;
37 const StringPiece::const_iterator end = std::end(str);
38 StringPiece::const_iterator start = std::begin(str);
41 current = std::find(start, end, sep);
44 std::string& part = parts.back();
45 std
[all...]
H A DUtil.h34 std::vector<std::string> split(const StringPiece& str, char sep);
35 std::vector<std::string> splitAndLowercase(const StringPiece& str, char sep);
93 Maybe<std::u16string> getFullyQualifiedClassName(const StringPiece16& package,
98 * Makes a std::unique_ptr<> with the template parameter inferred by the compiler.
102 std::unique_ptr<T> make_unique(Args&&... args) {
103 return std::unique_ptr<T>(new T{std::forward<Args>(args)...});
107 * Writes a set of items to the std
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSIsThreadablePass.cpp38 std::vector<std::string> nonThreadableFns = {
81 bool isPresent(std::vector<std::string> &list, std::string name) {
82 auto lower = std::lower_bound(list.begin(),
94 std::sort(nonThreadableFns.begin(), nonThreadableFns.end());
H A DRSScreenFunctionsPass.cpp37 std::vector<std::string> &whiteList = stubList;
39 bool isPresent(std::vector<std::string> &list, std::string name) {
40 auto lower = std::lower_bound(list.begin(),
71 std::sort(whiteList.begin(), whiteList.end());
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h48 const std::set<KEY>& conflictingKeys, int32_t priority, int32_t ownerId);
49 ClientDescriptor(KEY&& key, VALUE&& value, int32_t cost, std::set<KEY>&& conflictingKeys,
87 std::set<KEY> getConflicting() const;
102 std::set<KEY> mConflicting;
114 const std::set<KEY>& conflictingKeys, int32_t priority, int32_t ownerId) : mKey{key},
120 std::set<KEY>&& conflictingKeys, int32_t priority, int32_t ownerId) :
121 mKey{std::forward<KEY>(key)}, mValue{std::forward<VALUE>(value)}, mCost{cost},
122 mConflicting{std::forward<std
356 wouldEvict( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client) const argument
364 getIncompatibleClients( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client) const argument
372 wouldEvictLocked( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client, bool returnIncompatibleClients) const argument
465 addAndEvict( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client) argument
526 updatePriorities( const std::map<int32_t,int32_t>& ownerPriorityList) argument
582 waitUntilRemoved( const std::shared_ptr<ClientDescriptor<KEY, VALUE>> client, nsecs_t timeout) const argument
620 remove( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& value) argument
[all...]
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
H A DInputSource.h30 InputSource(const std::string &mappingValue,
35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DStrategy.h30 Strategy(const std::string &mappingValue,
35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DStream.h30 Stream(const std::string &mappingValue,
35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DUsage.h30 Usage(const std::string &mappingValue,
35 virtual bool receiveFromHW(std::string &error);
36 virtual bool sendToHW(std::string &error);
H A DVolumeProfile.h39 VolumeProfile(const std::string &mappingValue,
44 virtual bool receiveFromHW(std::string &error);
45 virtual bool sendToHW(std::string &error);
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDDirectory.h28 explicit MCLDDirectory(const std::string& pName);
39 const std::string& name() const { return m_Name; }
42 std::string m_Name;
/frameworks/compile/mclinker/include/mcld/Script/
H A DAssertCmd.h27 AssertCmd(RpnExpr& pRpnExpr, const std::string& pMessage);
36 const std::string& message() const { return m_Message; }
48 std::string m_Message;
H A DScriptFile.h48 typedef std::vector<ScriptCommand*> CommandQueue;
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
[all...]
H A DStrToken.h33 StrToken(Kind pKind, const std::string& pString);
40 const std::string& name() const { return m_Name; }
47 static StrToken* create(const std::string& pString);
53 std::string m_Name;
/frameworks/base/libs/hwui/
H A DFrameInfo.cpp23 const std::string FrameInfoNames[] = {
/frameworks/base/tools/aidl/
H A Dsearch_path.h9 using namespace std;
/frameworks/compile/libbcc/lib/Core/
H A DBCCContextImpl.cpp31 std::vector<Source *> Sources(mOwnSources.begin(), mOwnSources.end());
/frameworks/compile/libbcc/lib/Support/
H A DOutputFile.cpp27 OutputFile::OutputFile(const std::string &pFilename, unsigned pFlags)
92 new (std::nothrow) llvm::raw_fd_ostream(newfd, /* shouldClose */true);
95 mError = std::make_error_code(std::errc::not_enough_memory);
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp34 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/
H A DOutputFormatCmd.cpp17 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/
H A DAArch64Diagnostic.cpp19 const std::string& pTriple) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonDiagnostic.cpp20 const std::string& pTriple) {

Completed in 1045 milliseconds

1234567891011>>