Home
last modified time | relevance | path

Searched refs:GetName (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/tools/aapt2/java/
DClassDefinition.h48 virtual const std::string& GetName() const = 0;
69 const std::string& GetName() const override { in GetName() function
103 const std::string& GetName() const override { in GetName() function
141 const std::string& GetName() const override { in GetName() function
189 const std::string& GetName() const override { in GetName() function
226 const std::string& GetName() const override { in GetName() function
DClassDefinition.cpp46 auto iter = indexed_members_.find(member->GetName()); in AddMember()
63 indexed_members_[member->GetName()] = ordered_members_.size(); in AddMember()
/frameworks/native/cmds/lshal/
DHelpCommand.h39 std::string getName() const override { return GetName(); } in getName()
40 static std::string GetName();
DLshal.cpp73 err() << std::endl << "If no command is specified, `" << ListCommand::GetName() in usage()
196 return selectCommand(ListCommand::GetName()); in selectCommand()
226 auto&& help = selectCommand(HelpCommand::GetName()); in main()
DHelpCommand.cpp24 std::string HelpCommand::GetName() { in GetName() function in android::lshal::HelpCommand
DListCommand.h65 std::string getName() const override { return GetName(); } in getName()
67 static std::string GetName();
DListCommand.cpp81 std::string ListCommand::GetName() { in GetName() function in android::lshal::ListCommand
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/
Ddescriptor.cc424 static PyObject* GetName(PyBaseDescriptor* self, void *closure) { in GetName() function
591 { "name", (getter)GetName, NULL, "Last name"},
694 static PyObject* GetName(PyBaseDescriptor *self, void *closure) { in GetName() function
889 { "name", (getter)GetName, NULL, "Unqualified name"},
984 static PyObject* GetName(PyBaseDescriptor *self, void *closure) { in GetName() function
1054 { "name", (getter)GetName, NULL, "last name"},
1128 static PyObject* GetName(PyBaseDescriptor *self, void *closure) { in GetName() function
1168 { "name", (getter)GetName, NULL, "name"},
1244 static PyObject* GetName(PyFileDescriptor *self, void *closure) { in GetName() function
1328 { "name", (getter)GetName, NULL, "name"},
[all …]
/frameworks/av/media/codec2/sfplugin/tests/
DReflectedParamUpdater_test.cpp100 template<typename T> const char *GetName() { return nullptr; } in GetName() function
101 template<> const char *GetName<C2IntInfo>() { return "int"; } in GetName() function
102 template<> const char *GetName<C2LongInfo>() { return "long"; } in GetName() function
103 template<> const char *GetName<C2StringInfo>() { return "string"; } in GetName() function
104 template<> const char *GetName<C2CompositeInfo>() { return "composite"; } in GetName() function
105 template<> const char *GetName<C2FlexStringInfo>() { return "flex-string"; } in GetName() function
112 T::PARAM_TYPE, C2ParamDescriptor::IS_PERSISTENT, GetName<T>())); in fill()
/frameworks/rs/cpp/
DBaseObj.cpp55 RS::dispatch->GetName(mRS->getContext(), mID, &name); in updateFromNative()
DrsDispatch.cpp87 dispatchTab.GetName = (GetNameFnPtr)dlsym(handle, "rsaGetName");; in loadSymbols()
187 if (dispatchTab.GetName == nullptr) { in loadSymbols()
DrsDispatch.h198 GetNameFnPtr GetName; member
/frameworks/rs/
DrsHidlAdaptation.h66 static void GetName(RsContext, void * obj, const char **name);
DrsHidlAdaptation.cpp137 mEntryFuncs.GetName = GetName; in LoadDispatchForHidl()
266 void RsHidlAdaptation::GetName(RsContext context, void * obj, const char **name) { in GetName() function in RsHidlAdaptation
DrsApiStubs.cpp274 RS_DISPATCH(ctxWrapper, GetName, obj, name); in rsaGetName()