/external/mockito/src/org/mockito/internal/debugging/ |
MockitoDebuggerImpl.java | 24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
41 out += line("********************************");
44 out += line(i.toString()); 50 private String line(String text) { method in class:MockitoDebuggerImpl [all...] |
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/ |
ExternalSpdyExample.java | 44 String line; local 45 while ((line = reader.readLine()) != null) { 46 System.out.println(line);
|
/external/openfst/src/script/ |
text-io.cc | 41 char line[kLineLen]; local 45 while (strm.getline(line, kLineLen)) { 48 SplitToVector(line, "\n\t ", &col, true); 49 if (col.size() == 0 || col[0][0] == '\0') // empty line 53 << "file = " << filename << ", line = " << nline;
|
/external/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/oprofile/daemon/ |
opd_pipe.c | 64 char line[256]; local 78 /* just break if no new line is found */ 79 if (fgets(line, 256, fifo_fd) == NULL) 81 line[strlen(line) - 1] = '\0'; 83 if (strstr(line, "do_jitconv") != NULL) {
|
/external/oprofile/libutil++/ |
bfd_support.h | 138 /// line number 139 unsigned int line; member in struct:linenr_info 143 * Attempt to locate a filename + line number for the given symbol and
|
/external/ppp/pppd/plugins/radius/ |
radrealms.c | 48 int line = 0; local 75 line++; 87 option_error("%s: invalid line %d: %s", radrealms_config, 88 line, buffer); 101 option_error("%s: realm name missing on line %d: %s", 102 radrealms_config, line, buffer); 111 option_error("%s: server address missing on line %d: %s", 112 radrealms_config, line, buffer); 119 option_error("%s: server port missing on line %d: %s", 120 radrealms_config, line, buffer) [all...] |
/external/qemu/android/ |
async-console.c | 46 /* A helper function to prepare the line reader and switch to a new state */ 102 case STATE_READ_BANNER_1: /* reading the first banner line */ 108 /* Check that first line starts with "Android Console:", 110 const char* line = asyncLineReader_getLine(acc->lreader); local 111 if (line == NULL || memcmp(line, "Android Console:", 16)) { 114 /* ok, fine, prepare for the next banner line then */ 120 case STATE_READ_BANNER_2: /* reading the second banner line */ 126 const char* line = asyncLineReader_getLine(acc->lreader); local 127 if (line == NULL) [all...] |
/external/skia/gm/ |
fatpathfill.cpp | 77 SkPath line, path; local 78 line.moveTo(SkIntToScalar(1), SkIntToScalar(2)); 79 line.lineTo(SkIntToScalar(4 + i), SkIntToScalar(1)); 80 paint.getFillPath(line, &path);
|
/external/skia/tests/ |
PathOpsDRectTest.cpp | 45 const SkDLine& line = lineTests[index]; local 46 SkASSERT(ValidLine(line)); 47 rect.setBounds(line); 48 REPORTER_ASSERT(reporter, rect.fLeft == SkTMin(line[0].fX, line[1].fX)); 49 REPORTER_ASSERT(reporter, rect.fTop == SkTMin(line[0].fY, line[1].fY)); 50 REPORTER_ASSERT(reporter, rect.fRight == SkTMax(line[0].fX, line[1].fX)); 51 REPORTER_ASSERT(reporter, rect.fBottom == SkTMax(line[0].fY, line[1].fY)) [all...] |
/external/tcpdump/ |
print-ipx.c | 84 static char line[256]; local 86 snprintf(line, sizeof(line), "%08x.%02x:%02x:%02x:%02x:%02x:%02x", 89 return line;
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
grp_data.c | 51 Word32 line; local 65 for (line=(sfbOffset[sfb + 1] - 1); line>=sfbOffset[sfb]; line--) { 67 if (mdctSpectrum[wnd*FRAME_LEN_SHORT+line] != 0) break; 70 if (line >= sfbOffset[sfb]) break; 172 for (line = lineOffset + sfbOffset[sfb]; line < lineOffset + sfbOffset[sfb+1]; line++) { 173 tmpSpectrum[i] = mdctSpectrum[line]; [all...] |
/frameworks/base/tools/preload/ |
Compile.java | 46 String line; local 48 while ((line = in.readLine()) != null) { 50 if (line.startsWith("I/PRELOAD")) { 52 String clipped = line.substring(19); 56 "Exception while recording line " + lineNumber + ": " + line, e);
|
PrintHtmlDiff.java | 61 String line; local 62 while ((line = oldClasses.readLine()) != null) { 63 line = line.trim(); 64 LoadedClass clazz = root.loadedClasses.get(line);
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
LineVerifierElem.java | 36 public LineVerifierElem addExpected(final String line) { 37 if (!TextUtils.isEmpty(line)) { 38 mExpectedLineList.add(line); 51 final String line = lineArray[i]; local 52 if (TextUtils.isEmpty(line)) { 56 if ("BEGIN:VCARD".equalsIgnoreCase(line)) { 58 TestCase.fail("Multiple \"BEGIN:VCARD\" line found"); 63 } else if ("END:VCARD".equalsIgnoreCase(line)) { 65 TestCase.fail("Multiple \"END:VCARD\" line found"); 72 "VERSION:4.0")).equalsIgnoreCase(line)) { [all...] |
/hardware/samsung_slsi/exynos5/libmemtrack/ |
mali.c | 49 char line[1024]; local 67 if (fgets(line, sizeof(line), fp) == NULL) { 77 if (line[0] == ' ' && line[1] == ' ') { 82 int ret = sscanf(line, " %*s %u %*u %u %u\n",
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/ |
perf_config.c | 32 static int assign_string_if_matches(char const *line, char const *argument, 35 static int assign_long_if_matches(char const *line, char const *argument, 37 static void read_line(PERF_Config *sConfig, char const *line, char const *tag); 38 static char const *get_value_if_matches(char const *line, char const *argument); 103 * Arg2 configuration line (trimmed of trailing white 116 void read_line(PERF_Config *cfg, char const *line, char const *tag) 121 while (*line && isspace(*line)) line++; 124 if (!*line || *line == '#') return 179 char line[PERF_CONFIG_LINELENGTH]; local [all...] |
/libcore/luni/src/test/java/libcore/io/ |
StrictLineReaderTest.java | 40 String line = lineReader.readLine(); local 41 if (!refLine.equals(line)) { 42 fail("line (\""+line+"\") differs from expected (\""+refLine+"\")."); 45 fail("line reader threw EOFException too early."); 50 fail("line reader didn't throw the expected EOFException."); 67 "12 byte line\n18 byte line......\n" + 77 "line ending with CRLF\r\n" + 78 "this is a long line with embedded CR \r ending with CRLF and having more than " [all...] |
/packages/experimental/BugReportSender/src/com/android/bugreportsender/ |
BugReportParser.java | 30 String line = null; local 31 while ((line = reader.readLine()) != null) { 35 if (line.startsWith(SECTION_HEADER) || (numLines > MAX_LINES)) { 38 sb.append(line); 41 } else if (line.startsWith(sectionWithHeader)) { 42 sb.append(line);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
input.h | 25 #include "line-map.h" 35 /* line-map.c reserves RESERVED_LOCATION_COUNT to the user. Ensure 45 /* The line-location in the source file. */ 46 int line; member in struct:__anon33790 68 #define LOCATION_LINE(LOC) ((expand_location (LOC)).line)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
input.h | 25 #include "line-map.h" 35 /* line-map.c reserves RESERVED_LOCATION_COUNT to the user. Ensure 45 /* The line-location in the source file. */ 46 int line; member in struct:__anon34519 68 #define LOCATION_LINE(LOC) ((expand_location (LOC)).line)
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
input.h | 25 #include "line-map.h" 35 /* line-map.c reserves RESERVED_LOCATION_COUNT to the user. Ensure 45 /* The line-location in the source file. */ 46 int line; member in struct:__anon35350 68 #define LOCATION_LINE(LOC) ((expand_location (LOC)).line)
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
input.h | 25 #include "line-map.h" 35 /* line-map.c reserves RESERVED_LOCATION_COUNT to the user. Ensure 45 /* The line-location in the source file. */ 46 int line; member in struct:__anon36079 68 #define LOCATION_LINE(LOC) ((expand_location (LOC)).line)
|
/system/core/init/ |
parser.h | 28 int line; member in struct:parse_state
|
/system/core/libcorkscrew/ |
test.cpp | 19 char line[MAX_BACKTRACE_LINE_LENGTH]; local 21 line, MAX_BACKTRACE_LINE_LENGTH); 24 fprintf(stderr, " %s\n", line); 38 fprintf(stderr, " %s (%s%+d)\n", line, symbol->name, offset); 40 fprintf(stderr, " %s (\?\?\?)\n", line);
|