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

123456

/frameworks/base/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/base/opengl/libs/GLES2_dbg/
H A Dgenerate_debug_in.py25 for line in lines:
26 if line.find("API_ENTRY(") >= 0: # a function prototype
27 returnType = line[0: line.find(" API_ENTRY(")]
28 functionName = line[line.find("(") + 1: line.find(")")] #extract GL function name
29 parameterList = line[line.find(")(") + 2: line
[all...]
H A Dgenerate_debugger_message_proto.py23 for line in lines:
24 if line.find("EGL_ENTRY(") >= 0:
25 line = line.split(",")[1].strip() #extract EGL function name
26 output.write(" %s = %d;\n" % (line, i))
32 for line in lines:
33 if line.find("API_ENTRY(") >= 0:
34 line = line[line
[all...]
H A Dgenerate_api_cpp.py23 def RemoveAnnotation(line):
24 if line.find(":") >= 0:
25 annotation = line[line.find(":"): line.find(" ", line.find(":"))]
26 return line.replace(annotation, "*")
28 return line
44 for line in lines:
45 if line
[all...]
H A Dgenerate_caller_cpp.py30 for line in lines:
31 if line.find("API_ENTRY(") >= 0: # a function prototype
32 returnType = line[0: line.find(" API_ENTRY(")]
33 functionName = line[line.find("(") + 1: line.find(")")] #extract GL function name
34 parameterList = line[line.find(")(") + 2: line
[all...]
/frameworks/base/media/libstagefright/foundation/
H A Dhexdump.cpp37 AString line; local
42 line.append(tmp);
46 line.append(' ');
49 line.append(" ");
52 line.append(tmp);
56 line.append(' ');
64 line.append((char)data[offset + i]);
66 line.append('.');
70 LOGI("%s", line.c_str());
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DATResponseParser.java26 private String line; field in class:ATResponseParser
33 ATResponseParser (String line) argument
35 this.line = line;
49 char c = line.charAt(tokStart);
67 char c = line.charAt(i);
86 return line.substring(tokStart, tokEnd);
92 return next < line.length();
98 int len = line.length();
111 char c = line
[all...]
/frameworks/compile/libbcc/runtime/lib/
H A Deprintf.c27 const char* line, const char* file)
29 fprintf(stderr, format, assertion_expression, line, file);
26 __eprintf(const char* format, const char* assertion_expression, const char* line, const char* file) argument
/frameworks/compile/linkloader/utils/
H A Drsl_assert.cpp29 unsigned line,
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n";
37 LOGE("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/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/media/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/jni/
H A Dandroid_database_SQLiteDebug.cpp97 char line[1024]; local
112 if(fgets(line, 1024, fp) == 0) return 0;
114 len = strlen(line);
116 line[--len] = 0;
119 if (line[18] == '-') skip = 1;
121 start = strtoul(line, 0, 16);
123 if (len > 50 && !strncmp(line + 49, "/tmp/sqlite-heap", strlen("/tmp/sqlite-heap"))) {
127 if (fgets(line, 1024, fp) == 0) return 0;
128 if (sscanf(line, "Size: %d kB", &size) != 1) return 0;
129 if (fgets(line, 102
[all...]
/frameworks/base/tools/localize/
H A DSourcePos.cpp17 int line; member in struct:ErrorPos
22 ErrorPos(const string& file, int line, const string& error);
39 line(that.line),
46 line(l),
60 if (this->line < rhs.line) return true;
61 if (this->line == rhs.line) {
72 && this->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/
H A Dgen-config-from-mk.py17 for line in f:
19 if conf_patt.match(line.strip()):
23 if split_patt.match(line.strip()):
29 match = var_patt.match(line.strip())
33 elif split_patt.match(line.strip()):
/frameworks/base/media/libstagefright/httplive/
H A DM3UParser.cpp164 AString line; local
166 line.setTo(&data[offset], offsetLF - offset - 1);
168 line.setTo(&data[offset], offsetLF - offset);
171 // LOGI("#%s#", line.c_str());
173 if (line.empty()) {
178 if (lineNo == 0 && line == "#EXTM3U") {
185 if (line.startsWith("#EXT-X-TARGETDURATION")) {
189 err = parseMetaData(line, &mMeta, "target-duration");
190 } else if (line.startsWith("#EXT-X-MEDIA-SEQUENCE")) {
194 err = parseMetaData(line,
255 parseMetaData( const AString &line, sp<AMessage> *meta, const char *key) argument
279 parseMetaDataDuration( const AString &line, sp<AMessage> *meta, const char *key) argument
303 parseStreamInf( const AString &line, sp<AMessage> *meta) argument
360 FindNextUnquoted( const AString &line, char what, size_t offset) argument
381 parseCipherInfo( const AString &line, sp<AMessage> *meta, const AString &baseURI) argument
[all...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DVisualDiffUtils.java31 * Preprocesses the list of diffs so that new line characters appear only at the end of
36 * LinkedList of diffs where new line character appears only on the end of
69 String line = "";
79 line = processDiff(diff, lineNums, lines, line, i, delSpan, isLastDiff);
80 if (line.equals("")) {
86 // If the line is currently empty and this insertion is the entire line, the
87 // expected line is absent, so it has no line numbe
159 processDiff(diff_match_patch.Diff diff, LinkedList<Integer> lineNums, LinkedList<String> lines, String line, int i, String begSpan, boolean forceOutputLine) argument
[all...]
/frameworks/base/tools/preload/
H A DRecord.java18 * One line from the loaded-classes file.
75 /** Source file line# */
79 * Parses a line from the loaded-classes file.
81 Record(String line, int lineNum) { argument
82 char typeChar = line.charAt(0);
88 default: throw new AssertionError("Bad line: " + line);
94 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]);
97 line
[all...]
/frameworks/base/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 LOGI("%s", line.c_str());
85 switch (line.c_str()[0]) {
88 if (strcmp(line
[all...]

Completed in 617 milliseconds

123456