Searched refs:txt (Results 1 - 25 of 25) sorted by relevance

/frameworks/uiautomator/
H A DAndroid.mk19 uiautomator_internal_api_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/ub_uiautomator_api.txt
70 $(patsubst $(uiautomator_api_dir)/%.txt,%, $(wildcard $(uiautomator_api_dir)/*.txt)) \
81 $(uiautomator_api_dir)/$(last_released_sdk_version).txt, \
84 cat $(LOCAL_PATH)/apicheck_msg_last.txt, \
98 $(uiautomator_api_dir)/current.txt, \
101 cat $(LOCAL_PATH)/apicheck_msg_current.txt, \
108 @echo Copying uiautomator current.txt
109 $(hide) $(ACP) $< $(PRIVATE_API_DIR)/current.txt
/frameworks/native/libs/binder/
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);
H A DTextOutput.cpp137 static void textOutputPrinter(void* cookie, const char* txt) argument
139 ((TextOutput*)cookie)->print(txt, strlen(txt));
H A DProcessState.cpp305 void ProcessState::setArgV0(const char* txt) argument
308 strncpy((char*)mArgV[0], txt, mArgLen);
309 set_process_name(txt);
/frameworks/base/tests/backup/
H A Dtest_restore.sh82 check_file files/file.txt "first file" || need_bug=1
83 check_file files/another_file.txt "asdf" || need_bug=1
84 #check_file files/3.txt "3" || need_bug=1
85 check_file files/empty.txt "" || need_bug=1
89 check_exists files/file_doesnt_exist.txt && need_bug=1
90 check_exists files/no_files_here.txt && need_bug=1
96 a bugreport > "$BUGREPORT_DIR/$filename.txt"
107 echo "Last 3 timestamps in 3.txt:"
108 a shell cat /data/data/com.android.backuptest/files/3.txt | tail -n 3
/frameworks/base/tools/layoutlib/create/
H A DAndroid.mk21 LOCAL_JAR_MANIFEST := manifest.txt
/frameworks/testing/uiautomator/library/
H A DAndroid.mk23 uiautomator_internal_api_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/uiautomator_api.txt
73 $(patsubst $(uiautomator_api_dir)/%.txt,%, $(wildcard $(uiautomator_api_dir)/*.txt)) \
84 $(uiautomator_api_dir)/$(last_released_sdk_version).txt, \
87 cat $(LOCAL_PATH)/apicheck_msg_last.txt, \
101 $(uiautomator_api_dir)/current.txt, \
104 cat $(LOCAL_PATH)/apicheck_msg_current.txt, \
111 @echo Copying uiautomator current.txt
112 $(hide) $(ACP) $< $(PRIVATE_API_DIR)/current.txt
/frameworks/native/include/binder/
H A DDebug.h32 typedef void (*debugPrintFunc)(void* cookie, const char* txt);
H A DBufferedTextOutput.h38 virtual status_t print(const char* txt, size_t len);
H A DProcessState.h69 void setArgV0(const char* txt);
H A DTextOutput.h37 virtual status_t print(const char* txt, size_t len) = 0;
/frameworks/native/opengl/tests/gl_perf/
H A Dfragment_shaders.cpp5 const char * txt; member in struct:FragmentTestRec
H A Dfill_common.cpp268 const char *pgmTxt = gFragmentTests[pgmNum]->txt;
/frameworks/compile/slang/
H A Dslang_rs_reflection_base.cpp142 bool RSReflectionBase::writeFile(const string &filename, const vector< string > &txt) { argument
149 for(size_t ct=0; ct < txt.size(); ct++) {
150 fprintf(pfin, "%s\n", txt[ct].c_str());
H A Dslang_rs_reflection_base.h69 bool writeFile(const std::string &filename, const std::vector< std::string > &txt);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java217 String txt = getText();
219 if (txt != null) {
221 holderForStartAndLength[1] = txt.length();
222 chars = new char[txt.length()];
223 txt.getChars(0, txt.length(), chars, 0);
/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...]
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java159 String txt = getText();
161 if (txt != null) {
163 holderForStartAndLength[1] = txt.length();
164 chars = new char[txt.length()];
165 txt.getChars(0, txt.length(), chars, 0);
/frameworks/webview/chromium/
H A DAndroid.mk33 LOCAL_JARJAR_RULES := $(CHROMIUM_PATH)/android_webview/build/jarjar-rules.txt
104 LOCAL_JAR_CHECK_WHITELIST := $(LOCAL_PATH)/jar_package_whitelist.txt
/frameworks/rs/driver/runtime/
H A Drs_core.c130 void __attribute__((overloadable)) rsDebug(const char *txt, T val) { \
131 rsDebug(txt, &val); \
/frameworks/uiautomator/tests/CtsUiAutomatorTest/src/com/android/uiautomator/tests/cts/
H A DCtsUiAutomatorTest.java1008 private UiObject getObjectByText(String txt) { argument
1009 return new UiObject(new UiSelector().text(txt));
1020 private UiObject getObjectByDescription(String txt) { argument
1021 return new UiObject(new UiSelector().description(txt));
1040 private void verifyDialogActionResults(String txt) throws UiObjectNotFoundException { argument
1041 if (!getObjectByText("Action results").exists() || !getObjectByText(txt).exists()) {
1042 throw new UiObjectNotFoundException(txt);
/frameworks/base/
H A DAndroid.mk511 -knowntags ./frameworks/base/docs/knowntags.txt \
525 -since $(SRC_API_DIR)/14.txt 14 \
526 -since $(SRC_API_DIR)/15.txt 15 \
527 -since $(SRC_API_DIR)/16.txt 16 \
528 -since $(SRC_API_DIR)/17.txt 17 \
529 -since $(SRC_API_DIR)/18.txt 18 \
530 -since $(SRC_API_DIR)/19.txt 19 \
543 frameworks/base/docs/knowntags.txt
807 -proofread $(OUT_DOCS)/$(LOCAL_MODULE)-proofread.txt \
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1056 String txt = "";
1059 txt = " (Can't stop current user)";
1062 txt = " (Unknown user " + user + ")";
1065 System.err.println("Switch failed: " + res + txt);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp69 static void printToLogFunc(void* cookie, const char* txt) argument
71 ALOGV("%s", txt);

Completed in 590 milliseconds