/external/chromium_org/base/ |
sys_info_linux.cc | 89 std::string line; local 90 while (std::getline(iss, line)) { 91 if (line.compare(0, strlen(kCpuModelPrefix), kCpuModelPrefix) == 0) { 92 size_t pos = line.find(": "); 93 return line.substr(pos + 2);
|
/external/chromium_org/extensions/common/ |
stack_frame.cc | 54 size_t line = 1; local 60 &function, &source, &line, &column) && 63 &source, &line, &column)) { 67 return scoped_ptr<StackFrame>(new StackFrame(line,
|
/external/chromium_org/media/cdm/ppapi/ |
cdm_logging.cc | 88 CdmLogMessage::CdmLogMessage(const char* file, int line) { 120 stream_ << filename << "(" << line << ")] "; local 124 // Use std::cout explicitly for the line break. This limits the use of this
|
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
parsesymbols.c | 18 const char* line) { 24 if (2 != sscanf(line, "%x %1023s", &uiaddr, symbol_text)) 28 fprintf(stderr, "%s\n", line); 35 parsed_symbol = strstr(line, symbol_text); 47 char line[XRAY_LINE_SIZE]; local 60 while (NULL != fgets(line, XRAY_LINE_SIZE, f)) { 61 if (line == strstr(line, " .text ")) { 65 if (line == strstr(line, " .gnu.linkonce.t.")) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/ |
FEGaussianBlurNEON.h | 48 int line = y * pixelLine; local 53 float32x4_t sourcePixelAsFloat = loadRGBA8AsFloat(sourcePixel + line + i * pixelStride); 59 int pixelOffset = line + x * pixelStride;
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
pkg_icu.cpp | 78 char line[1024]; local 89 while(fgets(line, sizeof(line), file)) { 91 end=strchr(line, '#'); 96 end=strchr(line, 0); 97 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) { 105 start=u_skipWhitespace(line); 110 // take whitespace-separated items from the line 112 // find whitespace after the item or the end of the line 115 // this item is the last one on the line [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/tgsi/ |
compiler.cpp | 37 std::string line; local 39 while (getline(ls, line)) { 40 std::istringstream ts(line);
|
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp-parse.y | 186 | input line 189 line: label 214 "#line %" PRIiMAX "\n", 224 "#line %" PRIiMAX " %" PRIiMAX "\n", [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/ |
t_dd_triemit.h | 113 static __inline void TAG(line)( CTX_ARG, function
|
/external/chromium_org/third_party/openssl/openssl/crypto/err/ |
err_prn.c | 73 int line,flags; local 79 while ((l=ERR_get_error_line_data(&file,&line,&data,&flags)) != 0) 83 file, line, (flags & ERR_TXT_STRING) ? data : "");
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/ |
genmacro.c | 43 int line = 0; local 77 line++;
|
/external/chromium_org/tools/grit/grit/tool/ |
build_unittest.py | 49 line = f.readline() variable in class:BuildUnittest.testGenerateDepFile.DummyOpts 50 (dep_file_name, deps_string) = line.split(': ')
|
/external/compiler-rt/lib/asan/scripts/ |
symbolize.py | 24 address often belongs to the next source code line, or even to a different 40 for line in readelf_pipe.stdout: 41 if ('LOAD' in line) and (' E ' in line): 42 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE) 59 def symbolize_addr2line(line, binary_prefix, paths_to_cut): 62 line = re.sub(r'^[A-Z]/[^\s]*\(\s*\d+\): ', '', line) 64 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE) 110 print line.rstrip().encode('utf-8' 117 line = line.decode('utf-8') variable [all...] |
/external/dhcpcd/ |
duid.c | 52 char *line; local 57 while ((line = get_line(f))) { 58 len = hwaddr_aton(NULL, line); 60 hwaddr_aton(duid, line);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/ |
buildNotes.php | 47 $line = "<td>Component: <a href=\"buildnotes/$anEntry\">$component</a></td>";
variable 49 echo "$line";
|
consoleLogs.php | 56 $line = "<td>Component: <a href=\"testresults/consolelogs/$anEntry\">$anEntry</a></td>";
variable 58 echo "$line";
|
/external/elfutils/tests/ |
allfcts.c | 39 int line = -1; local 40 dwarf_decl_line (func, &line); 43 printf ("%s:%d:%s\n", file, line, fct);
|
/external/harfbuzz_ng/util/ |
view-cairo.cc | 41 helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i); local 43 line.get_advance (&x_advance, &y_advance);
|
/external/icu4c/tools/toolutil/ |
pkg_icu.cpp | 80 char line[1024]; local 91 while(fgets(line, sizeof(line), file)) { 93 end=strchr(line, '#'); 98 end=strchr(line, 0); 99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) { 107 start=u_skipWhitespace(line); 112 // take whitespace-separated items from the line 114 // find whitespace after the item or the end of the line 117 // this item is the last one on the line [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/ |
Statement.java | 9 private String line; field in class:Statement 12 Statement(int lineNumber, String line) { 14 this.line = line; 29 return line; 43 sb.append(line);
|
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
JSilverBadSyntaxException.java | 26 private final int line; field in class:JSilverBadSyntaxException 31 * Signifies line or column is not known. 39 * @param lineContent content of a line where error occurred (can be null) 41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to 49 int line, int column, Throwable cause) { 50 super(makeMessage(message, lineContent, resourceName, line, column), cause); 52 this.line = line; 57 int line, int column) [all...] |
/external/llvm/lib/Support/ |
ErrorHandling.cpp | 88 unsigned line) { 96 dbgs() << " at " << file << ":" << line; local
|
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/ |
compiler.cpp | 37 std::string line; local 39 while (getline(ls, line)) { 40 std::istringstream ts(line);
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp-parse.y | 186 | input line 189 line: label 214 "#line %" PRIiMAX "\n", 224 "#line %" PRIiMAX " %" PRIiMAX "\n", [all...] |
/external/mesa3d/src/mesa/tnl_dd/ |
t_dd_triemit.h | 113 static __inline void TAG(line)( CTX_ARG, function
|