/external/llvm/utils/unittest/googletest/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); 236 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/mesa3d/src/gallium/auxiliary/indices/ |
u_indices_gen.py | 115 def line( intype, outtype, ptr, v0, v1 ): function 129 line( intype, outtype, ptr, v0, v1 ) 131 line( intype, outtype, ptr, v1, v0 )
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_debug_memory.c | 58 unsigned line; member in struct:debug_memory_header 110 debug_malloc(const char *file, unsigned line, const char *function, 119 file, line, function, 126 hdr->line = line; 146 debug_free(const char *file, unsigned line, const char *function, 158 file, line, function, 167 hdr->file, hdr->line, hdr->function, 182 debug_calloc(const char *file, unsigned line, const char *function, 185 void *ptr = debug_malloc( file, line, function, count * size ) [all...] |
/external/mesa3d/src/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/mockito/src/org/mockito/internal/configuration/ |
ClassPathLoader.java | 49 * <code>mockito-extensions</code>, the content of this file need to have <strong>one</strong> line with 156 for (String line : readerToLines(new InputStreamReader(in, "UTF-8"))) { 157 String name = stripCommentAndWhitespace(line); 175 String line; local 176 while ((line = lineReader.readLine()) != null) { 177 result.add(line); 182 static String stripCommentAndWhitespace(String line) { 183 int hash = line.indexOf('#'); 185 line = line.substring(0, hash) [all...] |
/external/nist-sip/java/gov/nist/core/ |
StringTokenizer.java | 166 String line = getLine(); local 167 result.addElement(line); 187 /** get the SDP field name of the line 190 public static String getSDPFieldName(String line) { 191 if (line == null) 195 int begin = line.indexOf("="); 196 fieldName = line.substring(0, begin);
|
/external/open-vcdiff/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 78 const char* file, int line, DeathTest** test); 138 const char* file, int line, DeathTest** test) = 0; 145 const char* file, int line, DeathTest** test); 193 int line, 196 : file_(file), line_(line), index_(index), write_fd_(write_fd) {} 204 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/opencv/cxcore/src/ |
cxerror.cpp | 53 int line; member in struct:__anon24015 151 const char *file, int line, void* ) 160 file != NULL ? file : "", line ); 174 const char *file, int line, void* ) 177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 ); 190 func_name, file, line ); 208 const char* /*err_msg*/, const char* /*file*/, int /*line*/, void* ) 238 const char** filename, int* line ) 251 if( line ) 252 *line = 0 [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_imageio.cpp | 201 uchar * line = base + y * step; local 206 line[0] = bitdata[bitmapIndex + 2]; 208 line[1] = bitdata[bitmapIndex + 1]; 210 line[2] = bitdata[bitmapIndex + 0]; 212 line += 3; 326 const uchar * line = base + y * step; local 331 bitmapData[bitmapIndex + 2] = line[0]; 333 bitmapData[bitmapIndex + 1] = line[1]; 335 bitmapData[bitmapIndex + 0] = line[2]; 337 line += 3 [all...] |
/external/openfst/src/include/fst/script/ |
compile-impl.h | 63 char line[kLineLen]; local 64 while (istrm.getline(line, kLineLen)) { 68 SplitToVector(line, separator.c_str(), &col, true); 69 if (col.size() == 0 || col[0][0] == '\0') // empty line 76 << ", line = " << nline_; 135 // Maximum line length in text file. 148 << ", source = " << source_ << ", line = " << nline_; 156 << "\", source = " << source_ << ", line = " << nline_; 193 << "\", source = " << source_ << ", line = " << nline_;
|
/external/openfst/src/lib/ |
symbol-table.cc | 33 // Maximum line length in textual symbols file. 48 char line[kLineLen]; local 49 while (strm.getline(line, kLineLen)) { 53 SplitToVector(line, separator.c_str(), &col, true); 54 if (col.size() == 0) // empty line 59 << "file = " << filename << ", line = " << nline 60 << ":<" << line << ">"; local 72 << "file = " << filename << ", line = " << nline; 103 ostringstream line; local 104 line << symbols_[key] << '\t' << key 112 ostringstream line; local 257 ostringstream line; local [all...] |
/external/openssh/ |
auth-rsa.c | 61 * The .ssh/authorized_keys file contains public keys, one per line, in the 66 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a 167 char line[SSH_MAX_PUBKEY_BYTES]; local 184 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { 190 for (cp = line; *cp == ' ' || *cp == '\t'; cp++) 213 /* Parse the key from the line. */ 215 debug("%.100s, line %lu: non ssh1 key syntax", 231 logit("Warning: %s, line %lu: keysize mismatch: "
|
auth2-pubkey.c | 204 char line[SSH_MAX_PUBKEY_BYTES], *cp, *ep, *line_opts; local 214 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { 216 for (cp = line; *cp == ' ' || *cp == '\t'; cp++) 228 * If the line has internal whitespace then assume it has 261 char line[SSH_MAX_PUBKEY_BYTES]; local 283 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { 289 for (cp = line; *cp == ' ' || *cp == '\t'; cp++) 310 /* still no key? advance to next line*/ [all...] |
dh.c | 44 parse_prime(int linenum, char *line, struct dhgroup *dhg) 51 cp = line; 120 error("Bad prime description in line %d", linenum); 128 char line[4096]; local 142 while (fgets(line, sizeof(line), f)) { 144 if (!parse_prime(linenum, line, &dhg)) 170 while (fgets(line, sizeof(line), f)) { 171 if (!parse_prime(linenum, line, &dhg) [all...] |
/external/openssl/crypto/evp/ |
evp_test.c | 358 /* If we add command-line options, this statement should be switchable. 366 char line[4096]; local 373 if(!fgets((char *)line,sizeof line,f)) 375 if(line[0] == '#' || line[0] == '\n') 377 p=line;
|
/external/oprofile/gui/ |
oprof_start_util.cpp | 180 * @param maxlen width of line 195 string line; local 198 if (line.size() + oline.size() < maxlen) { 199 lines.push_back(line + oline); 200 line.erase(); 202 lines.push_back(line); 203 line.erase(); 208 if (line.size() + word.size() > maxlen) { 209 lines.push_back(line); 210 line.erase() [all...] |
/external/pixman/pixman/ |
pixman-edge.c | 83 #define DEFINE_ALPHA(line, x) \ 84 uint8_t *__ap = (uint8_t *) line + ((x) >> 1); \ 163 uint32_t *line; local 170 line = buf + pixman_fixed_to_int (y) * stride; 174 uint8_t *ap = (uint8_t *) line; 333 line += stride;
|
/external/ppp/pppd/plugins/radius/ |
config.c | 53 static int set_option_str(char *filename, int line, OPTION *option, char *p) 63 static int set_option_int(char *filename, int line, OPTION *option, char *p) 68 error("%s: line %d: bogus option value", filename, line); 83 static int set_option_srv(char *filename, int line, OPTION *option, char *p) 91 error("%s: line %d: bogus option value", filename, line); 120 error("%s: line %d: no default port for %s", filename, line, option->name); 133 static int set_option_auo(char *filename, int line, OPTION *option, char *p 191 int line, pos; local [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 78 const char* file, int line, DeathTest** test); 138 const char* file, int line, DeathTest** test) = 0; 145 const char* file, int line, DeathTest** test); 193 int line, 196 : file_(file), line_(line), index_(index), write_fd_(write_fd) {} 204 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/protobuf/src/google/protobuf/stubs/ |
common_unittest.cc | 81 void CaptureLog(LogLevel level, const char* filename, int line, 85 implicit_cast<int>(level), filename, line, message)); 90 int line = __LINE__; local 97 "libprotobuf INFO "__FILE__":" + SimpleItoa(line + 1) + "] A message.\n" 98 "libprotobuf WARNING "__FILE__":" + SimpleItoa(line + 2) + "] A warning.\n" 99 "libprotobuf ERROR "__FILE__":" + SimpleItoa(line + 3) + "] An error.\n",
|
/external/qemu/distrib/jpeg-6b/ |
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/regex-re2/util/ |
logging.h | 51 LogMessage(const char* file, int line) : flushed_(false) { 52 stream() << file << ":" << line << ": "; local 76 LogMessageFatal(const char* file, int line) 77 : LogMessage(file, line) { }
|
/external/skia/src/pathops/ |
SkIntersections.cpp | 51 int SkIntersections::cubicRay(const SkPoint pts[4], const SkDLine& line) { 55 return intersectRay(cubic, line); 126 int SkIntersections::lineRay(const SkPoint pts[2], const SkDLine& line) { 130 return intersectRay(l, line); 142 int SkIntersections::quadRay(const SkPoint pts[3], const SkDLine& line) { 146 return intersectRay(quad, line); 193 SkDLine line; local 194 line.set(a); 195 return vertical(line, top, bottom, x, flipped);
|
SkPathOpsCurve.h | 15 SkDLine line; local 16 line.set(a); 17 return line.ptAtT(t); 59 SkDLine line; local 60 line.set(a); 61 return line[1] - line[0]; 124 SkDLine line; local 125 line.set(a); 126 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) } [all...] |
SkPathOpsLine.cpp | 31 // isLeft(): tests if a point is Left|On|Right of an infinite line. 33 // Return: >0 for P2 left of the line through P0 and P1 34 // =0 for P2 on the line 35 // <0 for P2 right of the line 71 // project a perpendicular ray from the point to the line; find the T on the line 72 SkDVector len = fPts[1] - fPts[0]; // the x/y magnitudes of the line 82 // find the ordinal in the original line with the largest unsigned exponent 95 // project a perpendicular ray from the point to the line; find the T on the line 115 SkDLine line = {{{0, 0}, {x1, y1}}}; local [all...] |