HomeSort by relevance Sort by last modified time
    Searched refs:startline (Results 1 - 25 of 38) sorted by null

1 2

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
SimpleCharStream.java 257 public SimpleCharStream(java.io.Reader dstream, int startline,
261 line = startline;
270 public SimpleCharStream(java.io.Reader dstream, int startline,
273 this(dstream, startline, startcolumn, 4096);
280 public void ReInit(java.io.Reader dstream, int startline,
284 line = startline;
299 public void ReInit(java.io.Reader dstream, int startline,
302 ReInit(dstream, startline, startcolumn, 4096);
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
312 this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
SimpleCharStream.java 257 public SimpleCharStream(java.io.Reader dstream, int startline,
261 line = startline;
270 public SimpleCharStream(java.io.Reader dstream, int startline,
273 this(dstream, startline, startcolumn, 4096);
280 public void ReInit(java.io.Reader dstream, int startline,
284 line = startline;
299 public void ReInit(java.io.Reader dstream, int startline,
302 ReInit(dstream, startline, startcolumn, 4096);
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
312 this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
SimpleCharStream.java 257 public SimpleCharStream(java.io.Reader dstream, int startline,
261 line = startline;
270 public SimpleCharStream(java.io.Reader dstream, int startline,
273 this(dstream, startline, startcolumn, 4096);
280 public void ReInit(java.io.Reader dstream, int startline,
284 line = startline;
299 public void ReInit(java.io.Reader dstream, int startline,
302 ReInit(dstream, startline, startcolumn, 4096);
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
312 this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
parse.cpp 93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
278 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
298 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
422 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
439 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
500 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
512 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
562 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
569 return parseUCARules(tag, startline, status);
572 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1919 uint32_t startline; local
    [all...]
  /external/icu/icu4c/source/tools/genrb/
parse.cpp 115 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
300 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
320 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
444 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
461 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
522 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
534 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
584 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
591 return parseUCARules(tag, startline, status);
594 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1975 uint32_t startline; local
    [all...]
  /external/chromium_org/tools/site_compare/commands/
timeload.py 50 ["-s", "--startline"], "First line of URL list", type="int")
55 cmd.AddDependency("--startline", "--list")
60 cmd.AddDependency("--count", "--startline")
111 startline = command["--startline"]
113 endline = startline+command["--count"]
117 open(command["--list"], "r").readlines()[startline:endline]]
compare2.py 59 ["-s", "--startline"], "First line of URL list", type="int")
64 cmd.AddDependency("--startline", "--list")
69 cmd.AddDependency("--count", "--startline")
97 startline = command["--startline"]
99 endline = startline+command["--count"]
103 open(command["--list"], "r").readlines()[startline:endline]]
maskmaker.py 49 ["-s", "--startline"], "First line of URL list", type="int")
54 cmd.AddDependency("--startline", "--list")
59 cmd.AddDependency("--count", "--startline")
111 startline = command["--startline"] variable in class:ExecuteMaskmaker.MaskmakerURL
113 endline = startline+command["--count"]
117 open(command["--list"], "r").readlines()[startline:endline]]
  /external/chromium_org/third_party/cython/src/Cython/
CodeWriter.py 51 def startline(self, s = u""): member in class:DeclarationWriter
64 self.startline(s)
156 self.startline(u"cdef ")
164 self.startline(decl)
205 self.startline(node.name)
218 self.startline(u"cdef class ")
233 self.startline(u"ctypedef ")
240 self.startline(u"def %s(" % node.name)
257 self.startline(u"cimport ")
265 self.startline(u"from "
    [all...]
  /external/chromium_org/tools/site_compare/utils/
browser_iterate.py 52 ["-s", "--startline"], "First line of URL list", type="int")
57 cmd.AddDependency("--startline", "--list")
62 cmd.AddDependency("--count", "--startline")
140 startline = command["--startline"]
142 endline = startline+command["--count"]
149 for line in xrange(startline-1):
152 for line in xrange(endline-startline):
  /frameworks/base/core/java/android/text/
DynamicLayout.java 261 int startline = getLineForOffset(where); local
262 int startv = getLineTop(startline);
299 mInts.deleteAt(startline, endline - startline);
300 mObjects.deleteAt(startline, endline - startline);
307 if (mIncludePad && startline == 0) {
318 mInts.adjustValuesBelow(startline, START, after - before);
319 mInts.adjustValuesBelow(startline, TOP, startv - endv + ht);
356 mInts.insertAt(startline + i, ints)
    [all...]
Layout.java 280 int startLine = getLineForOffset(sp.getSpanStart(spans[n]));
283 if (i < startLine + count) {
1430 int startline = getLineForOffset(start); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 138 startline = line
146 if wrapped and line > startline:
160 startline = line
168 if wrapped and line < startline:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 138 startline = line
146 if wrapped and line > startline:
160 startline = line
168 if wrapped and line < startline:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 212 startline = False
219 startline = True
233 startline = True
234 elif startline and indents:
236 startline = False
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 207 startline = False
214 startline = True
237 startline = True
238 elif startline and indents:
240 startline = False
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 212 startline = False
219 startline = True
233 startline = True
234 elif startline and indents:
236 startline = False
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 207 startline = False
214 startline = True
237 startline = True
238 elif startline and indents:
240 startline = False
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
term_entry.h 66 long startline; member in struct:entry
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
term_entry.h 66 long startline; member in struct:entry
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-compiler-api/2.2/
plexus-compiler-api-2.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.help.base_3.5.2.v201011171123.jar 
  /external/pcre/dist/
pcre_dfa_exec.c 3194 BOOL utf, anchored, startline, firstline; local
    [all...]
  /external/sqlite/dist/orig/
shell.c 3554 int startline = 0; \/* Line number for start of current input *\/ local
3619 "Error: near line %d:", startline); local
    [all...]

Completed in 1066 milliseconds

1 2