/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
bytecode.h | 210 /** Line number where bytecode was defined. */ 211 unsigned long line; member in struct:yasm_bytecode 234 * \param line virtual line (from yasm_linemap) 240 /*@only@*/ /*@null@*/ void *contents, unsigned long line); 305 * \param line virtual line (from yasm_linemap) 311 /*@null@*/ yasm_arch *arch, unsigned long line); 316 * \param line virtual line (from yasm_linemap [all...] |
expr.h | 72 unsigned long line; /**< Line number where expression was defined. */ member in struct:yasm_expr 86 * \param line virtual line (where expression defined) 92 /*@only@*/ /*@null@*/ yasm_expr__item *b, unsigned long line); 140 * \param i line index 149 * \param i line index 157 * \param i line index
|
linemap.c | 2 * YASM assembler virtual line mapping handling (for parse stage) 37 /* monotonically increasing virtual line */ 38 unsigned long line; member in struct:line_mapping 43 /* "original" source base line number */ 45 /* "original" source line number increment (for following lines) */ 50 /* first bytecode on line; NULL if no bytecodes on line */ 53 /* source code line */ 61 /* Current virtual line number. */ 64 /* Mappings from virtual to physical line numbers * 144 unsigned long line; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/ |
nasm-listfmt.c | 148 unsigned long line = 1; local 163 while (!yasm_linemap_get_source(linemap, line, &bc, &source)) { 202 /* loop over bytecodes on this line (usually only one) */ 203 while (bc && bc->line == line) { 281 line++;
|
/external/chromium_org/ui/views/controls/ |
styled_label.cc | 20 // Calculates the height of a line of text. Currently returns the height of 159 // The index of the line we're on. 160 int line = 0; local 161 // The x position (in pixels) of the line we're on, relative to content 171 // Don't put whitespace at beginning of a line with an exception for the 172 // first line (so the text's leading whitespace is respected). 173 if (x == 0 && line > 0) 202 // Nothing fits on this line. Start a new line. 203 // If x is 0, first line may have leading whitespace that doesn't fit in [all...] |
/external/chromium_org/v8/src/ |
allocation-tracker.h | 91 int line; member in struct:v8::internal::AllocationTracker::FunctionInfo
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer.h | 39 int line; member in struct:__sanitizer::AddressInfo
|
/external/dropbear/ |
loginrec.h | 133 char line[LINFO_LINESIZE]; /* tty/pty name */ member in struct:logininfo 154 const char *hostname, const char *line); 159 const char *hostname, const char *line); 180 /* produce various forms of the line filename */
|
/external/e2fsprogs/util/ |
subst.c | 121 static void substitute_line(char *line) 131 ptr = line; 176 ptr = line; 211 char line[2048]; local 215 memset(line, 0, sizeof(line)); 216 if (fgets(line, sizeof(line), f) == NULL) 221 cp = strchr(line, '\n'); 224 cp = strchr(line, '#'); 306 char line[2048]; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
GenerateExcludeListTask.java | 67 String line; 68 while ((line = r.readLine()) != null) { 69 int start = line.lastIndexOf('/'); 70 int lastcomma = line.lastIndexOf(','); 71 int end = line.length(); 75 int lastzip = line.lastIndexOf(".zip"); 77 String rstring = line.substring(0, lastzip); 78 line = rstring + ".jar"; 81 String substr = line.substring(start + 1, end); 94 String line; local [all...] |
/external/eigen/scripts/ |
eigen_gen_credits.cpp | 11 // this function takes a line that may contain a name and/or email address, 13 std::string contributor_name(const std::string& line) 19 if(line.find("markb@localhost.localdomain") != string::npos) 24 if(line.find("kayhman@contact.intra.cea.fr") != string::npos) 35 size_t position_of_email_address = line.find_first_of('<'); 41 if(line.find("hauke.heibel") != string::npos) 46 result = line.substr(0, position_of_email_address); 53 if(line.find("convert-repo") != string::npos) 56 result = line; 71 string line; local 135 string line; local [all...] |
/external/elfutils/libdwfl/ |
linux-proc-maps.c | 151 char *line = NULL; local 154 while ((len = getline (&line, &linesz, f)) > 0) 156 if (line[len - 1] == '\n') 157 line[len - 1] = '\0'; 163 if (sscanf (line, "%" PRIx64 "-%" PRIx64 " %*s %" PRIx64 168 free (line); 179 free (line); 191 char *file = line + nread + strspn (line + nread, " \t"); 193 /* This line doesn't indicate a file mapping. * [all...] |
/external/elfutils/tests/ |
dwflmodtest.c | 126 int line = -1; local 127 dwarf_decl_line (func, &line); 130 printf (" %s:%d: %s:", file, line, fct);
|
/external/freetype/src/smooth/ |
ftsmooth.c | 322 FT_Byte* line = bitmap->buffer; local 326 for ( hh = height_org; hh > 0; hh--, line += pitch ) 329 FT_Byte* end = line + width; 334 FT_UInt pixel = line[xx-1];
|
/external/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 const char* file, int line, DeathTest** test); 238 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/guava/guava-tests/test/com/google/common/io/ |
LineBufferTest.java | 51 bufferHelper("\nempty first line\nno newline at end", 52 "\n", "empty first line\n", "no newline at end"); 56 "mixed\n", "line\r", "endings\r\n"); 86 @Override protected void handleLine(String line, String end) { 87 lines.add(line + end); 105 String line; local 106 while ((line = r.readLine()) != null) { 107 lines.add(line); 120 String line; local 121 while ((line = r.readLine()) != null) [all...] |
/external/harfbuzz_ng/src/ |
gen-indic-table.py | 17 for line in f: 19 j = line.find ('#') 21 line = line[:j] variable 23 fields = [x.strip () for x in line.split (';')]
|
/external/icu4c/samples/layout/ |
FontMap.cpp | 40 char *c, *scriptName, *fontName, *line, buffer[BUFFER_SIZE]; local 56 line = strip(buffer); 57 if (line[0] == '#' || line[0] == 0) { 61 c = strchr(line, ':'); 65 scriptName = strip(line); 77 sprintf(errorMessage, "The script name %s is invalid.", line);
|
/external/icu4c/tools/genrb/ |
read.c | 359 /* parse multi-line comment and store it in token*/ 398 uint32_t line; local 404 line = lineCount; 429 error(line, "unterminated comment detected");
|
/external/iproute2/tc/ |
tc.c | 251 char *line = NULL; local 271 while (getcmdline(&line, &len, stdin) != -1) { 275 largc = makeargs(line, largv, 100); 277 continue; /* blank line */ 286 if (line) 287 free(line);
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/ |
BitmapFontLoader.java | 63 String line = reader.readLine(); local 64 String[] tokens = line.split(regex);
|
/external/jpeg/ |
ansi2knr.c | 186 * with a right parenthesis as the last character on the line, 187 * and with a left brace as the first token on the following line 189 * It will recognize a multi-line header provided that no intervening 190 * line ends with a left or right brace or a semicolon. 192 * the function name must be the first thing on the line. 207 on the line following a function header be a left brace, 326 char *line; local 369 fprintf(out, "#line 1 \"%s\"\n", argv[1]); 371 line = buf; 372 while ( fgets(line, (unsigned)(buf + bufsize - line), in) != NULL [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DefaultHdfParser.java | 43 String line; local 44 while ((line = lineReader.readLine()) != null) { 45 parseLine(line, output, context, lineReader, dataFileName, errorHandler); 49 private void parseLine(String line, Data output, List<String> context, 52 line = stripComment(line); 55 if ((split = split(line, "=")) != null) { 58 } else if ((split = split(line, "<<")) != null) { 64 } else if ((split = split(line, "{")) != null) { 68 } else if (split(line, "}") != null) 78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax"); local 98 String line; local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
SyntaxTreeDumper.java | 39 private final String newLine = System.getProperty("line.separator"); 77 return tokenType + " [line:" + token.getLine() + ",pos:" + token.getPos() + "] \"" 120 StringBuilder line = new StringBuilder(); local 122 line.append(" "); 124 line.append(text); 125 line.append(newLine); 126 out.append(line); 133 * Simple command line tool for parsing a template and dumping out the AST.
|
/external/linux-tools-perf/util/ |
probe-event.h | 44 int line; /* Line number */ member in struct:perf_probe_point 76 /* Line number container */ 79 int line; member in struct:line_node 82 /* Line range */ 86 int start; /* Start line number */ 87 int end; /* End line number */ 88 int offset; /* Start line offset */ 116 /* Command string to line-range */
|