Home
last modified time | relevance | path

Searched refs:setTo (Results 1 – 9 of 9) sorted by relevance

/system/core/libutils/
DString16.cpp116 setTo(o, len, begin); in String16()
174 void String16::setTo(const String16& other) in setTo() function in android::String16
181 status_t String16::setTo(const String16& other, size_t len, size_t begin) in setTo() function in android::String16
191 setTo(other); in setTo()
199 return setTo(other.string()+begin, len); in setTo()
202 status_t String16::setTo(const char16_t* other) in setTo() function in android::String16
204 return setTo(other, strlen16(other)); in setTo()
207 status_t String16::setTo(const char16_t* other, size_t len) in setTo() function in android::String16
226 setTo(other); in append()
247 setTo(chrs, otherLen); in append()
[all …]
DString8.cpp246 void String8::setTo(const String8& other) in setTo() function in android::String8
253 status_t String8::setTo(const char* other) in setTo() function in android::String8
264 status_t String8::setTo(const char* other, size_t len) in setTo() function in android::String8
275 status_t String8::setTo(const char16_t* other, size_t len) in setTo() function in android::String8
286 status_t String8::setTo(const char32_t* other, size_t len) in setTo() function in android::String8
301 setTo(other); in append()
318 return setTo(other, otherLen); in append()
/system/core/include/utils/
DString8.h74 void setTo(const String8& other);
75 status_t setTo(const char* other);
76 status_t setTo(const char* other, size_t numChars);
77 status_t setTo(const char16_t* other, size_t numChars);
78 status_t setTo(const char32_t* other,
286 setTo(other);
292 setTo(other);
DString16.h69 void setTo(const String16& other);
70 status_t setTo(const char16_t* other);
71 status_t setTo(const char16_t* other, size_t len);
72 status_t setTo(const String16& other,
149 setTo(other);
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.h212 void setTo(int r, int f=0) {
225 void setTo(int r, int sz=32, int f=0) {
226 reg_t::setTo(r, f); s=sz;
239 void setTo(int r, const GGLFormat* fmt, int f=0) {
240 reg_t::setTo(r, f); format = *fmt;
264 setTo( rhs.reg, in component_t()
269 void setTo(int r, int lo=0, int hi=0, int f=0) {
270 reg_t::setTo(r, f); h=hi; l=lo;
283 void setTo(int r, int s, int f=0) {
284 reg_t::setTo(r, f); size=s;
DGGLAssembler.cpp243 mDstPixel.setTo(regs.obtain(), &mCbFormat); in scanline_core()
272 pixel.setTo(regs.obtain(), &mCbFormat, FIRST); in scanline_core()
359 parts.count.setTo(obtainReg()); in build_scanline_prolog()
393 parts.cbPtr.setTo(obtainReg(), cb_bits); in build_scanline_prolog()
447 parts.covPtr.setTo(obtainReg(), 16); in build_scanline_prolog()
572 mAlphaSource.setTo(fragment.reg, in build_incoming_component()
581 mAlphaSource.setTo(regs.obtain(), in build_incoming_component()
Dblending.cpp122 fb.setTo(scratches.obtain(), 32); in build_blending()
314 factor.setTo(fragment.reg, 32, CORRUPTIBLE); in build_blend_factor()
317 factor.setTo(fb.reg, 32, CORRUPTIBLE); in build_blend_factor()
320 factor.setTo(scratches.obtain(), 32, CORRUPTIBLE); in build_blend_factor()
Dtexturing.cpp130 parts.iterated.setTo(obtainReg(), in init_iterated_color()
136 parts.iterated.setTo(obtainReg(), &mCbFormat); in init_iterated_color()
182 fragment.setTo( regs.obtain(), 0, 32, CORRUPTIBLE); in build_iterated_color()
347 txPtr.setTo(obtainReg(), tmu.bits); in init_textures()
365 s.setTo(obtainReg()); in init_textures()
366 t.setTo(obtainReg()); in init_textures()
449 texel.setTo(regs.obtain(), &tmu.format); in build_textures()
620 texel.setTo(regs.obtain(), &tmu.format); in build_textures()
621 txPtr.setTo(texel.reg, tmu.bits); in build_textures()
/system/core/libutils/tests/
DString8_test.cpp77 EXPECT_EQ(NO_MEMORY, String8("").setTo(in, SIZE_MAX)); in TEST_F()