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

/frameworks/native/libs/binder/
H A DTextOutput.cpp137 static void textOutputPrinter(void* cookie, const char* txt) argument
139 ((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/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 3872 milliseconds