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

12

/ndk/sources/host-tools/sed-4.2.1/build-aux/
H A Dlink-warning.h13 # define GL_LINK_WARNING1(file, line, message) \
14 GL_LINK_WARNING2 (file, line, message) /* macroexpand file and line */
15 # define GL_LINK_WARNING2(file, line, message) \
16 GL_LINK_WARNING3 (file ":" #line ": warning: " message)
H A Dtexinfo.tex106 % starts a new line in the output.
109 % Use TeX 3.0's \inputlineno to get the line number, for better error
204 % @| inserts a changebar to the left of the current line. It should
214 % Append this vertical mode material after the current line in the output.
371 \line{\ewtop\hfil\ewtop}%
373 \line{%
380 \line\bgroup
398 \hfil\egroup % end of (centering) \line\bgroup
402 \line{%
408 \line{\ewbo
[all...]
/ndk/sources/host-tools/sed-4.2.1/testsuite/
H A Dtst-pcre.c38 char *line = NULL; local
66 if ((len = getline (&line, &line_len, f)) <= 0
67 || strncmp (line, "# PCRE", 6) != 0)
71 free (line);
77 while ((len = getline (&line, &line_len, f)) > 0)
84 if (line[len - 1] == '\n')
85 line[--len] = '\0';
87 if (line[0] == '#')
90 if (line[0] == '\0')
99 if (line[
[all...]
H A Dtst-boost.c81 char *line = NULL; local
108 while ((len = getline (&line, &line_len, f)) > 0)
113 if (line[len - 1] == '\n')
114 line[--len] = '\0';
116 puts (line);
118 if (line[0] == ';')
121 if (line[0] == '\0')
124 if (line[0] == '-')
126 if (strstr (line, "REG_BASIC"))
130 if (strstr (line, "REG_ICAS
[all...]
H A Dtst-rxspencer.c408 char *line = NULL; local
438 while ((len = getline (&line, &line_len, f)) > 0)
443 if (line[len - 1] == '\n')
444 line[len - 1] = '\0';
447 if (*line == '#' || *line == '\0')
450 puts (line);
453 pattern = strtok (line, "\t");
557 free (line);
/ndk/sources/host-tools/sed-4.2.1/sed/
H A Dexecute.c87 /* Sed operates a line at a time. */ struct
88 struct line {
89 char *text; /* Pointer to line allocated by malloc. */
100 #define SIZEOF_LINE offsetof (struct line, mbstate)
102 #define SIZEOF_LINE (sizeof (struct line))
126 /* Current input line number (over all files). */
129 /* True if we'll reset line numbers and addresses before
133 /* Function to read one line. If FP is NULL, read_fn better not
136 bool (*read_fn) P_((struct input *)); /* read one line */
158 /* The `current' input line variable in typeref:struct:line
[all...]
H A Dsed.h43 next line and the two lines are not concatenated. */
211 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file));
215 /* If set, fflush(stdout) on every line output. */
218 /* If set, don't write out the line unless explicitly told to. */
221 /* If set, reset line counts on every new file. */
230 /* How long should the `l' command's output line be? */
H A Dcompile.c79 /* This is the number of the current script line that we're compiling. */ member in struct:error_info
80 countT line;
82 /* This is the index of the "-e" expressions on the command line. */
159 "invalid usage of line address 0\0"
186 #define UNKNOWN_CMD (INVALID_LINE_0 + sizeof(N_("invalid usage of line address 0")))
211 fprintf(stderr, _("%s: file %s line %lu: %s\n"),
212 myname, cur_input.name, CAST(unsigned long)cur_input.line, why);
225 anything to read. Keep cur_input.line up to date, so error messages
244 ++cur_input.line;
256 if (ch == '\n' && cur_input.line >
[all...]
H A Dfmt.c47 optimal line length, multiplied by 10. e.g. assigning something a
48 cost of 50 means that it is as bad as a line 5 characters too short
59 /* Cost of a filled line n chars longer or shorter than best_width. */
65 /* Basic cost per line. */
68 /* Cost of breaking a line after the first word of a sentence, where
72 /* Cost of breaking a line before the last word of a sentence, where
76 /* Bonus for breaking a line at the end of a sentence. */
79 /* Cost of breaking a line after a period not marking end of a sentence.
86 /* Bonus for breaking a line before open parenthesis. */
89 /* Bonus for breaking a line afte
208 fmt(const char *line, const char *line_end, int max_length, FILE *output_file) argument
[all...]
/ndk/sources/host-tools/ndk-stack/
H A Dndk-stack-parser.h45 /* Parses a line from the ADB log output.
49 * line - ADB log output line to parse. The line must be zero-terminated, and
52 * 0 If the line has been part of the crash dump.
53 * 1 If the line has not been part of the crash dump.
54 * -1 If there was an error when parsing the line.
57 int ParseLine(NdkCrashParser* parser, const char* line);
H A Dndk-stack-parser.c67 /* Regular expression for the process ID information line. */
70 /* Regular expression for the signal information line. */
73 /* Regular expression for the frame information line. */
80 /* Parses a line representing a crash frame.
81 * This routine will try to obtain source file / line information for the
95 * line - String to matches against the regular expression.
103 static int MatchRegex(const char* line, const regex_t* regex, regmatch_t* match);
170 ParseLine(NdkCrashParser* parser, const char* line) argument
174 if (line == NULL || *line
232 MatchRegex(const char* line, const regex_t* regex, regmatch_t* match) argument
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dvariable.h113 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) \
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 variable_origin origin, int target_var));
H A Dansi2knr.c33 * --filename provides the file name for the #line directive in the output,
41 * right parenthesis as the last character on the line, and with a left
42 * brace as the first token on the following line (ignoring possible
43 * intervening comments and/or preprocessor directives), except that a line
47 * the word "void", and a line consisting of
50 * ansi2knr will recognize a multi-line header provided that no intervening
51 * line ends with a left or right brace or a semicolon. These algorithms
53 * the function name must be the first thing on the line. The following
109 on the line following a function header be a left brace,
240 char *line; local
[all...]
H A Dexpand.c34 This buffer is used to hold the variable-expansion of a line of the
109 This can happen for command-line variables, builtin variables, etc. */
199 variable_expand_string (char *line, char *string, long length)
206 if (!line)
207 line = initialize_variable_output();
210 o = line;
211 line_offset = line - variable_buffer;
419 variable_expand (char *line)
421 return variable_expand_string(NULL, line, (long)-1);
450 /* Expand LINE for FILE. Error messages refer to the file and line wher
197 variable_expand_string(char *line, char *string, long length) argument
416 variable_expand(char *line) argument
449 variable_expand_for_file(char *line, struct file *file) argument
539 allocated_variable_expand_for_file(char *line, struct file *file) argument
[all...]
H A Dread.c51 char *buffer; /* Start of the current line in the buffer. */
52 char *bufnext; /* Start of the next line in the buffer. */
117 /* The filename and pointer to line number of the
133 static int conditional_line PARAMS ((char *line, int len, const struct floc *flocp));
144 static void remove_comments PARAMS ((char *line));
504 to the next line _without_ ending any rule that we happen to be working
513 char *line;
518 /* Grab the next line to be evaluated */
526 /* If this line is empty, skip it. */
527 line
509 char *line; local
1303 remove_comments(char *line) argument
1341 char *line; local
1430 conditional_line(char *line, int len, const struct floc *flocp) argument
[all...]
H A Djob.h73 extern char **construct_command_argv PARAMS ((char *line, char **restp, struct file *file, char** batch_file));
H A Djob.c189 extern char *allocated_variable_expand_for_file PARAMS ((char *line, struct file *file));
990 /* Combine the flags parsed for the line itself with
1014 multiline define/endef scripts where only one line is marked "+". In
1016 actual line, after expansion. */
1020 /* Figure out an argument list from this command line. */
1039 command line, or `succeeded' otherwise. The exit status of 1 tells the
1056 We construct ARGV only to find the end of the command line. */
1073 /* This line has no commands. Go to the next. */
1127 /* If -n was given, recurse to get the next line in the sequence. */
1521 /* IN points to where in the line w
2199 construct_command_argv_internal(char *line, char **restp, char *shell, char *ifs, char **batch_filename_ptr) argument
2926 construct_command_argv(char *line, char **restp, struct file *file, char **batch_filename_ptr) argument
[all...]
H A Dmisc.c76 collapse_continuations (char *line)
82 in = strchr (line, '\n');
87 while (out > line && out[-1] == '\\')
97 for (p = in - 1; p >= line && *p == '\\'; --p)
121 while (out > line && isblank ((unsigned char)out[-1]))
129 /* Now copy the following line to the output.
75 collapse_continuations(char *line) argument
H A Dvariable.c158 ORIGIN specifies the origin of the variable (makefile, command line
279 would be to pre-define the target files as soon as the first line is
1099 /* Many Unix Makefiles include a line saying "SHELL=/bin/sh", but
1233 or without the -e switch, or the command line.
1242 parse_variable_definition (struct variable *v, char *line)
1245 register char *p = line;
1270 /* A colon other than := is a rule line, not a variable defn. */
1315 beg = next_token (line);
1339 or without the -e switch, or the command line.
1348 try_variable_definition (const struct floc *flocp, char *line,
1230 parse_variable_definition(struct variable *v, char *line) argument
1335 try_variable_definition(const struct floc *flocp, char *line, enum variable_origin origin, int target_var) argument
[all...]
/ndk/sources/host-tools/sed-4.2.1/doc/
H A Dsed.x6 [-l N] [--line-length=N] [-u] [--unbuffered]
54 Print the current line number.
85 Append a line read from
87 Each invocation of the command reads a line from the file.
104 last input line was read and since the last t or T
113 last input line was read and since the last t or T
147 List out the current line in a ``visually unambiguous'' form.
150 List out the current line in a ``visually unambiguous'' form,
156 Read/append the next line of input into the pattern space.
185 Write the first line o
[all...]
/ndk/sources/host-tools/make-3.81/tests/
H A Dtest_driver.pl299 # command line parsing code will...
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);
[all...]
/ndk/sources/android/cpufeatures/
H A Dcpu-features.c140 /* Look for first field occurence, and ensures it starts the line.
161 /* Find the end of the line */
167 /* Copy the line into a heap-allocated buffer */
289 cpulist_parse(CpuList* list, const char* line, int line_len) argument
291 const char* p = line;
295 /* NOTE: the input line coming from sysfs typically contains a
/ndk/tests/device/test-gnustl-full/unit/
H A Dfstream_test.cpp236 of << "line " << setiosflags(ios_base::right) << setfill('0') << setw(2) << i << "\n";
608 string line, last_line; local
610 while (getline(in, line)) {
612 last_line = line;
751 //0(1019 times)0000 //1023 characters + 1 charater for \n (for some platforms it will be a 1 ko line)
786 string line; local
792 in >> line; local
793 size_t lastStarPos = line.rfind('*');
794 CPPUNIT_ASSERT( atoi(line.substr(lastStarPos + 1).c_str()) == (*pit).second );
894 // string line;
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dfstream_test.cpp236 of << "line " << setiosflags(ios_base::right) << setfill('0') << setw(2) << i << "\n";
608 string line, last_line; local
610 while (getline(in, line)) {
612 last_line = line;
751 //0(1019 times)0000 //1023 characters + 1 charater for \n (for some platforms it will be a 1 ko line)
786 string line; local
792 in >> line; local
793 size_t lastStarPos = line.rfind('*');
794 CPPUNIT_ASSERT( atoi(line.substr(lastStarPos + 1).c_str()) == (*pit).second );
894 // string line;
[all...]
/ndk/build/core/
H A Ddefault-build-commands.mk58 # command line when generating shared libraries and executables.

Completed in 1884 milliseconds

12