/external/libxml2/result/noent/ |
cdata-2-byte-UTF-8.xml | 2 <!-- This tests that two-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). -->
|
cdata-3-byte-UTF-8.xml | 2 <!-- This tests that three-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). -->
|
cdata-4-byte-UTF-8.xml | 2 <!-- This tests that four-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). -->
|
/external/libxml2/test/ |
cdata-2-byte-UTF-8.xml | 2 <!-- This tests that two-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). -->
|
cdata-3-byte-UTF-8.xml | 2 <!-- This tests that three-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). -->
|
cdata-4-byte-UTF-8.xml | 2 <!-- This tests that four-byte UTF-8 characters are parsed properly when split across a buffer boundary of length XML_PARSER_BIG_BUFFER_SIZE (300 bytes). -->
|
/external/python/cpython2/Demo/pdist/ |
mac.py | 11 words = string.split(line)
|
/frameworks/base/libs/androidfw/tests/data/basic/ |
build | 27 --split basic_hdpi-v4.apk:hdpi \ 28 --split basic_xhdpi-v4.apk:xhdpi \ 29 --split basic_xxhdpi-v4.apk:xxhdpi \ 30 --split basic_de_fr.apk:de,fr \
|
/system/extras/memcpy-perf/ |
graph_memcpy.py | 25 line_split = line.split(",") 26 size.append(float(line_split[0].split(":")[1])) 27 perf.append(float(line_split[1].split(":")[1].split("G")[0]))
|
/toolchain/binutils/binutils-2.27/gold/testsuite/ |
split_i386_n.s | 1 # split_i386_n.s: i386 specific, -fsplit-stack calling non-split
|
split_s390_2_ns.s | 1 # split_s390_2_ns.s: s390 specific, -fsplit-stack calling non-split
|
split_s390_2_s.s | 13 .section .note.GNU-split-stack,"",@progbits
|
split_s390x_2_ns.s | 1 # split_s390x_2_ns.s: s390x specific, -fsplit-stack calling non-split
|
split_x32_n.s | 1 # split_x32_n.s: x32 specific, -fsplit-stack calling non-split
|
split_x86_64_n.s | 1 # split_x86_64_n.s: x86_64 specific, -fsplit-stack calling non-split
|
/cts/apps/CameraITS/tools/ |
wake_up_screen.py | 39 process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE) 41 screen_state = re.split(r'[s|=]', cmd_ret)[-1] 43 subprocess.Popen(power_event.split()) 47 subprocess.Popen(power_event.split()) 53 subprocess.Popen(unlock.split()) 60 subprocess.Popen(bright.split()) 66 subprocess.Popen(stay_bright.split())
|
/external/llvm/test/Analysis/RegionInfo/ |
loops_2.ll | 20 br label %bb58thread-split 22 bb58thread-split: ; preds = %bb64, %bb61, %pflini_.exit 25 bb58: ; preds = %bb60, %bb58thread-split 37 br label %bb58thread-split 48 ; BBIT: entry, bb23, bb.i, pflini_.exit, bb58thread-split, bb58, bb59, bb60, bb61, l98, 49 ; BBIT: bb23, bb.i, pflini_.exit, bb58thread-split, bb58, bb59, bb60, bb61, 52 ; RNIT: bb23, bb.i, pflini_.exit, bb58thread-split, bb58, bb59, bb60, bb61,
|
/external/llvm/utils/Target/ARM/ |
analyze-match-table.py | 8 lines = data[start:end].split("\n")[1:] 13 ln = ln.split("{", 1)[1] 15 a,bc = ln.split("{", 1) 16 b,c = bc.split("}", 1) 18 for s in a.split(",")] 19 items = [s.strip() for s in b.split(",")] 20 _,features = [s.strip() for s in c.split(",")]
|
/external/python/cpython2/Lib/sqlite3/ |
dbapi2.py | 51 version_info = tuple([int(x) for x in version.split(".")]) 52 sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")]) 65 return datetime.date(*map(int, val.split("-"))) 68 datepart, timepart = val.split(" ") 69 year, month, day = map(int, datepart.split("-")) 70 timepart_full = timepart.split(".") 71 hours, minutes, seconds = map(int, timepart_full[0].split(":"))
|
/external/python/cpython3/Lib/sqlite3/ |
dbapi2.py | 50 version_info = tuple([int(x) for x in version.split(".")]) 51 sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")]) 64 return datetime.date(*map(int, val.split(b"-"))) 67 datepart, timepart = val.split(b" ") 68 year, month, day = map(int, datepart.split(b"-")) 69 timepart_full = timepart.split(b".") 70 hours, minutes, seconds = map(int, timepart_full[0].split(b":"))
|
/external/skia/src/pathops/ |
SkOpEdgeBuilder.cpp | 267 // Split complex cubics (such as self-intersecting curves or 287 Splitsville* split = &splits[index]; local 288 split->fT[0] = index ? splitT[index - 1] : 0; 289 split->fT[1] = index < breaks ? splitT[index] : 1; 290 SkDCubic part = SkDCubic::SubDivide(pointsPtr, split->fT[0], split->fT[1]); 291 if (!part.toFloatPoints(split->fPts)) { 294 split->fVerb = SkReduceOrder::Cubic(split->fPts, split->fReduced) 300 Splitsville* split = &splits[index]; local [all...] |
/external/swiftshader/third_party/LLVM/utils/Target/ARM/ |
analyze-match-table.py | 8 lines = data[start:end].split("\n")[1:] 13 ln = ln.split("{", 1)[1] 15 a,bc = ln.split("{", 1) 16 b,c = bc.split("}", 1) 18 for s in a.split(",")] 19 items = [s.strip() for s in b.split(",")] 20 _,features = [s.strip() for s in c.split(",")]
|
/frameworks/native/include/input/ |
KeyLayoutMap.h | 34 // Axis value should be split into two axes 42 // When split, this is the axis used for values smaller than the split position. 45 // When split, this is the axis used for values after higher than the split position. 48 // The split value, or 0 if not split.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/ |
dbapi2.py | 50 version_info = tuple([int(x) for x in version.split(".")]) 51 sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")]) 63 return datetime.date(*map(int, val.split("-"))) 66 datepart, timepart = val.split(" ") 67 year, month, day = map(int, datepart.split("-")) 68 timepart_full = timepart.split(".") 69 hours, minutes, seconds = map(int, timepart_full[0].split(":"))
|
/prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/ |
dbapi2.py | 50 version_info = tuple([int(x) for x in version.split(".")]) 51 sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")]) 63 return datetime.date(*map(int, val.split("-"))) 66 datepart, timepart = val.split(" ") 67 year, month, day = map(int, datepart.split("-")) 68 timepart_full = timepart.split(".") 69 hours, minutes, seconds = map(int, timepart_full[0].split(":"))
|