HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 101 - 125 of 2868) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/valgrind/main/gdbserver_tests/
mcvabits.stdoutB.exp 1 Breakpoint 1 at 0x........: file t.c, line 100.
3 Breakpoint 1, breakme (line=112) at t.c:100
4 100 if (line > 1000)
10 Breakpoint 1, breakme (line=117) at t.c:100
11 100 if (line > 1000)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h 56 bool reservedErrorCheck(int line, const TString& identifier);
59 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, int line);
60 bool parseMatrixFields(const TString&, int matSize, TMatrixFields&, int line);
61 void assignError(int line, const char* op, TString left, TString right);
62 void unaryOpError(int line, const char* op, TString operand);
63 void binaryOpError(int line, const char* op, TString left, TString right);
64 bool precisionErrorCheck(int line, TPrecision precision, TBasicType type);
65 bool lValueErrorCheck(int line, const char* op, TIntermTyped*);
68 bool globalErrorCheck(int line, bool global, const char* token);
69 bool constructorErrorCheck(int line, TIntermNode*, TFunction&, TOperator, TType*)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 56 for filename, lineno, name, line in traceback.extract_stack(stack):
57 logger('File: "%s", line %d, in %s' % (filename, lineno, name))
58 if line:
59 logger(' %s' % line.strip())
65 for line in frame_str.split('\n'):
66 if line:
67 logger(" %s" % line)
  /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);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
11 line = parts.shift.to_i
13 return Call.new( file, line )
18 return Call.new( file, line, method )
35 string = '%s:%i' % [ file, line ]
  /external/bison/src/
location.h 32 /* The (origin-1) line that contains the boundary.
33 If this is INT_MAX, the line number has overflowed. */
34 int line; member in struct:__anon1895
48 && a.line == b.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...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /external/valgrind/main/helgrind/tests/
tc06_two_races_xml.stderr.exp 9 <line>Helgrind, a thread error detector</line>
10 <line>Copyright (C) XXXX-YYYY, and GNU GPL'd, by OpenWorks LLP et al.</line>
11 <line>Using Valgrind-X.Y.X and LibVEX; rerun with -h for copyright info</line>
12 <line>Command: ./tc06_two_races</line>
22 <arg>--command-line-only=yes</arg>
55 <line>...</line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamState.cs 43 /// need to record the state of the input stream (char index, line,
51 /// <summary>What line number is the scanner at before processing buffer[p]? </summary>
52 internal int line; field in class:Antlr.Runtime.CharStreamState
54 /// <summary>What char position 0..n-1 in line is scanner before processing buffer[p]? </summary>
  /external/chromium/third_party/libjingle/source/talk/base/
checks.h 37 void Fatal(const char* file, int line, const char* format, ...);
  /external/clang/test/Analysis/
taint-tester.cpp 17 char *line = 0; local
22 while ((read = T.getline(&line, &len, stdin)) != -1) {
23 printf("%s", line); // no warning
25 free(line);
  /external/compiler-rt/lib/
int_util.h 26 void compilerrt_abort_impl(const char *file, int line,
  /external/llvm/lib/Support/
Valgrind.cpp 60 void AnnotateHappensBefore(const char *file, int line,
62 void AnnotateHappensAfter(const char *file, int line,
64 void AnnotateIgnoreWritesBegin(const char *file, int line) {}
65 void AnnotateIgnoreWritesEnd(const char *file, int line) {}
  /external/opencv/cv/src/
cvcalcimagehomography.cpp 51 cvCalcImageHomography( float* line, CvPoint3D32f* _center,
60 CvMat rx = cvMat( 1, 3, CV_32F, line );
74 if( !line || !_center || !_intrinsic || !_homography )
77 norm_xy = cvSqrt( line[0] * line[0] + line[1] * line[1] );
78 xy_cosa = line[0] / norm_xy;
79 xy_sina = line[1] / norm_xy;
81 norm_xz = cvSqrt( line[0] * line[0] + line[2] * line[2] )
    [all...]
  /external/proguard/src/proguard/
GPL.java 69 String line = reader.readLine(); local
70 if (line == null)
75 line = line.trim();
76 if (line.startsWith("at "))
78 line = line.substring(2).trim();
79 line = trimSuffix(line, '(');
80 line = trimSuffix(line, '.')
    [all...]
  /external/srec/portable/include/
pLastError.h 35 PORTABLE_API void printGetLastErrorInternal(const LCHAR* text, char* file, int line);
  /frameworks/av/libvideoeditor/osal/src/
M4PSW_DebugTrace.c 38 * 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,
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,
82 M4OSA_DebugTrace(line, fileName, level, stringCondition, message, returnedError);
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 26 private final int line; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
39 * @param lineContent content of a line where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
52 this.line = line;
57 int line, int column)
    [all...]
  /external/qemu/
gen-skin.py 45 line = " "
50 line = line + ","
54 print line
55 line = " "
58 line = line + "%3d" % d
65 if len(line) > 0:
66 print line
  /external/webkit/Source/WebCore/inspector/front-end/
DOMSyntaxHighlighter.js 52 var line = lines[i];
54 this._tokenizer.line = line;
61 var plainText = line.substring(plainTextStart, column);
64 var token = line.substring(column, newColumn);
69 } while (column < line.length)
71 if (plainTextStart < line.length) {
72 var plainText = line.substring(plainTextStart, line.length);
  /external/valgrind/main/coregrind/m_debuginfo/
readstabs.c 82 N_SLINE = 68, /* Source line number */
112 Int line; /* first line */ member in struct:__anon13827
119 Int prev; /* prev line */
120 Int no; /* current line */
121 Int ovf; /* line wrap */
122 Addr addr; /* start of this line */
123 Bool first; /* first line in function */
124 } line = { 0, 0, 0, 0, False }; local
128 68 N_SLINE a source line numbe
    [all...]
  /frameworks/base/tools/aapt/
SourcePos.cpp 14 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...]

Completed in 773 milliseconds

1 2 3 45 6 7 8 91011>>