/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | tst-pcre.c | 38 char *line = NULL; in main() local 66 if ((len = getline (&line, &line_len, f)) <= 0 in main() 67 || strncmp (line, "# PCRE", 6) != 0) in main() 71 free (line); in main() 77 while ((len = getline (&line, &line_len, f)) > 0) in main() 84 if (line[len - 1] == '\n') in main() 85 line[--len] = '\0'; in main() 87 if (line[0] == '#') in main() 90 if (line[0] == '\0') in main() 99 if (line[0] == '/') in main() [all …]
|
D | tst-boost.c | 81 char *line = NULL; in main() local 108 while ((len = getline (&line, &line_len, f)) > 0) in main() 113 if (line[len - 1] == '\n') in main() 114 line[--len] = '\0'; in main() 116 puts (line); in main() 118 if (line[0] == ';') in main() 121 if (line[0] == '\0') in main() 124 if (line[0] == '-') in main() 126 if (strstr (line, "REG_BASIC")) in main() 130 if (strstr (line, "REG_ICASE")) in main() [all …]
|
D | uniq.sed | 4 # On the last line, print and exit 14 # If the @code{N} command had added the last line, print and exit
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | execute.c | 87 struct line { struct 99 #define SIZEOF_LINE offsetof (struct line, mbstate) argument 101 #define SIZEOF_LINE (sizeof (struct line)) 158 static struct line line; variable 161 static struct line s_accum; 164 static struct line hold; 168 static struct line buffer; 204 static void resize_line P_((struct line *, size_t)); 207 struct line *lb; in resize_line() 237 static void str_append P_((struct line *, const char *, size_t)); [all …]
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | make.info-2 | 915 * The command-line options `-b' and `-m', accepted and ignored. In 999 * Pass command-line variable assignments automatically through the 1051 * Provide any goals given on the command line in the variable 1155 write each shell command line to stand on its own and not require 1184 Every Makefile should contain this line: 1200 The first line clears out the suffix list, the second introduces all 1767 # line so we notice real errors from install-info. 2039 categories, insert "category lines" among them. A category line 2042 A category line consists of a tab and a reference to a special Make 2056 If you don't use a category line at the beginning of the `install' [all …]
|
/ndk/sources/host-tools/ndk-stack/ |
D | ndk-stack-parser.c | 104 static int MatchRegex(const char* line, const regex_t* regex, regmatch_t* match); 179 ParseLine(NdkCrashParser* parser, const char* line) in ParseLine() argument 184 if (line == NULL || *line == '\0') { in ParseLine() 190 if (strstr(line, _crash_dump_header) != NULL) { in ParseLine() 205 if (strstr(line, _build_fingerprint_header) != NULL) { in ParseLine() 207 strstr(line, _build_fingerprint_header)); in ParseLine() 214 if (MatchRegex(line, &parser->re_pid_header, &match)) { in ParseLine() 215 fprintf(parser->out_handle, "%s\n", line + match.rm_so); in ParseLine() 223 if (MatchRegex(line, &parser->re_sig_header, &match)) { in ParseLine() 224 fprintf(parser->out_handle, "%s\n", line + match.rm_so); in ParseLine() [all …]
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | sed.info | 64 command-line options. 133 `sed' may be invoked with the following command-line options: 140 Print a usage message briefly summarizing these command-line 187 `--line-length=N' 188 Specify the default line-wrap length for the `l' command. A 209 separated by a carriage return _and_ a line feed character, and 212 this special processing and considering lines to end at a line 218 case, if the file that is specified on the command line is a 234 line as a single continuous long stream. This GNU `sed' extension 237 files, line numbers are relative to the start of each file, `$' [all …]
|
D | sed.x | 6 [-l N] [--line-length=N] [-u] [--unbuffered] 240 line starting with line 243 the input stream, and the address 2~5 will match every fifth line, 251 Match the last line. 274 matches the very first line of input the 296 until the next line whose input line number is a multiple of
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | logged_expectations.ipp | 92 std::string line; 94 std::getline( m_log_file, line, LINE_SEP ); 96 const_string cline( line ); 114 std::string line; 116 std::getline( m_log_file, line, LINE_SEP ); 118 const_string cline( line ); 137 std::string line; 139 std::getline( m_log_file, line, LINE_SEP ); 141 const_string cline( line ); 160 std::string line; [all …]
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
D | link-warning.h | 13 # define GL_LINK_WARNING1(file, line, message) \ argument 14 GL_LINK_WARNING2 (file, line, message) /* macroexpand file and line */ 15 # define GL_LINK_WARNING2(file, line, message) \ argument 16 GL_LINK_WARNING3 (file ":" #line ": warning: " message)
|
/ndk/sources/android/crazy_linker/src/ |
D | crazy_linker_line_reader_unittest.cpp | 37 EXPECT_MEMEQ(kFile, kFileSize, reader.line(), reader.length()); in TEST() 51 EXPECT_MEMEQ(kFile, kFileSize, reader.line(), reader.length() - 1); in TEST() 52 EXPECT_EQ('\n', reader.line()[reader.length() - 1]); in TEST() 70 EXPECT_MEMEQ("This is a multi\n", 16, reader.line(), reader.length()); in TEST() 77 reader.line(), in TEST() 86 reader.line(), in TEST()
|
D | crazy_linker_line_reader.cpp | 55 const char* line = buff_ + line_start_; in GetNextLine() local 57 ::memchr(line, '\n', buff_size_ - line_start_)); in GetNextLine() 60 line_len_ = static_cast<size_t>(line_end + 1 - line); in GetNextLine() 132 const char* LineReader::line() const { return buff_ + line_start_; } in line() function in crazy::LineReader
|
/ndk/sources/host-tools/make-3.81/ |
D | ansi2knr.c | 240 char *line; local 308 line = buf; 309 while ( fgets(line, (unsigned)(buf + bufsize - line), in) != NULL ) 311 test: line += strlen(line); 319 more = ++line; 320 f: if ( line >= buf + (bufsize - 1) ) /* overflow check */ 322 if ( fgets(line, (unsigned)(buf + bufsize - line), in) == NULL ) 334 line += strlen(line); 341 line = buf; 346 if ( line != buf + (bufsize - 1) ) /* overflow check */ [all …]
|
D | read.c | 133 static int conditional_line PARAMS ((char *line, int len, const struct floc *flocp)); 144 static void remove_comments PARAMS ((char *line)); 509 char *line; in eval() local 523 line = ebuf->buffer; in eval() 524 if (line[0] == '\0') in eval() 527 linelen = strlen (line); in eval() 531 if (line[0] == '\t') in eval() 556 bcopy (line, &commands[commands_idx], linelen); in eval() 575 strcpy (collapsed, line); in eval() 853 if (line[0] == '\t') in eval() [all …]
|
D | variable.h | 113 extern char *variable_expand PARAMS ((char *line)); 114 extern char *variable_expand_for_file PARAMS ((char *line, struct file *file)); 115 extern char *allocated_variable_expand_for_file PARAMS ((char *line, struct file *file)); 116 #define allocated_variable_expand(line) \ argument 117 allocated_variable_expand_for_file (line, (struct file *) 0) 119 extern char *variable_expand_string PARAMS ((char *line, char *string, 148 extern struct variable *parse_variable_definition PARAMS ((struct variable *v, char *line)); 149 extern struct variable *try_variable_definition PARAMS ((const struct floc *flocp, char *line, enum…
|
D | expand.c | 197 variable_expand_string (char *line, char *string, long length) in variable_expand_string() argument 204 if (!line) in variable_expand_string() 205 line = initialize_variable_output(); in variable_expand_string() 208 o = line; in variable_expand_string() 209 line_offset = line - variable_buffer; in variable_expand_string() 416 variable_expand (char *line) in variable_expand() argument 418 return variable_expand_string(NULL, line, (long)-1); in variable_expand() 449 variable_expand_for_file (char *line, struct file *file) in variable_expand_for_file() argument 455 return variable_expand (line); in variable_expand_for_file() 463 result = variable_expand (line); in variable_expand_for_file() [all …]
|
/ndk/docs/tools/ |
D | ndk-markdown-substitutions.py | 16 def process(self, line): argument 17 return self.pattern.sub(self.replacement, line) 171 for line in input_file: 173 if len(line.strip()): 174 if not re_blockquote.match(line): 176 line = f.process(line) 177 output_file.write(line)
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | test_driver.pl | 386 local($line); 390 $len = &max (length ($line), length ($testee_version), 392 $line = ("-" x $len) . "\n"; 398 &print_centered ($len, $line); 402 &print_centered ($len, $line); 544 local($line); 549 foreach $line (@moreusage) 551 print " $line\n"; 558 local($line); 562 $line = "Test Driver For $testee"; [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | assert.hpp | 42 char const * function, char const * file, long line); // user defined 71 char const * function, char const * file, long line); // user defined 98 char const * file, long line) in assertion_failed_msg() argument 103 << file << '(' << line << "): " << msg << std::endl; in assertion_failed_msg()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | origin | 14 'command line' defined on the command line 38 'undefined default environment default file command line override automatic 44 command line
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | comments | 2 ."and comment continuation to the next line using a \n" 8 ."comment to the next line using a backslash. To test whether\n" 10 ."text on the line which should never execute since it should be \n" 18 # Test comment vs semicolon parsing and line continuation
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | insert-header.sin | 3 # At each occurrence of a line starting with "msgid ", we execute the following 14 # Output the file's contents by reading the next line. But don't lose the 15 # current line while doing this.
|
/ndk/sources/host-tools/make-3.81/po/ |
D | insert-header.sin | 3 # At each occurrence of a line starting with "msgid ", we execute the following 14 # Output the file's contents by reading the next line. But don't lose the 15 # current line while doing this.
|
/ndk/sources/host-tools/ndk-stack/binutils/ |
D | addr2line.c | 141 static unsigned int line; variable 171 &line, &discriminator); in find_address_in_section() 193 &line, &discriminator); in find_offset_in_section() 299 if (line != 0) in translate_addresses() 302 printf ("%u (discriminator %u)\n", line, discriminator); in translate_addresses() 304 printf ("%u\n", line); in translate_addresses() 312 &line); in translate_addresses()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | config.h | 69 …static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) __at… 70 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) { in assert_rtn() argument 71 fprintf(stderr, "libunwind: %s %s:%d - %s\n", func, file, line, msg); in assert_rtn()
|