HomeSort by relevance Sort by last modified time
    Searched full:thisline (Results 1 - 16 of 16) sorted by null

  /art/test/122-npe/src/
Main.java 41 int thisLine = 41;
49 check(npe, thisLine += 4);
57 check(npe, thisLine += 8);
65 check(npe, thisLine += 8);
72 check(npe, thisLine += 7);
79 check(npe, thisLine += 7);
86 check(npe, thisLine += 7);
93 check(npe, thisLine += 7);
100 check(npe, thisLine += 7);
107 check(npe, thisLine += 7)
    [all...]
  /external/toybox/toys/posix/
uniq.c 64 char *thisline = NULL, *prevline = NULL, *tmpline, eol = '\n'; local
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
82 t1 = skip(thisline);
85 t1 = thisline;
104 prevline = thisline;
105 thisline = tmpline;
119 free(thisline);
  /art/test/439-npe/src/
Main.java 312 int thisLine = 312;
317 check(npe, thisLine += 2, methodLine, "$opt$noinline$setObjectField");
323 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setIntField");
329 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setFloatField");
335 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setLongField");
341 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setDoubleField");
347 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setByteField");
353 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setBooleanField");
359 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setCharField");
365 check(npe, thisLine += 6, methodLine += 5, "$opt$noinline$setShortField")
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
HexDumpEncoder.java 51 private byte thisLine[] = new byte[16];
92 thisLine[currentByte] = buf[off];
110 if ((thisLine[i] < ' ') || (thisLine[i] > 'z')) {
113 pStream.write(thisLine[i]);
  /external/llvm/utils/vim/indent/
llvm.vim 35 let thisline = getline(v:lnum)
36 if thisline =~ '^\s*}'
46 if thisline =~ ':\s*$'
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /external/python/cpython2/Lib/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /external/python/cpython3/Lib/
quopri.py 93 # length limitations. Then do the thisline->prevline dance.
94 thisline = EMPTYSTRING.join(outline)
95 while len(thisline) > MAXLINESIZE:
98 write(thisline[:MAXLINESIZE-1], lineEnd=b'=\n')
99 thisline = thisline[MAXLINESIZE-1:]
101 prevline = thisline
  /prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 383 static char thisline[1024]; local
386 thisline[0] = 0;
387 p = fgets(thisline, sizeof(thisline)-1, stdin);
390 return p?thisline:NULL;
  /external/skia/src/pathops/
SkPathOpsTSect.h 301 bool isParallel(const SkDLine& thisLine, const SkTSect<OppCurve, TCurve>* opp) const;
    [all...]
  /external/skqp/src/pathops/
SkPathOpsTSect.h 301 bool isParallel(const SkDLine& thisLine, const SkTSect<OppCurve, TCurve>* opp) const;
    [all...]
  /external/python/cpython3/Lib/email/
contentmanager.py 137 thisline = data[i:i+unencoded_bytes_per_line]
138 encoded_lines.append(binascii.b2a_base64(thisline).decode('ascii'))

Completed in 912 milliseconds