Searched refs:line (Results 1 - 25 of 164) sorted by relevance

1234567

/frameworks/native/opengl/libs/tools/
H A Dglentrygen26 while (my $line = <>) {
27 next if $line =~ /^\//;
28 next if $line =~ /^#/;
29 next if $line =~ /^\s*$/;
30 if ($line !~ /^GL_API(CALL)?\s+(.+)\s+GL_APIENTRY\s+([\w]+)\s*\(([^\)]+)\);/) {
H A Dglenumsgen21 while (my $line = <STDIN>) {
22 next if $line =~ /^\//;
24 next if $line =~ /_BIT(\d+_|\s+)/;
25 if ($line !~ /^#define\s+(\S+)\s+(0x\S+)/) {
H A Dglapigen26 while (my $line = <>) {
27 next if $line =~ /^\//;
28 next if $line =~ /^#/;
29 next if $line =~ /^\s*$/;
30 if ($line !~ /^GL_API(CALL)?\s+(.+)\s+GL_APIENTRY\s+([\w]+)\s*\(([^\)]+)\);/) {
37 #printf("%s", $line);
H A Dgltracegen26 while (my $line = <>) {
27 next if $line =~ /^\//;
28 next if $line =~ /^#/;
29 next if $line =~ /^\s*$/;
30 if ($line !~ /^GL_ENTRY\(([^,]+), ([^,]+), ([^\)]+)\)/) {
/frameworks/wilhelm/src/
H A Dassert.c24 void __assert(const char *file, int line, const char *failedexpr) argument
26 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
32 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
33 failedexpr, file, line, func);
/frameworks/rs/cpu_ref/linkloader/utils/
H A Drsl_assert.cpp29 unsigned line,
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n";
37 ALOGE("rslAssert [%s:%d] %s\n", file, line, expr);
28 ASSERT_FAILED(char const *file, unsigned line, char const *expr) argument
H A Drsl_assert.h25 unsigned line,
/frameworks/av/media/libstagefright/foundation/
H A Dhexdump.cpp47 AString line; local
49 appendIndent(&line, indent);
54 line.append(tmp);
58 line.append(' ');
61 line.append(" ");
64 line.append(tmp);
68 line.append(' ');
76 line.append((char)data[offset + i]);
78 line.append('.');
83 appendTo->append(line);
[all...]
H A DParsedMessage.cpp106 AString line(&data[offset], lineEndOffset - offset);
109 // Special handling for the request/status line.
111 mDict.add(AString("_"), line);
118 // An empty line separates headers from body.
124 if (line.c_str()[0] == ' ' || line.c_str()[0] == '\t') {
128 // Otherwise it's malformed since the first header line
132 value.append(line);
139 ssize_t colonPos = line.find(":");
141 AString key(line,
181 AString line; local
226 AString line; local
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DLineVerifierElem.java36 public LineVerifierElem addExpected(final String line) { argument
37 if (!TextUtils.isEmpty(line)) {
38 mExpectedLineList.add(line);
51 final String line = lineArray[i];
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...]
/frameworks/av/libvideoeditor/osal/src/
H A DM4PSW_DebugTrace.c38 * void M4OSA_DebugTrace(M4OSA_Int32 line, char* file, M4OSA_Int32 level,
43 * @param line (IN): the line number in the source file
52 M4OSAL_TRACE_EXPORT_TYPE void M4OSA_DebugTrace(M4OSA_Int32 line, argument
70 printf("Error: %li, on %s: %s Line %lu in: %s\n",err,cond,msg,line,file);
75 M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_DEBUG_traceFunction(M4OSA_UInt32 line, argument
82 M4OSA_DebugTrace(line, fileName, level, stringCondition, message, returnedError);
H A DM4PSW_Trace.c39 * void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file ,M4OSA_Int32 level,
52 M4OSAL_TRACE_EXPORT_TYPE void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file , argument
69 (char *)message, line, file);
74 M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_TRACE_traceFunction(M4OSA_UInt32 line, argument
94 (char *)message, line, (char*)file);
/frameworks/base/tools/aapt/
H A DSourcePos.cpp14 int line; member in struct:ErrorPos
20 ErrorPos(const String8& file, int line, const String8& error, bool fatal);
32 :line(-1), fatal(false)
38 line(that.line),
46 line(l),
61 if (this->line < rhs.line) return true;
62 if (this->line == rhs.line) {
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DAndroidPrintStream.java46 protected void log(String line) { argument
47 Log.println(priority, tag, line);
/frameworks/compile/libbcc/tools/build/
H A Dgen-config-from-mk.py34 for line in f:
36 if conf_patt.match(line.strip()):
42 if split_patt.match(line.strip()):
48 match = var_patt.match(line.strip())
52 elif split_patt.match(line.strip()):
/frameworks/base/tools/preload/
H A DRecord.java18 * One line from the loaded-classes file.
103 /** Source file line# */
107 * Parses a line from the loaded-classes file.
109 Record(String line, int lineNum) { argument
110 char typeChar = line.charAt(0);
116 default: throw new AssertionError("Bad line: " + line);
122 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]);
125 line
[all...]
H A DCompile.java46 String line;
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);
/frameworks/av/media/libstagefright/rtsp/
H A DASessionDescription.cpp65 AString line; local
67 // We accept both '\n' and '\r\n' line endings, if it's
69 line.setTo(desc, i, eolPos - i - 1);
71 line.setTo(desc, i, eolPos - i);
74 if (line.empty()) {
79 if (line.size() < 2 || line.c_str()[1] != '=') {
83 ALOGI("%s", line.c_str());
85 switch (line.c_str()[0]) {
88 if (strcmp(line
[all...]
/frameworks/compile/libbcc/tests/debuginfo/
H A Dtest_bcc_debuginfo.pl44 # at the beginning of a comment line.
47 my($line) = $_;
48 $i = index($line, "DEBUGGER:");
51 $s = substr($line, $i + $l);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dquantize.c109 Word32 line; local
122 for (line=0; line<noOfLines; line++) {
126 mdctSpeL = mdctSpectrum[line];
165 quaSpectrum[line] = qua ;
170 for (line=0; line<noOfLines; line++) {
174 mdctSpeL = mdctSpectrum[line];
235 Word32 line; local
331 Word32 line; local
[all...]
/frameworks/base/core/java/android/text/
H A DSelection.java119 * offset, or return false if the cursor is already on the top line.
137 int line = layout.getLineForOffset(end);
139 if (line > 0) {
142 if (layout.getParagraphDirection(line) ==
143 layout.getParagraphDirection(line - 1)) {
145 move = layout.getOffsetForHorizontal(line - 1, h);
147 move = layout.getLineStart(line - 1);
160 * offset, or return false if the cursor is already on the bottom line.
178 int line = layout.getLineForOffset(end);
180 if (line < layou
[all...]
H A DLayout.java63 * specified text with one line per paragraph.
72 * specified text slice with one line per paragraph.
108 * default line spacing
109 * @param spacingAdd amount to add to the default line spacing
128 * default line spacing
129 * @param spacingAdd amount to add to the default line spacing
226 // The baseline is the top of the following line minus the current line's descent.
248 // Reset tabStops, we'll rebuild if we encounter a line with
273 // to the paragraph direction of the line
472 getLineStartPos(int line, int left, int right) argument
613 getLineBounds(int line, Rect bounds) argument
629 getLineTop(int line) argument
634 getLineDescent(int line) argument
641 getLineStart(int line) argument
648 getParagraphDirection(int line) argument
655 getLineContainsTab(int line) argument
664 getLineDirections(int line) argument
833 getHorizontal(int offset, boolean trailing, int line, boolean clamped) argument
868 getLineLeft(int line) argument
899 getLineRight(int line) argument
930 getLineMax(int line) argument
940 getLineWidth(int line) argument
953 getLineExtent(int line, boolean full) argument
989 getLineExtent(int line, TabStops tabStops, boolean full) argument
1054 getOffsetForHorizontal(int line, float horiz) argument
1129 getLineEnd(int line) argument
1137 getLineVisibleEnd(int line) argument
1141 getLineVisibleEnd(int line, int start, int end) argument
1167 getLineBottom(int line) argument
1174 getLineBaseline(int line) argument
1183 getLineAscent(int line) argument
1285 shouldClampCursor(int line) argument
1378 addSelection(int line, int start, int end, int top, int bottom, Path dest) argument
1473 getParagraphAlignment(int line) argument
1494 getParagraphLeft(int line) argument
1506 getParagraphRight(int line) argument
1521 getParagraphLeadingMargin(int line) argument
1747 ellipsize(int start, int end, int line, char[] dest, int destoff, TextUtils.TruncateAt method) argument
1802 getEllipsisStart(int line) argument
1808 getEllipsisCount(int line) argument
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V21.java52 * Needed since "next line" may be null due to end of line.
71 final String line = super.readLine();
74 return line;
78 * Read one line, but make this object store it in its queue.
83 final String line = super.readLine();
87 mNextLine = line;
127 * Developers should not directly read a line from this object. Use
192 * @throws VCardException when the stream reached end of line
195 String line;
363 constructPropertyData(String line) argument
883 getPropertyNameUpperCase(String line) argument
[all...]
/frameworks/native/opengl/tools/glgen/src/
H A DParameterChecker.java25 String line;
26 while ((line = reader.readLine()) != null) {
27 String s = line.trim();
34 // skip single-line comments
/frameworks/base/core/java/com/android/internal/util/
H A DHexDump.java32 byte[] line = new byte[16];
46 if (line[j] > ' ' && line[j] < '~')
48 result.append(new String(line, j, 1));
66 line[lineIndex++] = b;
80 if (line[i] > ' ' && line[i] < '~')
82 result.append(new String(line, i, 1));

Completed in 1660 milliseconds

1234567