/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
DefaultRenderingContext.java | 61 private int line; field in class:DefaultRenderingContext 120 autoEscapeContext.setCurrentPosition(line, column); 146 return "[" + getCurrentResourceName() + ":" + line + ":" + column + "]"; 156 autoEscapeContext.setCurrentPosition(line, column); 177 public void setCurrentPosition(int line, int column) { 180 this.line = line;
|
/external/linux-tools-perf/util/ |
annotate.c | 79 static struct objdump_line *objdump_line__new(s64 offset, char *line, size_t privsize) 85 self->line = line; 93 free(self->line); 97 static void objdump__add_line(struct list_head *head, struct objdump_line *line) 99 list_add_tail(&line->node, head); 166 * Also color the filename and line if needed, with 168 * twice for close colored addr with the same filename:line 181 color_fprintf(stdout, PERF_COLOR_BLUE, "%s\n", oline->line); 188 if (!*oline->line) 202 char *line = NULL, *tmp, *tmp2, *c; local [all...] |
/external/marisa-trie/lib/marisa/ |
base.h | 154 // An exception object stores a filename, a line number and an error code. 157 Exception(const char *filename, int line, Status status) 158 : filename_(filename), line_(line), status_(status) {} 172 int line() const { function in class:marisa::Exception 190 // MARISA_THROW adds a filename and a line number to an exception.
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
base.h | 148 // An exception object stores a filename, a line number and an error code. 151 Exception(const char *filename, int line, Status status) 152 : filename_(filename), line_(line), status_(status) {} 166 int line() const { function in class:marisa_alpha::Exception 184 // MARISA_ALPHA_THROW adds a filename and a line number to an exception.
|
/external/mesa3d/src/mesa/program/ |
nvvertparse.c | 79 GLint line, column; local 82 parseState->pos, &line, &column); 84 "nvfragparse.c(%d): line %d, column %d:%s (%s)\n", 85 lineNo, line, column, (char *) lineStr, msg); [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
RawHeaders.java | 43 * <p>This class tracks fields line-by-line. A field with multiple comma- 44 * separated values on the same line will be treated as a field with a single 88 /** Sets the request line (like "GET / HTTP/1.1"). */ 94 /** Sets the response status line (like "HTTP/1.0 200 OK"). */ 108 throw new ProtocolException("Unexpected status line: " + statusLine); 112 throw new ProtocolException("Unexpected status line: " + statusLine); 118 throw new ProtocolException("Unexpected status line: " + statusLine); 148 * Returns the status line's HTTP minor version. This returns 0 for HTTP/1.0 166 * Add an HTTP header line containing a field name, a literal colon, and 317 String line; local [all...] |
/external/openssh/ |
loginrec.c | 340 const char *hostname, const char *line) 345 login_init_entry(newli, pid, username, hostname, line); 368 const char *hostname, const char *line) 376 /* set the line information */ 377 if (line) 378 line_fullname(li->line, line, sizeof(li->line)); 466 !sys_auth_record_login(li->username,li->hostname,li->line, 540 * 'line' string utility function 1431 char line[UT_LINESIZE]; local [all...] |
/external/openssl/crypto/ |
mem_dbg.c | 155 int line; member in struct:app_mem_info_st 177 int line; member in struct:mem_st 397 int CRYPTO_push_info_(const char *info, const char *file, int line) 423 ami->line=line; 481 void CRYPTO_dbg_malloc(void *addr, int num, const char *file, int line, 518 m->line=line; 606 const char *file, int line, int before_p) 611 fprintf(stderr, "LEVITTE_DEBUG_MEM: --> CRYPTO_dbg_malloc(addr1 = %p, addr2 = %p, num = %d, file = \"%s\", line = %d, before_p = %d)\n" [all...] |
/external/ppp/pppd/ |
utils.c | 532 static char line[256]; /* line to be logged accumulated here */ variable 533 static char *linep; /* current pointer within line */ 541 linep = line; 543 strlcpy(line, prefix, sizeof(line)); 544 linep = line + strlen(line); 552 if (linep != line) { 554 log_write(llevel, line); [all...] |
/external/qemu/android/ |
main.c | 240 fprintf(stderr, "invalid command-line parameter: %s.\n", opt); 859 /* We still use QEMU command-line options for the following since 1262 const char* line; local [all...] |
/external/qemu/android/skin/ |
surface.c | 517 uint8_t* line = blit->dst_line; local 519 uint8_t* end = line + pitch*blit->h; 521 for ( ; line != end; line += pitch ) 522 fill( (uint32_t*)line + blit->x, argb_premul, blit->w ); 602 uint8_t* line = blit->dst_line; local 606 uint8_t* end = line + pitch*blit->h; 608 for ( ; line != end; line += pitch, sline += spitch ) 609 func( (uint32_t*)line + blit->x, (uint32_t*)sline + blit->sx, blit->w ) [all...] |
/external/smack/src/org/xbill/DNS/ |
Tokenizer.java | 40 /** End of line */ 65 private int line; field in class:Tokenizer 130 TokenizerException(String filename, int line, String message) { 131 super(filename + ":" + line + ": " + message); 157 line = 1; 190 line++; 200 line--; 248 line++; 360 line--; 691 return new TokenizerException(filename, line, s) [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/ |
DebugInstructionIterator.java | 166 int line = debugInfoItem.getLineStart(); local 191 line += lineDiff; 263 line += (base % 15) - 4; 264 processDecodedDebugInstruction.ProcessLineEmit(currentCodeAddress, line); 347 public void ProcessLineEmit(int codeAddress, int line) {
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
DebugInfoBuilder.java | 38 * an "event" at a specific address, where an event is something like a line number, start/end local, etc. 75 public void addLine(int address, int line) { 81 lineStart = line; 84 events.add(new LineEvent(address, line)); 257 private final int line; field in class:DebugInfoBuilder.LineEvent 259 public LineEvent(int address, int line) { 261 this.line = line; 269 int lineDelta = line - currentLine; 281 //TODO: need to handle the case when the line delta is larger than a signed in [all...] |
/external/srec/tools/test_g2g/ |
test_g2g.c | 480 char line[512]; local 490 while( fgets(line, sizeof(line), fp)) { 491 if(line[0] == '#') continue; 499 for(i=0; fgets(line,sizeof(line),fp) && i<num_files; i++) { 500 if(line[0] == '#') continue; 501 strtok(line,"\n\r\t"); 502 file = files[i++] = CALLOC(strlen(line)+1,sizeof(char),__FILE__); 503 strcpy( file, line); [all...] |
/external/stlport/test/unit/ |
fstream_test.cpp | 218 of << "line " << setiosflags(ios_base::right) << setfill('0') << setw(2) << i << "\n"; 590 string line, last_line; local 592 while (getline(in, line)) { 594 last_line = line; 733 //0(1019 times)0000 //1023 characters + 1 charater for \n (for some platforms it will be a 1 ko line) 768 string line; local 774 in >> line; local 775 size_t lastStarPos = line.rfind('*'); 776 CPPUNIT_ASSERT( atoi(line.substr(lastStarPos + 1).c_str()) == (*pit).second ); 876 // string line; [all...] |
/external/v8/test/cctest/ |
test-strings.cc | 470 const char* line; local 471 for (int i = 0; (line = lines[i]); i++) { 472 printf("%s\n", line); 474 v8::Script::Compile(v8::String::New(line))->Run();
|
/external/valgrind/main/callgrind/ |
fn.c | 424 UInt line; local 438 &line); 459 if (line_num) *line_num=line; 464 if (line_num) *line_num=line; 501 /* get function/file name, line number and object of 583 * given on command line */ 589 bb->line = line_num;
|
/external/wpa_supplicant_8/src/utils/ |
wpa_debug.c | 129 char *line, *tmp1, *path = NULL; local 144 line = strtok_r(buf, "\n", &tmp1); 145 while (line) { 148 strtok_r(line, " ", &tmp2); 156 line = strtok_r(NULL, "\n", &tmp1); 202 * Note: New line '\n' is added to the end of the text when printing to stdout.
|
/external/wpa_supplicant_8/wpa_supplicant/ |
config_file.c | 48 * wpa_config_get_line - Read the next configuration file line 49 * @s: Buffer for the line 52 * @line: Pointer to a variable storing the file line number 53 * @_pos: Buffer for the pointer to the beginning of data on the text line or 55 * Returns: Pointer to the beginning of data on the text line or %NULL if no 58 * This function reads the next non-empty line from the configuration file and 61 static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line, 67 (*line)++; 71 * The line was truncated - skip rest of it to avoi 353 int errors = 0, line = 0; local [all...] |
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
RgbPlayerActivity.java | 141 String line; local 142 while ((line = reader.readLine()) != null) { 143 mImageList.add(line);
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
UploadedTexture.java | 240 Bitmap line = getBorderLine(true, config, texHeight); local 241 canvas.texSubImage2D(this, 0, 0, line, format, type); 244 line = getBorderLine(false, config, texWidth); 245 canvas.texSubImage2D(this, 0, 0, line, format, type); 250 Bitmap line = getBorderLine(true, config, texHeight); local 251 canvas.texSubImage2D(this, mBorder + bWidth, 0, line, format, type); 256 Bitmap line = getBorderLine(false, config, texWidth); local 257 canvas.texSubImage2D(this, 0, mBorder + bHeight, line, format, type);
|
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/ |
ProxyServer.java | 177 private void sendLine(Socket socket, String line) throws IOException { 179 os.write(line.getBytes());
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SimpleSessionDescription.java | 86 for (String line : lines) { 88 if (line.charAt(1) != '=') { 91 if (line.charAt(0) == 'm') { 92 String[] parts = line.substring(2).split(" ", 4); 102 fields.parse(line); 105 throw new IllegalArgumentException("Invalid SDP: " + line); 516 for (String line : mLines) { 517 if (line.charAt(0) == type) { 518 buffer.append(line).append("\r\n"); 525 * Invokes {@link #set} after splitting the line into three parts 571 String line = mLines.get(i); local 608 String line = mLines.get(index); local [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuScript.cpp | 489 char line[MAXLINE]; local 513 if (strgets(line, MAXLINE, &rsInfo) == NULL) { 516 if (sscanf(line, EXPORT_VAR_STR "%zu", &varCount) != 1) { 517 ALOGE("Invalid export var count!: %s", line); 536 if (strgets(line, MAXLINE, &rsInfo) == NULL) { 539 char *c = strrchr(line, '\n'); 543 mFieldAddress[i] = dlsym(mScriptSO, line); 546 line, dlerror()); 550 //ALOGE("Found variable %s at %p", line, 557 if (strgets(line, MAXLINE, &rsInfo) == NULL) [all...] |