/external/chromium_org/v8/tools/ |
run-valgrind.py | 44 # Compute the command line. 63 for line in errors: 64 if LEAK_LINE_MATCHER.search(line): 65 leaks.append(line) 66 if not LEAK_OKAY_MATCHER.search(line):
|
/external/clang/test/Misc/ |
emit-html.c | 4 #line 42 "foo.c"
|
/external/harfbuzz/src/ |
harfbuzz-debug.h | 18 void Android_Debug(const char* file, int line, const char* function, const char* format, ...)
|
/external/icu4c/common/unicode/ |
parseerr.h | 34 * <p>The line, offset, and context fields are optional; parsing 59 * The line on which the error occured. If the parser uses this 60 * field, it sets it to the line number of the source text line on 62 * parse does not support line numbers, the value will be <= 0. 65 int32_t line; member in struct:UParseError 68 * The character offset to the error. If the line field is >= 1, 69 * then this is the offset from the start of the line. Otherwise,
|
/external/libvpx/libvpx/examples/ |
gen_example_text.sh | 61 while IFS=$'\n' read -r line; do 62 case "$line" in 71 block_name=${line##~* } 74 *) echo "$line"
|
/external/llvm/include/llvm/Support/ |
Valgrind.h | 27 LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line, 29 LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line, 31 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line); 32 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
|
/external/mesa3d/src/gallium/auxiliary/os/ |
os_memory_debug.h | 48 debug_malloc(const char *file, unsigned line, const char *function, 52 debug_calloc(const char *file, unsigned line, const char *function, 56 debug_free(const char *file, unsigned line, const char *function, 60 debug_realloc(const char *file, unsigned line, const char *function,
|
/external/openssh/ |
fixpaths | 15 die $0: error in command line arguments.
|
/external/v8/tools/ |
run-valgrind.py | 44 # Compute the command line. 63 for line in errors: 64 if LEAK_LINE_MATCHER.search(line): 65 leaks.append(line) 66 if not LEAK_OKAY_MATCHER.search(line):
|
/frameworks/av/libvideoeditor/osal/src/ |
M4PSW_Trace.c | 39 * 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 , 69 (char *)message, line, file); 74 M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_TRACE_traceFunction(M4OSA_UInt32 line, 94 (char *)message, line, (char*)file);
|
/frameworks/av/media/libstagefright/foundation/ |
ParsedMessage.cpp | 106 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, 0, colonPos) 181 AString line; local 226 AString line; local [all...] |
/frameworks/rs/cpu_ref/linkloader/utils/ |
rsl_assert.h | 25 unsigned line,
|
/ndk/sources/host-tools/ndk-stack/ |
ndk-stack-parser.h | 45 /* Parses a line from the ADB log output. 49 * line - ADB log output line to parse. The line must be zero-terminated, and 52 * 0 If the line has been part of the crash dump. 53 * 1 If the line has not been part of the crash dump. 54 * -1 If there was an error when parsing the line. 57 int ParseLine(NdkCrashParser* parser, const char* line);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
tst-boost.c | 81 char *line = NULL; local 108 while ((len = getline (&line, &line_len, f)) > 0) 113 if (line[len - 1] == '\n') 114 line[--len] = '\0'; 116 puts (line); 118 if (line[0] == ';') 121 if (line[0] == '\0') 124 if (line[0] == '-') 126 if (strstr (line, "REG_BASIC")) 130 if (strstr (line, "REG_ICASE") [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
ISourceRevealer.java | 25 * Reveal a particular line in the given application. 28 * @param line the line to reveal 31 boolean reveal(String applicationName, String className, int line); 37 * @param lineNumber line number in the file, -1 if not known
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
ANTLRStringStream.java | 47 /** line number 1..n within the input */ 48 protected int line = 1; field in class:ANTLRStringStream 50 /** The index of the character relative to the beginning of the line 0..n-1 */ 57 * values line, charPositionInLine, and p that can change as you 92 line = 1; 103 System.out.println("newline char found on line: "+line+ 106 line++; 165 state.line = line; [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
ANTLRStringStream.js | 18 * The current line in the input. 23 this.line = 1; 26 * The index of the character relative to the beginning of the line. 27 * Ranges from 0 to (length of line - 1). 42 * values line, charPositionInLine, and p that can change as you 83 this.line = 1; 95 this.line++; 147 * tracks line/col info as well as input index so its markers are 170 state.line = this.line; [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
interactive.rb | 21 # [:line] the initial line number; default: +1+ 28 @line = options.fetch :line, 1 33 @readline = block or raise( ArgumentError, "no line-reading block was provided" ) 40 if line = @readline.call 41 line = line.to_s.encode( Encoding::UTF_8 ) 42 @string << line 43 @data.concat( line.codepoints.to_a [all...] |
/external/chromium_org/net/android/javatests/src/org/chromium/net/ |
X509UtilTest.java | 41 String line = reader.readLine(); local 42 while (line != null && !line.contains(BEGIN_MARKER)) line = reader.readLine(); 45 while (line != null && line.contains(BEGIN_MARKER)) line = reader.readLine(); 48 while (line != null && !line.contains(END_MARKER)) { 49 builder.append(line.trim()) [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
lock_common.tcl | 76 fconfigure $chan -buffering line 94 set line [gets $chan] 95 if { $line == "OVER" } { 103 append r $line 110 set line "OVER" 112 set line [gets $chan] 115 if { $line == "OVER" } { 120 append ::tfnb($chan) $line 137 # process, followed by the word "OVER" on a line of its own. The child 158 set line [gets stdin [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/ |
GLAPISpec.java | 76 String line; local 77 while ((line = reader.readLine()) != null) { 79 int commentPos = line.indexOf('#'); 81 line = line.substring(0, commentPos); 83 line = line.trim(); 86 if (line.length() > 0) { 87 GLAPISpec spec = parseLine(line); 104 * Parse a GL API Specification entry from "/entries.in". Each line is of the format [all...] |
/external/bluetooth/bluedroid/stack/include/ |
wcassert.h | 38 extern "C" wc_assert(char *message, char *file, UINT32 line); 40 void wc_assert(char *message, char *file, UINT32 line); 43 #define WC_ASSERT(_x) if ( !(_x) ) wc_assert("ASSERT at %s line %d\n", __FILE__, __LINE__); 44 #define WC_ASSERT_ALWAYS() wc_assert("ASSERT! at %s line %d\n", __FILE__, __LINE__);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
common.cc | 64 void LogAssert(const char * function, const char * file, int line, 67 LOG(LS_ERROR) << file << "(" << line << ")" << ": ASSERT FAILED: "
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/ |
bench_wsh.py | 48 line = request.ws_stream.receive_message() 49 parts = line.split(' ')
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ExceptionStatePlaceholder.cpp | 38 NoExceptionStateAssertionChecker::NoExceptionStateAssertionChecker(const char* file, int line) 41 , m_line(line) { }
|