Searched defs:text (Results 1 - 10 of 10) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
H A Dno_update_pos.pass.cpp25 // of the text.
27 const char *text = "aaa\naa"; local
29 std::cregex_iterator it{text, text+6, re};
/ndk/tests/device/test-gnustl-full/unit/
H A Dostmit_test.cpp36 const char* text = "hello"; local
41 copy(text, text + 5, iter);
/ndk/tests/device/test-stlport/unit/
H A Dostmit_test.cpp36 const char* text = "hello"; local
41 copy(text, text + 5, iter);
/ndk/sources/android/support/tests/
H A Dwchar_unittest.cc76 const char* text = to_cstr(kData[n].input); local
78 TEST_TEXT << text; local
80 TEST_TEXT << text; local
102 const char* text = to_cstr(kData[n].input); local
104 TEST_TEXT << text; local
106 TEST_TEXT << text; local
128 const char* text = to_cstr(kData[n].input); local
130 TEST_TEXT << text; local
132 TEST_TEXT << text; local
154 const char* text local
156 TEST_TEXT << text; local
158 TEST_TEXT << text; local
180 const char* text = to_cstr(kData[n].input); local
182 TEST_TEXT << text; local
184 TEST_TEXT << text; local
206 const char* text = to_cstr(kData[n].input); local
208 TEST_TEXT << text; local
210 TEST_TEXT << text; local
232 const char* text = to_cstr(kData[n].input); local
234 TEST_TEXT << text; local
236 TEST_TEXT << text; local
[all...]
/ndk/sources/android/support/src/stdio/
H A Dstdio_impl.c27 void fake_file_out(FakeFILE* file, const char* text, size_t length) { argument
33 fwrite(text, 1, length, file->file);
40 (const char*)text,
46 void fake_file_outw(FakeFILE* file, const wchar_t* text, size_t length) { argument
54 size_t mb_len = wcstombs(NULL, text, length);
56 wcstombs(mb_buffer, text, length);
66 (const char*)text,
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest-printers.cc61 char text[5] = ""; local
72 GTEST_SNPRINTF_(text, sizeof(text), "%02X", obj_bytes[j]);
73 *os << text; local
/ndk/tests/build/issue20862-libpng-O0/jni/
H A Dpnginfo.h36 * cleaned up before the structure is discarded: palette, trans, text,
102 * The data in "text" is an array of pointers to uncompressed,
105 * unique, and the text string may be empty. Any number of text chunks may
109 int max_text; /* current size of text array */
110 png_textp text; /* array of comments read or comments to write */ member in struct:png_info_def
H A Dpng.h337 * that will hold years up to 65535. The other holds the date in text
628 /* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file,
630 * points to a regular zero-terminated C string. The "text" fields can be a
633 * the "text" field as a regular zero-terminated C string (possibly
652 png_charp key; /* keyword, 1-79 character description of "text" */
653 png_charp text; /* comment, may be an empty string (ie "") member in struct:png_text_struct
655 png_size_t text_length; /* length of the text string */
667 /* Supported compression types for text in PNG files (tEXt, and zTXt).
808 /* This is for text chunks */
2274 /* png_get_text also returns the number of text chunk
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dfunction.c78 subst_expand (char *o, char *text, char *subst, char *replace,
81 char *t = text;
97 the end of each word, rather than the end of the whole text. */
117 && ((p > text && !isblank ((unsigned char)p[-1]))
149 patsubst_expand (char *o, char *text, char *pattern, char *replace,
188 return subst_expand (o, text, pattern, replace,
196 while ((t = find_next_token (&text, &len)) != 0)
1520 msdos_openpipe (int* pipedes, int *pidp, char *text)
1529 while (isblank ((unsigned char)*text))
1530 ++text;
77 subst_expand(char *o, char *text, char *subst, char *replace, unsigned int slen, unsigned int rlen, int by_word) argument
147 patsubst_expand(char *o, char *text, char *pattern, char *replace, char *pattern_percent, char *replace_percent) argument
1513 msdos_openpipe(int* pipedes, int *pidp, char *text) argument
[all...]
/ndk/build/core/
H A Ddefinitions.mk1141 # LOCAL_SRC_FILES_TEXT.<filename> contains the 'text' that will be
1236 # Macro : set-src-files-text
1238 # 2: text
1239 # Usage : $(call set-src-files-text,<sources>,<text>)
1240 # Rationale: Set or replace the 'text' associated to a set of source files.
1241 # The text is a very short string that complements the build
1246 set-src-files-text = \
1250 # Macro : get-src-file-text
1252 # Usage : $(call get-src-file-text,<sourc
[all...]

Completed in 388 milliseconds