Searched defs:txt (Results 1 - 8 of 8) sorted by relevance

/frameworks/native/libs/utils/
H A DTextOutput.cpp122 static void textOutputPrinter(void* cookie, const char* txt) argument
124 ((TextOutput*)cookie)->print(txt, strlen(txt));
H A DBufferedTextOutput.cpp50 status_t append(const char* txt, size_t len) { argument
56 memcpy(buffer+bufferPos, txt, len);
155 status_t BufferedTextOutput::print(const char* txt, size_t len) argument
162 const char* const end = txt+len;
166 while (txt < end) {
168 const char* first = txt;
169 while (txt < end && *txt != '\n') txt++;
172 while (txt < en
[all...]
H A DDebug.cpp41 static void defaultPrintFunc(void* cookie, const char* txt) argument
43 printf("%s", txt);
/frameworks/native/opengl/tests/gl_perf/
H A Dfragment_shaders.cpp5 const char * txt; member in struct:FragmentTestRec
/frameworks/compile/slang/
H A Dslang_rs_reflection_base.cpp136 bool RSReflectionBase::writeFile(const string &filename, const vector< string > &txt) { argument
143 for(size_t ct=0; ct < txt.size(); ct++) {
144 fprintf(pfin, "%s\n", txt[ct].c_str());
/frameworks/native/libs/binder/
H A DProcessState.cpp278 void ProcessState::setArgV0(const char* txt) argument
281 strncpy((char*)mArgV[0], txt, mArgLen);
282 set_process_name(txt);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp70 static void printToLogFunc(void* cookie, const char* txt) argument
72 ALOGV("%s", txt);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1076 private void clearStyles(CharSequence txt) { argument
1080 int len = txt.length();
1081 if (txt instanceof Editable) {
1082 Editable editable = (Editable) txt;
1118 Editable txt = mEST.getText();
1119 for (int i = 0; i < txt.length(); i++) {
1120 if (txt.charAt(i) == ZEROWIDTHCHAR) {
1121 txt.replace(i, i + 1, "");
1131 Editable txt = mEST.getText();
1132 int len = txt
1321 updateSpanPreviousFromCursor(Editable txt, int start, int before, int after) argument
1374 updateSpanNextToCursor(Editable txt, int start, int before, int after) argument
1772 dumpSpannableString(CharSequence txt) argument
[all...]

Completed in 854 milliseconds