Searched refs:line (Results 226 - 250 of 3772) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPEMUtil.java60 String line;
63 while ((line = readLine(in)) != null)
65 if (line.startsWith(_header1) || line.startsWith(_header2))
71 while ((line = readLine(in)) != null)
73 if (line.startsWith(_footer1) || line.startsWith(_footer2))
78 pemBuf.append(line);
/external/chromium_org/base/mac/
H A Dmac_logging.cc16 int line,
19 : LogMessage(file_path, line, severity),
15 OSStatusLogMessage(const char* file_path, int line, LogSeverity severity, OSStatus status) argument
/external/chromium_org/skia/ext/
H A Dgoogle_logging.cc13 void SkDebugf_FileLine(const char* file, int line, bool fatal, argument
22 logging::LogMessage(file, line,
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Daddress_formatter.h37 // Formats the address as a single line. This formats the address in national
40 const AddressData& address_data, std::string* line);
42 // Formats the street-level part of an address as a single line. For example,
46 const AddressData& address_data, std::string* line);
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/
H A Dhmm_dflt_abort.c30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line) { argument
47 fputs(line, stderr);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DParameterization_Test.h11 bool point_on_parameterized_line(const _Line& line, const _Point& point);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp16 SkDLine line; member in struct:lineCubic
30 const SkDLine& line = failLineCubicTests[iIndex].line; local
31 SkASSERT(ValidLine(line));
35 int order2 = reduce2.reduce(line);
41 SkDebugf("[%d] line order=%d\n", iIndex, order2);
46 int roots = i.intersect(cubic, line);
93 static int doIntersect(SkIntersections& intersections, const SkDCubic& cubic, const SkDLine& line) { argument
96 if (line[0].fX == line[
122 const SkDLine& line = lineCubicTests[iIndex].line; local
188 const SkDLine& line = lineCubicTests[iIndex].line; local
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A DplotTimingTest.m8 line = fgetl(fid);
14 while ischar(line)
15 if length(line) == 0
16 line = fgetl(fid);
19 lineOrig = line;
20 line = line(72:end);
22 if strncmp(line, testName, length(testName))
25 line = fgetl(fid);
28 [p, count] = sscanf(line, 'Fram
[all...]
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Djson_writer.py48 # Add comma to the end of the previous line.
53 line = ' // Note: this policy is supported only in recommended mode.'
54 self._out.append(line)
55 line = ' // The JSON file should be placed in %srecommended.' % \
57 self._out.append(line)
59 line = ' // %s' % policy['caption']
60 self._out.append(line)
64 line = ' //"%s": %s' % (policy['name'], example_value_str)
66 self._out.append(line)
/external/clang/test/Lexer/
H A Dgnu-flags.c5 // RUN: -Wgnu-imaginary-constant -Wgnu-binary-literal -Wgnu-zero-line-directive
8 // RUN: -Wno-gnu-imaginary-constant -Wno-gnu-binary-literal -Wno-gnu-zero-line-directive
13 // %clang_cc1 -fsyntax-only -verify %s -DLINE0 -Wgnu-zero-line-directive
48 // This case is handled differently because lit has a bug whereby #line 0 is reported to be on line 4294967295
51 #line 0 // expected-warning {{#line directive with zero argument is a GNU extension}}
53 #line 0
56 // WARNING: Do not add more tests after the #line 0 line! Ad
[all...]
/external/clang/test/Preprocessor/
H A Ddisabled-cond-diags2.c24 #line -2
/external/clang/test/SemaCXX/
H A Dcxx98-compat-pedantic.cpp12 #line 32767 // ok
13 #line 32768 // expected-warning {{#line number greater than 32767 is incompatible with C++98}}
/external/deqp/framework/delibs/decpp/
H A DdeDefs.cpp32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line) argument
38 msg << " at " << file << ":" << line; local
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java22 * Package-protected abstract class that implements the line reading
24 * java.io.BufferedReader}: line feed, carriage return, or carriage
34 /** Holds partial line contents. */
35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer
36 /** Whether a line ending with a CR is pending processing. */
40 * Process additional characters from the stream. When a line separator
41 * is found the contents of the line and the line separator itself
53 // Last call to add ended with a CR; we can handle the line now.
63 line
115 handleLine(String line, String end) argument
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DRulesFileParser.java45 String line;
46 while ((line = br.readLine()) != null) {
47 line = stripComment(line);
48 if (line.isEmpty())
50 String[] parts = line.split("\\s+");
78 private static void error(int line, String[] parts) { argument
79 throw new IllegalArgumentException("Error on line " + line + ": " + Arrays.asList(parts));
/external/libvorbis/vq/
H A Dmake_residue_books.pl21 while($line=<F>){
23 print "#### $line";
24 if($line=~m/^GO/){
30 if($line=~m/\S+/ && !($line=~m/^\#/) ){
31 my $command=$line;
40 if($line=~m/^>(\S+)\s+(\S*)/){
48 if($line=~m/^h(.*)/){
79 if($line=~m/^:(.*)/){
/external/libvpx/libvpx/vpx_mem/memory_manager/
H A Dhmm_dflt_abort.c30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line) { argument
47 fputs(line, stderr);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpmu-bison.h55 #line 30 "util/pmu.y"
63 #line 64 "util/pmu-bison.h"
/external/skia/experimental/Intersection/
H A DParameterization_Test.h11 bool point_on_parameterized_line(const _Line& line, const _Point& point);
/external/skia/include/core/
H A DSkDynamicAnnotations.h20 void AnnotateIgnoreReadsBegin(const char* file, int line);
21 void AnnotateIgnoreReadsEnd(const char* file, int line);
/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp16 SkDLine line; member in struct:lineCubic
30 const SkDLine& line = failLineCubicTests[iIndex].line; local
31 SkASSERT(ValidLine(line));
35 int order2 = reduce2.reduce(line);
41 SkDebugf("[%d] line order=%d\n", iIndex, order2);
46 int roots = i.intersect(cubic, line);
93 static int doIntersect(SkIntersections& intersections, const SkDCubic& cubic, const SkDLine& line) { argument
96 if (line[0].fX == line[
122 const SkDLine& line = lineCubicTests[iIndex].line; local
188 const SkDLine& line = lineCubicTests[iIndex].line; local
[all...]
/external/valgrind/main/VEX/unused/
H A Darena.h41 const char *file, int line);
43 long nbytes, const char *file, int line);
/external/valgrind/main/drd/tests/
H A Dfp_race_xml.stderr.exp9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
48 <line>...</line>
[all...]
/external/chromium_org/third_party/android_testrunner/
H A Dam_instrument_parser.py48 for line in result.splitlines():
49 result_block_string += line + '\n'
51 if "INSTRUMENTATION_STATUS_CODE:" in line:
60 if "INSTRUMENTATION_CODE:" in line:
90 for line in result.split('\n'):
91 line = line.strip(string.whitespace)
92 if re_result.match(line):
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line)
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglsl_lexer.cc0 #line 2 "src/chromium_gensrc/mesa/glsl_lexer.cc"
3 #line 4 "src/chromium_gensrc/mesa/glsl_lexer.cc"
241 /* Whether we're considered to be at the beginning of a line.
247 int yy_bs_lineno; /**< The line count. */
1017 #line 1 "src/src/glsl/glsl_lexer.ll"
1018 #line 2 "src/src/glsl/glsl_lexer.ll"
1146 #line 1147 "src/chromium_gensrc/mesa/glsl_lexer.cc"
1385 #line 145 "src/src/glsl/glsl_lexer.ll"
1388 #line 1389 "src/chromium_gensrc/mesa/glsl_lexer.cc"
1474 #line 14
[all...]

Completed in 990 milliseconds

1234567891011>>