Searched defs:setTo (Results 1 - 6 of 6) sorted by relevance

/system/tools/hidl/utils/
H A DFqInstance.cpp65 bool FqInstance::setTo(const std::string& s) { function in class:android::FqInstance
67 if (!mFqName.setTo(s.substr(0, pos))) return false;
90 // Other cases are covered by FQName::setTo, but instance name should be empty.
94 bool FqInstance::setTo(const std::string& package, size_t majorVer, size_t minorVer, function in class:android::FqInstance
99 return setTo(ss.str());
102 bool FqInstance::setTo(size_t majorVer, size_t minorVer, const std::string& interface, function in class:android::FqInstance
104 return setTo("", majorVer, minorVer, interface, instance);
107 bool FqInstance::setTo(const std::string& interface, const std::string& instance) { function in class:android::FqInstance
108 return setTo(interface + INSTANCE_SEP + instance);
H A DFQName.cpp43 (void)setTo(s);
47 return into->setTo(s);
99 bool FQName::setTo(const std::string &s) { function in class:android::FQName
/system/core/libutils/
H A DString16.cpp128 setTo(o, len, begin);
160 void String16::setTo(const String16& other) function in class:android::String16
167 status_t String16::setTo(const String16& other, size_t len, size_t begin) function in class:android::String16
177 setTo(other);
185 return setTo(other.string()+begin, len);
188 status_t String16::setTo(const char16_t* other) function in class:android::String16
190 return setTo(other, strlen16(other));
193 status_t String16::setTo(const char16_t* other, size_t len) function in class:android::String16
217 setTo(other);
243 setTo(chr
[all...]
H A DString8.cpp245 void String8::setTo(const String8& other) function in class:android::String8
252 status_t String8::setTo(const char* other) function in class:android::String8
263 status_t String8::setTo(const char* other, size_t len) function in class:android::String8
274 status_t String8::setTo(const char16_t* other, size_t len) function in class:android::String8
285 status_t String8::setTo(const char32_t* other, size_t len) function in class:android::String8
300 setTo(other);
317 return setTo(other, otherLen);
/system/libhidl/base/
H A DHidlSupport.cpp101 void hidl_handle::setTo(native_handle_t* handle, bool shouldOwn) { function in class:android::hardware::hidl_handle
124 // 1. Somebody called setTo() with shouldOwn=true, so we know the handle
298 hidlHandle.setTo(handle, true /* shouldOwn */);
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.h212 void setTo(int r, int f=0) { function in struct:android::GGLAssembler::reg_t
225 void setTo(int r, int sz=32, int f=0) { function in struct:android::GGLAssembler::integer_t
226 reg_t::setTo(r, f); s=sz;
239 void setTo(int r, const GGLFormat* fmt, int f=0) { function in struct:android::GGLAssembler::pixel_t
240 reg_t::setTo(r, f); format = *fmt;
264 setTo( rhs.reg,
269 void setTo(int r, int lo=0, int hi=0, int f=0) { function in struct:android::GGLAssembler::component_t
270 reg_t::setTo(r, f); h=hi; l=lo;
283 void setTo(int r, int s, int f=0) { function in struct:android::GGLAssembler::pointer_t
284 reg_t::setTo(
[all...]

Completed in 3110 milliseconds