HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 126 - 150 of 3501) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/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/srec/portable/include/
pLastError.h 35 PORTABLE_API void printGetLastErrorInternal(const LCHAR* text, char* file, int 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);
  /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/valgrind/main/coregrind/m_debuginfo/
readstabs.c 83 N_SLINE = 68, /* Source line number */
113 Int line; /* first line */ member in struct:__anon16753
120 Int prev; /* prev line */
121 Int no; /* current line */
122 Int ovf; /* line wrap */
123 Addr addr; /* start of this line */
124 Bool first; /* first line in function */
125 } line = { 0, 0, 0, 0, False }; local
129 68 N_SLINE a source line numbe
    [all...]
  /bionic/libc/tools/
generate-NOTICE.py 74 for line in lines[start:end]:
75 line = line.replace("\t", " ")
76 line = line.replace("/* ", "")
77 line = line.replace(" * ", "")
78 line = line.replace("** ", "")
79 line = line.replace("# ", ""
    [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...]
  /external/eigen/scripts/
eigen_gen_credits.cpp 11 // this function takes a line that may contain a name and/or email address,
13 std::string contributor_name(const std::string& line)
19 if(line.find("markb@localhost.localdomain") != string::npos)
24 if(line.find("kayhman@contact.intra.cea.fr") != string::npos)
35 size_t position_of_email_address = line.find_first_of('<');
41 if(line.find("hauke.heibel") != string::npos)
46 result = line.substr(0, position_of_email_address);
53 if(line.find("convert-repo") != string::npos)
56 result = line;
71 string line; local
135 string line; local
    [all...]
  /external/valgrind/main/drd/tests/
thread_name_xml.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
46 <line>...</line>
    [all...]
  /external/skia/tools/
sanitize_source_files.py 20 """Sanitizes source files with the specified file and line modifiers.
27 line_modifiers: list - line-modification methods which should be applied to
46 line_number = 0 # Keeps track of line numbers in the source file.
49 # Run the line modifiers for each line in this file.
50 for line in lines:
51 original_line = line
55 line = modifier(line, full_item_path, line_number)
56 if original_line != line
    [all...]
  /external/webkit/Tools/Scripts/
parse-malloc-history 30 # based on total number of bytes allocated, and filtering based on command-line
71 my $line = $file[$i];
76 ($callCount, $byteCount) = ($line =~ /(\d+) calls for (\d+) bytes/);
84 ($byteCount) = ($line =~ /Leak: [x[:xdigit:]]* size=(\d+)/);
87 while (!($line =~ "Call stack: ")) {
89 $line = $file[$i];
100 ($byteCount) = ($line =~ /Key: (?:\d+), (\d+) bytes/);
102 $line = $file[++$i];
105 if ($line =~ /\): (.*)$/) {
110 $line = $file[++$i]
    [all...]
  /build/tools/
check_radio_versions.py 30 for line in f:
31 line = line.strip() variable
32 if line.startswith("require"):
33 key, value = line.split()[1].split("=", 1)
59 for line in f:
60 line = line.strip() variable
61 if not line or line.startswith("#"): continu
    [all...]
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 4 def cut_comment(line):
5 first_hash = line.find('#')
7 return line
8 return line[:first_hash]
12 def line_split(line):
13 '''Split a line based on a semicolon separator.'''
16 return [normalise(x) for x in line.split(';')]
36 for line in tokens:
37 if len(line) == 2:
38 codepoints = codepoints_parse(line[0]
    [all...]
  /external/markdown/markdown/extensions/
imagelinks.py 51 for line in lines:
53 if line.startswith("<~~~~~~~"):
60 new_lines.append(line)
64 line = line.strip()
66 if line.endswith("~~~~~~>") or not line:
98 elif line[1:6] == "~~~~~" :
101 parts = line.split()
102 line = parts[0
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
initscan.c 0 #line 2 "scan.c"
175 /* Whether we're considered to be at the beginning of a line.
    [all...]
  /external/qemu/android/utils/
lineinput.c 18 char* line; member in struct:LineInput
31 /* Error codes returned by the internal line reading function(s) */
44 input->line = input->line0;
60 /* Grow the line buffer a bit */
64 char* line; local
67 line = input->line;
68 if (line == input->line0)
69 line = NULL;
71 AARRAY_RENEW(line, input->line_size)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 51 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, int line)
55 error(line, "illegal vector field selection", compString.c_str(), "");
117 error(line, "illegal vector field selection", compString.c_str(), "");
124 error(line, "vector field selection out of range", compString.c_str(), "");
130 error(line, "illegal - vector component fields not from the same set", compString.c_str(), "");
144 bool TParseContext::parseMatrixFields(const TString& compString, int matSize, TMatrixFields& fields, int line)
152 error(line, "illegal length of matrix field selection", compString.c_str(), "");
158 error(line, "illegal matrix field selection", compString.c_str(), "");
165 error(line, "illegal matrix field selection", compString.c_str(), "");
173 error(line, "illegal matrix field selection", compString.c_str(), "")
    [all...]
  /external/chromium/chrome/browser/importer/
mork_reader.cc 121 std::string line;
122 if (!ReadLine(&line) ||
123 line.compare("// <!-- <mdb:mork:z v=\"1.4\"/> -->") != 0)
127 while (ReadLine(&line)) {
130 size_t len = line.size();
131 while (idx < len && line[idx] == ' ')
136 // Look at the line to figure out what section type this is
137 if (StartsWithASCII(&line[idx], "< <(a=c)>", true)) {
140 ParseMap(line, idx, &column_name_map);
155 } else if (StartsWithASCII(&line[idx], "<(", true))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStreamState.h 37 NSUInteger line; variable
42 @property (assign) NSUInteger line; variable
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
antlr.stg 36 location(file, line, column) ::= "<file>:<line>:<column>:"
gnu.stg 36 location(file, line, column) ::= "<file>:<line>:"
vs2005.stg 36 location(file, line, column) ::= "<file>(<line>,<column>)"
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
PEMUtil.java 58 String line; local
61 while ((line = readLine(in)) != null)
63 if (line.startsWith(_header1) || line.startsWith(_header2))
69 while ((line = readLine(in)) != null)
71 if (line.startsWith(_footer1) || line.startsWith(_footer2))
76 pemBuf.append(line);

Completed in 823 milliseconds

1 2 3 4 56 7 8 91011>>