HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 176 - 200 of 1509) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 19 in To:, From:, Cc:, etc. fields, as well as Subject: lines.
72 the Base64 encoding), and subsequent lines must start with a space.
110 lines = []
116 lines.append('=?%s?b?%s?=' % (charset, line))
117 # Glue the lines together and return it. BAW: should we be able to
120 return joiner.join(lines)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 62 lines = ['a', 'b', 'c']
65 write_file(foo, lines)
67 self.assertEqual(content, lines)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 19 in To:, From:, Cc:, etc. fields, as well as Subject: lines.
72 the Base64 encoding), and subsequent lines must start with a space.
110 lines = []
116 lines.append('=?%s?b?%s?=' % (charset, line))
117 # Glue the lines together and return it. BAW: should we be able to
120 return joiner.join(lines)
  /external/libxml2/doc/
apibuild.py 650 lines = comment.split("\n")
652 for line in lines:
711 lines = self.comment.split('\n')
712 if lines[0] == '*':
713 del lines[0]
714 if lines[0] != "* %s:" % (name):
717 self.warning(" Expecting '* %s:' got '%s'" % (name, lines[0]))
719 del lines[0]
720 while len(lines) > 0 and lines[0] == '*'
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 95 void Max_LCD::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
96 if (lines > 1) {
99 _numlines = lines;
103 if ((dotsize != 0) && (lines == 1)) {
138 // finally, set # lines, font size, etc.
  /external/deqp/scripts/opengl/
src_util.py 120 lines = map(renderCommand, iface.commands)
122 lines = indentLines(lines)
123 writeInlFile(os.path.join(directory, filename), lines)
  /external/elfutils/src/libdw/
dwarf_getsrclines.c 92 /* If there are a large number of lines don't blow up the stack.
734 Dwarf_Lines *lines = buf; local
735 lines->nlines = nlinelist;
738 lines->info[i] = sortlines[i]->line;
739 lines->info[i].files = files;
746 lines->info[nlinelist - 1].end_sequence = 1;
750 *linesp = lines;
805 &node->lines, &node->files) != 0)
819 *linesp = (*found)->lines;
839 dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines
    [all...]
  /external/elfutils/src/libdwfl/
dwfl_lineinfo.c 40 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
  /external/libvorbis/vq/
latticetune.c 95 long lines=0; local
99 lines++;
100 if(!(lines&0xfff))spinnit("codewords so far...",lines);
  /external/lldb/include/lldb/Core/
StringList.h 76 SplitIntoLines (const char *lines, size_t len);
  /external/llvm/test/MC/AArch64/
arm64-separator.s 8 ; being on separate lines in the output. We look for the "; encoding" string
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
CustomInlineMethodResolver.java 59 List<String> lines = new ArrayList<String>(); local
68 lines.add(line);
77 inlineMethods = new Method[lines.size()];
80 inlineMethods[i] = parseAndResolveInlineMethod(lines.get(i));
  /libcore/luni/src/test/java/libcore/java/net/
NetworkInterfaceTest.java 50 String lines[] = new String[] { local
56 ifAddresses, lines);
64 String[] lines = new String[] { local
72 ifAddresses, lines);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 128 String[] lines = new String[stack.length]; local
130 lines[i] = stack[i].toString();
133 entry.holdingStacks.add(lines);
135 mProfileData.addSample(lines);
  /packages/providers/CalendarProvider/
maketests.py 43 lines = str.split("\n")
46 for line in lines:
87 lines = stripTimezone(s) variable
88 for s in lines:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
adjlist.py 14 The adjacency list format consists of lines with node labels. The
56 lines : string
57 Lines of data in adjlist format.
107 Marker for comment lines
147 def parse_adjlist(lines, comments = '#', delimiter = None,
149 """Parse lines of a graph adjacency list representation.
153 lines : list or iterator of strings
163 Marker for comment lines
175 The graph corresponding to the lines in adjacency list format.
179 >>> lines = ['1 2 5'
    [all...]
edgelist.py 64 lines : string
65 Lines of data in adjlist format.
174 def parse_edgelist(lines, comments='#', delimiter=None,
176 """Parse lines of an edge list representation of a graph.
182 The graph corresponding to lines
192 Marker for comment lines
202 >>> lines = ["1 2",
205 >>> G = nx.parse_edgelist(lines, nodetype = int)
213 >>> lines = ["1 2 {'weight':3}",
216 >>> G = nx.parse_edgelist(lines, nodetype = int
    [all...]
  /frameworks/base/core/jni/
com_android_internal_net_NetworkStatsFactory.cpp 122 Vector<stats_line> lines; local
136 // Skip lines that don't start with in index. In particular,
215 lines.push_back(s);
226 int size = lines.size();
258 ScopedLocalRef<jstring> ifaceString(env, env->NewStringUTF(lines[i].iface));
261 uid[i] = lines[i].uid;
262 set[i] = lines[i].set;
263 tag[i] = lines[i].tag;
264 rxBytes[i] = lines[i].rxBytes;
265 rxPackets[i] = lines[i].rxPackets
    [all...]
  /external/lldb/examples/python/
delta.py 56 description='''Parse a log file that contains timestamps and convert the timestamps to delta times between log lines.'''
73 show delta times between log lines and also keep track of how long it takes
87 lines = file.read().splitlines()
88 for line in lines:
  /external/llvm/utils/Target/ARM/
analyze-match-table.py 8 lines = data[start:end].split("\n")[1:]
12 for ln in lines:
  /external/markdown/markdown/extensions/
imagelinks.py 39 def run(self, lines):
51 for line in lines:
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 230 * checking and reallocation. Used for drawing lines.
589 float lines[] = new float[8 * 4]; local
597 lines[i++] = xOffset;
598 lines[i++] = 0;
599 lines[i++] = xOffset;
600 lines[i++] = mHeight;
604 lines[i++] = 0;
605 lines[i++] = 0;
606 lines[i++] = mWidth;
607 lines[i++] = 0
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
DiscourseLogger.java 25 * A class to keep last N of lines sent to the server and responses received from the server.
108 String[] lines = getLines(); local
109 if (lines.length == 0) {
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
ArrayInitializerFormatter.java 75 public void outCommentLines(final String lines) {
77 mOut.print(lines);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
traceback.py 126 lines = format_exception_only(etype, value)
127 for line in lines:
136 these lines are concatenated and printed, exactly the same text is
155 SyntaxError exceptions, it contains several lines that (when
181 lines = []
188 lines.append(' File "%s", line %d\n' % (filename, lineno))
190 lines.append(' %s\n' % badline.strip())
196 lines.append(' %s^\n' % ''.join(caretspace))
199 lines.append(_format_final_exc_line(stype, value))
200 return lines
    [all...]

Completed in 721 milliseconds

1 2 3 4 5 6 78 91011>>