/dalvik/libdex/ |
DexDebugInfo.cpp | 154 u4 line = readUnsignedLeb128(&stream); local 224 line += readSignedLeb128(&stream); 294 line += DBG_LINE_BASE + (adjopcode % DBG_LINE_RANGE); 298 done = posCb(cnxt, address, line);
|
/dalvik/vm/ |
Debugger.h | 37 * a single line. 72 int line; /* line #; could be -1 */ member in struct:StepControl 73 const AddressSet* pAddressSet; /* if non-null, address set for line */ 290 /* Make an AddressSet for a line, for single stepping */ 291 const AddressSet *dvmAddressSetForLine(const Method* method, int line);
|
/development/tools/idegen/src/ |
Configuration.java | 206 String line; local 207 while ((line = in.readLine()) != null) { 208 String trimmed = line.trim(); 212 // line ends in a ";". 245 * Reads a list of regular expressions from a file, one per line, and adds 249 * @param file containing regular expressions, one per line 256 String line; local 257 while ((line = in.readLine()) != null) { 258 String trimmed = line.trim();
|
/external/aac/libAACenc/src/ |
quantize.cpp | 109 int line; local 115 for (line = 0; line < noOfLines; line++) 117 FIXP_DBL accu = fMultDiv2(mdctSpectrum[line],quantizer); 131 quaSpectrum[line] = (SHORT)(-((LONG)(k + accu) >> (DFRACT_BITS-1-16))); 144 quaSpectrum[line] = (SHORT)((LONG)(k + accu) >> (DFRACT_BITS-1-16)); 147 quaSpectrum[line]=0; 169 INT line; local 174 for (line = 0; line < noOfLines; line++) [all...] |
/external/aac/libSYS/src/ |
cmdl_parser.cpp | 87 Description: command line parser 142 FDKprintf("No command line arguments\n"); 148 FDKprintf("Error allocating memory line %d, file %s\n", __LINE__, __FILE__); 161 FDKprintf("Error allocating memory line %d, file %s\n", __LINE__, __FILE__); 501 static char line[CMDL_MAX_STRLEN*CMDL_MAX_ARGC]; variable 535 /* Obtain a command line from config file */ 536 while (FDKfgets(line, CMDL_MAX_STRLEN*CMDL_MAX_ARGC, config_fp) != NULL) 541 line_ptr = (char*)FDKstrchr(line, '\n'); 545 line_ptr = line; 547 /* Scan the line and put the command line params into argv * [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3input.h | 98 /** The line number we are traversing in the input file. This gets incremented 101 ANTLR3_UINT32 line; member in struct:ANTLR3_INPUT_STREAM_struct 103 /** Pointer into the input buffer where the current line 108 /** The offset within the current line of the current character 172 /** Pointer to function to return the current line number in the input stream 176 /** Pointer to function to return the current line buffer in the input stream 182 * is no way at the moment to position the input stream at a particular line 187 /** Pointer to function to return the current offset in the current input stream line 191 /** Pointer to function to set the current line number in the input stream 193 void (*setLine) (struct ANTLR3_INPUT_STREAM_struct * input, ANTLR3_UINT32 line); 255 ANTLR3_UINT32 line; member in struct:ANTLR3_LEX_STATE_struct [all...] |
/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...] |
CommonToken.java | 34 protected int line; field in class:CommonToken 75 line = oldToken.getLine(); 90 public void setLine(int line) { 91 this.line = line; 120 return line; 189 return "[@"+getTokenIndex()+","+start+":"+stop+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
LineNumberReaderTest.java | 56 assertEquals("Returned incorrect line number--expected 0, got ", 0, lnr 62 assertTrue("Returned incorrect line number--expected 2, got: " 71 String line; local 74 line = lnr.readLine(); 76 assertTrue("Failed to return to marked position", line.equals(lnr 111 assertEquals("Returned incorrect line number", 0, lnr.getLineNumber()); 112 String line = null; local 114 line = lnr.readLine(); 116 assertEquals("Returned incorrect string", "1", line); 117 assertTrue("Returned incorrect line number :" + lnr.getLineNumber() 138 String line = null; local [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMException.java | 226 int line = locator.getLineNumber(); local 234 if (0 != line) { 235 sbuffer.append("; Line#: "); 236 sbuffer.append(line); 259 int line = locator.getLineNumber(); local 267 if (0 != line) { 268 sbuffer.append("; Line#: "); 269 sbuffer.append(line);
|
/external/chromium/chrome/browser/autofill/ |
autofill_merge_unittest.cc | 166 // Parse the input line by line. 170 std::string line = lines[i]; local 172 if (line != kProfileSeparator) { 174 size_t separator_pos = line.find(kFieldSeparator); 176 string16 field_type = UTF8ToUTF16(line.substr(0, separator_pos)); 177 string16 value = UTF8ToUTF16(line.substr(separator_pos + kFieldOffset)); 188 // The first line is always a profile separator, and the last profile is not 190 if ((i > 0 && line == kProfileSeparator) || i == lines.size() - 1) {
|
/external/chromium/chrome/browser/extensions/ |
user_script_master.cc | 28 static bool GetDeclarationValue(const base::StringPiece& line, 31 base::StringPiece::size_type index = line.find(prefix); 35 std::string temp(line.data() + index + prefix.length(), 36 line.length() - index - prefix.length()); 54 base::StringPiece line; local 79 line.set(script_text.data() + line_start, line_end - line_start); 82 if (line.starts_with(kUserScriptBegin)) 85 if (line.starts_with(kUserScriptEng)) 89 if (GetDeclarationValue(line, kIncludeDeclaration, &value)) { 94 } else if (GetDeclarationValue(line, kExcludeDeclaration, &value)) [all...] |
/external/chromium/chrome/browser/ |
process_info_snapshot_mac.cc | 153 std::string line; local 160 // the line. 173 std::getline(in, proc_info.command); // Get the rest of the line. 224 std::string line; local 225 while (std::getline(top_in, line)) { 226 std::istringstream in(line, std::istringstream::in); 308 std::string line; local 309 while (std::getline(top_in, line)) { 310 std::istringstream in(line, std::istringstream::in);
|
/external/chromium/chrome/browser/safe_browsing/ |
protocol_parser.cc | 26 // Helper function for quick scans of a line oriented protocol. Note that we use 28 // to copy data into 'line'. This form of 'assign' does not call strlen on 32 bool GetLine(const char* input, int input_len, std::string* line) { 36 line->assign(input, pos - input); 62 std::string line; local 64 if (!GetLine(data, length, &line)) 67 if (line == "e:pleaserekey") { 72 offset = static_cast<int>(line.size()) + 1; 76 if (!safe_browsing_util::VerifyMAC(key, line, data, length)) 81 if (!GetLine(data, length, &line)) 469 std::string line; local [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/ |
IRCProxyWebSocket.java | 103 String line = in_.readLine(); local 104 System.out.println("<< " + line); 105 outbound_.sendMessage(frame_, line + "\r\n");
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-death-test-internal.h | 77 const char* file, int line, DeathTest** test); 132 const char* file, int line, DeathTest** test) = 0; 139 const char* file, int line, DeathTest** test); 186 int line; member in struct:testing::internal::InternalRunDeathTestFlag
|
/external/chromium/testing/gmock/include/gmock/ |
gmock-spec-builders.h | 248 int line() const { return line_; } function in class:testing::internal::UntypedOnCallSpecBase 346 // line number of the statement => line_ 443 const void* mock_obj, const char* file, int line); 468 // - The constructors and destructor are defined out-of-line because 680 ExpectationBase(const char* file, int line, const string& source_text); 686 int line() const { return line_; } 693 *os << FormatFileLocation(file(), line()) << " "; 834 int line_; // The line number of the expectation. [all...] |
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 const char* file, int line, DeathTest** test); 238 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/chromium_org/base/debug/ |
stack_trace_win.cc | 69 // to the ostream os. The format for each line of the backtrace is: 102 // Attempt to retrieve line number information. 104 IMAGEHLP_LINE64 line = {}; local 105 line.SizeOfStruct = sizeof(IMAGEHLP_LINE64); 107 &line_displacement, &line); 109 // Output the backtrace line. 119 (*os) << " (" << line.FileName << ":" << line.LineNumber << ")"; 131 // get line numbers.
|
/external/chromium_org/chrome/browser/ |
process_info_snapshot_mac.cc | 158 // the line. 171 std::getline(in, proc_info.command); // Get the rest of the line. 220 std::string line; local 221 while (std::getline(top_in, line)) { 222 std::istringstream in(line, std::istringstream::in);
|
/external/chromium_org/chrome/browser/safe_browsing/ |
protocol_parser.cc | 19 // Helper function for quick scans of a line oriented protocol. Note that we use 21 // to copy data into 'line'. This form of 'assign' does not call strlen on 25 bool GetLine(const char* input, int input_len, std::string* line) { 29 line->assign(input, pos - input); 53 std::string line; local 55 if (!GetLine(data, length, &line)) 58 offset = static_cast<int>(line.size()) + 1; 63 base::SplitString(line, ':', &cmd_parts); 161 // The line providing the name of the list (i.e. 'goog-phish-shavar'). 166 // The line providing the next earliest time (in seconds) to re-query [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/ |
IRCProxyWebSocket.java | 103 String line = in_.readLine(); local 104 System.out.println("<< " + line); 105 outbound_.sendMessage(frame_, line + "\r\n");
|
/external/chromium_org/chrome/common/importer/ |
firefox_importer_utils.cc | 109 const std::string& line = lines[i]; local 110 if (line.empty() || line[0] == '#' || line[0] == ';') 112 size_t equal = line.find('='); 114 std::string key = line.substr(0, equal); 116 base::StringToInt(line.substr(equal + 1), version); 123 *app_path = base::FilePath::FromUTF8Unsafe(line.substr(equal + 1)); 224 // Stop at the last ')' on this line.
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
adb_impl.cc | 132 return Status(kUnknownError, "Failed to set command line file " + 198 std::string line = lines[i]; local 199 if (line.empty()) 202 base::SplitStringAlongWhitespace(line, &tokens);
|
/external/chromium_org/chrome/test/logging/win/ |
log_file_printer.cc | 61 int line, 68 *out << filename << '(' << line << ')'; local 110 int line, 158 // Prints the context info at the start of each line: pid, tid, time, etc. 220 int line, 226 WriteLocationToStream(file, line, &location_stream);
|