/external/libvorbis/vq/ |
latticebuild.c | 30 command line: 64 char *line,*name; local 71 fprintf(stderr,"Need a lattice description file on the command line.\n"); 97 line=get_line(in); 98 if(sscanf(line,"%d %d %d %d",&quantvals,&dim,&addmul,&sequencep)!=4){ 99 if(sscanf(line,"%d %d %d",&quantvals,&dim,&addmul)!=3){ 100 fprintf(stderr,"Syntax error reading description file (line 1)\n"); 118 line=setup_line(in); 121 if(!line || sscanf(line,"%lf",quantlist+j)!=1) [all...] |
/external/qemu/ |
keymaps.c | 75 char line[1024]; local 105 if (fgets(line, 1024, f) == NULL) 107 len = strlen(line); 108 if (len > 0 && line[len - 1] == '\n') 109 line[len - 1] = '\0'; 110 if (line[0] == '#') 112 if (!strncmp(line, "map ", 4)) 114 if (!strncmp(line, "include ", 8)) { 115 parse_keyboard_layout(table, line + 8, k); 117 char *end_of_keysym = line; [all...] |
/frameworks/base/graphics/java/android/graphics/ |
LinearGradient.java | 41 /** Create a shader that draws a linear gradient along a line. 42 @param x0 The x-coordinate for the start of the gradient line 43 @param y0 The y-coordinate for the start of the gradient line 44 @param x1 The x-coordinate for the end of the gradient line 45 @param y1 The y-coordinate for the end of the gradient line 46 @param colors The colors to be distributed along the gradient line 49 the the colors are distributed evenly along the gradient line. 73 /** Create a shader that draws a linear gradient along a line. 74 @param x0 The x-coordinate for the start of the gradient line 75 @param y0 The y-coordinate for the start of the gradient line [all...] |
/frameworks/base/tools/preload/ |
Record.java | 18 * One line from the loaded-classes file. 103 /** Source file line# */ 107 * Parses a line from the loaded-classes file. 109 Record(String line, int lineNum) { 110 char typeChar = line.charAt(0); 116 default: throw new AssertionError("Bad line: " + line); 122 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]); 125 line = line.substring(1) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
ReplaceDialog.py | 90 line = res[0] 93 line = 1 100 res = self.engine.search_forward(text, prog, line, col, 0, ok) 103 line, m = res 104 chars = text.get("%d.0" % line, "%d.0" % (line+1)) 110 first = "%d.%d" % (line, i) 111 last = "%d.%d" % (line, j) 135 line, m = res 137 first = "%d.%d" % (line, i [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
multifile.py | 78 line = self.fp.readline() 80 if not line: 88 if self.is_data(line): 89 return line 92 marker = line.rstrip() 94 # Return the line (unstripped) if we don't. 103 return line 104 # We only get here if we see a section divider or EOM line 106 self.lastpos = self.tell() - len(line) 115 line = self.readline( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
ReplaceDialog.py | 90 line = res[0] 93 line = 1 100 res = self.engine.search_forward(text, prog, line, col, 0, ok) 103 line, m = res 104 chars = text.get("%d.0" % line, "%d.0" % (line+1)) 110 first = "%d.%d" % (line, i) 111 last = "%d.%d" % (line, j) 135 line, m = res 137 first = "%d.%d" % (line, i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
multifile.py | 78 line = self.fp.readline() 80 if not line: 88 if self.is_data(line): 89 return line 92 marker = line.rstrip() 94 # Return the line (unstripped) if we don't. 103 return line 104 # We only get here if we see a section divider or EOM line 106 self.lastpos = self.tell() - len(line) 115 line = self.readline( [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
config_file.c | 48 * wpa_config_get_line - Read the next configuration file line 49 * @s: Buffer for the line 52 * @line: Pointer to a variable storing the file line number 53 * @_pos: Buffer for the pointer to the beginning of data on the text line or 55 * Returns: Pointer to the beginning of data on the text line or %NULL if no 58 * This function reads the next non-empty line from the configuration file and 61 static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line, 67 (*line)++; 71 * The line was truncated - skip rest of it to avoi 353 int errors = 0, line = 0; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp.cc | 93 // Line type 264 static bool ParseGroupAttribute(const std::string& line, 286 static bool ParseSsrcAttribute(const std::string& line, 289 static bool ParseSsrcGroupAttribute(const std::string& line, 292 static bool ParseCryptoAttribute(const std::string& line, 295 static bool ParseRtpmapAttribute(const std::string& line, 300 static bool ParseFmtpAttributes(const std::string& line, 304 static bool ParseFmtpParam(const std::string& line, std::string* parameter, 308 static bool ParseRtcpFbAttribute(const std::string& line, 312 static bool ParseIceOptions(const std::string& line, 780 std::string line; local 1675 std::string line; local 2002 std::string line; local 2284 std::string line; local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
SlimStringStream.cs | 59 /** <summary>line number 1..n within the input</summary> */ 60 protected int line = 1; field in class:Antlr.Runtime.SlimStringStream 62 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */ 71 * values line, charPositionInLine, and p that can change as you 128 public int Line 132 return line; 136 line = value; 151 public int Line 183 line = 1; 199 System.out.println("newline char found on line: "+line [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...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_model.cc | 44 void AutocompletePopupModel::SetHoveredLine(size_t line) { 45 const bool is_disabling = (line == kNoMatch); 46 DCHECK(is_disabling || (line < result().size())); 48 if (line == hovered_line_) 51 // Make sure the old hovered line is redrawn. No need to redraw the selected 52 // line since selection overrides hover so the appearance won't change. 56 // Change the hover to the new line. 57 hovered_line_ = line; 62 void AutocompletePopupModel::SetSelectedLine(size_t line, 72 line = std::min(line, result.size() - 1) [all...] |
/external/chromium_org/base/ |
command_line.h | 12 // There is a singleton read-only CommandLine that represents the command line 33 // The native command line string type. 47 // Construct a new command line with |program| as argv[0]. 50 // Construct a new command line from an argument list. 58 // don't trust the CRT's parsing of the command line, but it still must be 59 // called to set up the command line. Returns false if initialization has 71 // command line. Note: returned value is mutable, but not thread safe; 86 // Constructs and returns the represented command line string. 96 // Returns the original command line string as a vector of strings. 99 // Get and Set the program part of the command line string (the first item) [all...] |
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_popup_model.cc | 46 void OmniboxPopupModel::SetHoveredLine(size_t line) { 47 const bool is_disabling = (line == kNoMatch); 48 DCHECK(is_disabling || (line < result().size())); 50 if (line == hovered_line_) 53 // Make sure the old hovered line is redrawn. No need to redraw the selected 54 // line since selection overrides hover so the appearance won't change. 58 // Change the hover to the new line. 59 hovered_line_ = line; 64 void OmniboxPopupModel::SetSelectedLine(size_t line, 74 line = std::min(line, result.size() - 1) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/ |
commitannouncer_unittest.py | 37 'authorABC@chromium.org committed "Commit test subject line" ' 42 Commit test subject line 56 'authorABC@chromium.org committed "Commit test subject line" ' 62 Commit test subject line 74 'authorABC@chromium.org committed "Commit test subject line" ' 79 Commit test subject line 91 'authorABC@chromium.org committed "Commit test subject line" ' 96 Commit test subject line 104 'authorABC@chromium.org committed "Commit test subject line" ' 109 Commit test subject line [all...] |
/external/icu4c/tools/gennorm2/ |
gennorm2.cpp | 81 /* preset then read command line options */ 88 "error in command line argument \"%s\"\n", 190 char line[300]; local 192 while(NULL!=fgets(line, (int)sizeof(line), f)) { 193 char *comment=(char *)strchr(line, '#'); 197 u_rtrim(line); 198 if(line[0]==0) { 201 if(line[0]=='*') { 202 const char *s=u_skipWhitespace(line+1) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_quopri.py | 27 # First line ends with a space 87 # Some long lines. First, a single line of 108 characters 91 # A line of exactly 76 characters, no soft line break should be needed 94 # A line of 77 characters, forcing a soft line break at position 75, 95 # and a second line of exactly 2 characters (because the soft line 96 # break `=' sign counts against the line length limit). 100 # A line of 151 characters, forcing a soft line break at position 75 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_quopri.py | 27 # First line ends with a space 87 # Some long lines. First, a single line of 108 characters 91 # A line of exactly 76 characters, no soft line break should be needed 94 # A line of 77 characters, forcing a soft line break at position 75, 95 # and a second line of exactly 2 characters (because the soft line 96 # break `=' sign counts against the line length limit). 100 # A line of 151 characters, forcing a soft line break at position 75 [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
StaticLayoutLineBreakingTest.java | 114 for (int line = 0; line < breaks.length; line++) { 115 breaks[line] = staticLayout.getLineEnd(line); 125 for (int line = 0; line < count; line++) { 126 int lineStart = staticLayout.getLineStart(line); 127 int lineEnd = staticLayout.getLineEnd(line); [all...] |
/external/clang/test/Analysis/ |
NewDelete-path-notes.cpp | 44 // CHECK-NEXT: <key>line</key><integer>6</integer> 49 // CHECK-NEXT: <key>line</key><integer>6</integer> 57 // CHECK-NEXT: <key>line</key><integer>6</integer> 62 // CHECK-NEXT: <key>line</key><integer>6</integer> 74 // CHECK-NEXT: <key>line</key><integer>6</integer> 82 // CHECK-NEXT: <key>line</key><integer>6</integer> 87 // CHECK-NEXT: <key>line</key><integer>6</integer> 107 // CHECK-NEXT: <key>line</key><integer>6</integer> 112 // CHECK-NEXT: <key>line</key><integer>6</integer> 120 // CHECK-NEXT: <key>line</key><integer>8</integer [all...] |
plist-output-alternate.m | 69 // CHECK-NEXT: <key>line</key><integer>5</integer> 77 // CHECK-NEXT: <key>line</key><integer>5</integer> 82 // CHECK-NEXT: <key>line</key><integer>5</integer> 102 // CHECK-NEXT: <key>line</key><integer>5</integer> 107 // CHECK-NEXT: <key>line</key><integer>5</integer> 115 // CHECK-NEXT: <key>line</key><integer>6</integer> 120 // CHECK-NEXT: <key>line</key><integer>6</integer> 132 // CHECK-NEXT: <key>line</key><integer>6</integer> 140 // CHECK-NEXT: <key>line</key><integer>6</integer> 145 // CHECK-NEXT: <key>line</key><integer>6</integer [all...] |
retain-release-path-notes.m | 257 // CHECK-NEXT: <key>line</key><integer>46</integer> 262 // CHECK-NEXT: <key>line</key><integer>46</integer> 270 // CHECK-NEXT: <key>line</key><integer>46</integer> 275 // CHECK-NEXT: <key>line</key><integer>46</integer> 287 // CHECK-NEXT: <key>line</key><integer>46</integer> 295 // CHECK-NEXT: <key>line</key><integer>46</integer> 300 // CHECK-NEXT: <key>line</key><integer>46</integer> 320 // CHECK-NEXT: <key>line</key><integer>46</integer> 325 // CHECK-NEXT: <key>line</key><integer>46</integer> 333 // CHECK-NEXT: <key>line</key><integer>47</integer [all...] |
/external/clang/tools/libclang/ |
CXSourceLocation.cpp | 123 unsigned line, 132 SourceLocation SLoc = CXXUnit->getLocation(File, line, column); 136 File->getName(), line, column); 143 *Log << llvm::format("(\"%s\", %d, %d) = ", File->getName(), line, column) 173 static void createNullLocation(CXFile *file, unsigned *line, 177 if (line) 178 *line = 0; 186 static void createNullLocation(CXString *filename, unsigned *line, 190 if (line) 191 *line = 0 [all...] |
/external/libnfc-nci/src/adaptation/ |
libmain.c | 347 char *line; local 354 line = line_buff; 355 *line++ = ' '; 356 *line++ = ' '; 357 *line++ = ' '; 358 *line++ = ' '; 359 *line++ = ' '; 360 *line++ = ' '; 363 byte2hex((const char*)&j, &line); 364 *line++ = ' ' [all...] |