/prebuilts/python/linux-x86/2.7.5/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(":"))
|
/external/chromium_org/v8/test/mjsunit/regress/ |
string-split-monkey-patching.js | 28 // Test that String.prototype.split with an regexp does not call the 37 "-".split(/-/); 38 "I-must-not-use-push!".split(/-/); 39 "Oh-no!".split(/(-)/); 40 "a".split(/(a)|(b)/);
|
/art/runtime/base/ |
timing_logger.cc | 82 base::TimingLogger::SplitTiming split = *it; local 83 uint64_t split_time = split.first; 84 const char* split_name = split.second; 134 DCHECK(new_split_label != NULL) << "Starting split (" << new_split_label << ") with null label."; 140 CHECK(current_split_ != NULL) << "Ending a non-existent split."; 142 DCHECK(current_split_->explicit_ == true) << "Explicitly ending scoped split: " << current_split_->label_; 147 // Ends the current split and starts the one given by the label. 149 CHECK(current_split_ != NULL) << "Inserting a new split (" << new_split_label 150 << ") into a non-existent split."; 151 DCHECK(new_split_label != NULL) << "New split (" << new_split_label << ") with null label." 160 base::TimingLogger::SplitTiming split = *it; local 171 base::TimingLogger::SplitTiming split = *it; local 182 base::TimingLogger::SplitTiming split = *it; local [all...] |
/external/llvm/test/Transforms/IndVarSimplify/ |
2007-06-06-DeleteDanglesPtr.ll | 22 br i1 false, label %bb.outer5.split.split.split.us, label %cond_true194.split 24 bb.outer5.split.split.split.us: ; preds = %cond_next 30 cond_next188.us503.us: ; preds = %bb.outer5.split.split.split.u [all...] |
/external/llvm/test/CodeGen/X86/ |
2008-03-14-SpillerCrash.ll | 19 bb311.split: ; preds = %bb305.us 22 bb327.split: ; preds = %bb314.us 24 bb374.outer: ; preds = %bb311.split, %bb271.us 25 %tmp370371552.pn.in = phi i32 [ %tmp233, %bb271.us ], [ %tmp313, %bb311.split ] ; <i32> [#uses=1] 26 %tmp278279.pn = phi i64 [ 0, %bb271.us ], [ %tmp373.reg2mem.0.ph, %bb311.split ] ; <i64> [#uses=1] 27 %s.5.ph = phi i32* [ null, %bb271.us ], [ %tmp376.us, %bb311.split ] ; <i32*> [#uses=1] 40 br i1 false, label %bb311.split, label %bb314.us 43 br i1 %tmp320.us, label %bb374.us, label %bb327.split 44 bb383: ; preds = %bb374.us, %bb311.split
|
/external/clang/test/Driver/ |
split-debug.c | 1 // Check that we split debug output properly 7 // CHECK-ACTIONS: objcopy{{.*}}--extract-dwo{{.*}}"split-debug.dwo" 8 // CHECK-ACTIONS: objcopy{{.*}}--strip-dwo{{.*}}"split-debug.o" 14 // CHECK-NO-ACTIONS-NOT: -split-dwarf 25 // CHECK-OPTION: "-split-dwarf-file" "split-debug.dwo"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
nturl2path.py | 20 components = url.split('/') 23 comp = url.split('|') 29 components = comp[1].split('/') 53 components = p.split('\\') 55 comp = p.split(':') 61 components = comp[1].split('\\')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
nturl2path.py | 20 components = url.split('/') 23 comp = url.split('|') 29 components = comp[1].split('/') 53 components = p.split('\\') 55 comp = p.split(':') 61 components = comp[1].split('\\')
|
/external/chromium_org/tools/cygprofile/ |
patch_orderfile.py | 14 uninstrumented_shlib + ' | egrep "( t )|( W )|( T )"').split('\n') 18 if (len(nmline.split()) == 4): 27 if (len(nmlines[nm_index].split()) == 4): 28 nm_int = int (nmlines[nm_index].split()[0], 16) 29 size = int (nmlines[nm_index].split()[1], 16) 30 fnames = [nmlines[nm_index].split()[3]] 33 nmlines[nm_index].split()[0], 16): 34 fnames.append(nmlines[nm_index].split()[3]) 70 functionName = line.replace('.text.', '').split('.clone.')[0].strip() 81 functionName = line.split()[3 [all...] |
/external/chromium_org/net/data/websocket/ |
split_packet_check.html | 4 <title>test ws split packet</title> 15 var url = scheme + '://' + host + ':' + port + '/close-with-split-packet';
|
/external/clang/lib/Format/ |
BreakableToken.cpp | 41 static BreakableToken::Split getCommentSplit(StringRef Text, 46 return BreakableToken::Split(StringRef::npos, 0); 64 // If the comment is only whitespace, we cannot split. 65 return BreakableToken::Split(StringRef::npos, 0); 72 return BreakableToken::Split(BeforeCut.size(), 75 return BreakableToken::Split(StringRef::npos, 0); 78 static BreakableToken::Split getStringSplit(StringRef Text, 84 return BreakableToken::Split(StringRef::npos, 0); 86 return BreakableToken::Split(StringRef::npos, 0); 119 return BreakableToken::Split(SpaceOffset + 1, 0) [all...] |
/frameworks/support/v4/honeycomb/android/support/v4/view/ |
ViewGroupCompatHC.java | 26 public static void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { 27 group.setMotionEventSplittingEnabled(split);
|
/development/ndk/platforms/android-9/samples/native-audio/ |
default.properties | 13 split.density=false
|
/external/chromium/chrome/browser/resources/keyboard/ |
manifest.json | 6 "incognito" : "split",
|
/external/chromium_org/chrome/browser/performance_monitor/ |
key_builder.cc | 220 std::vector<std::string> split; local 221 base::SplitString(event_key, kDelimiter, &split); 222 DCHECK(split[EVENT_TYPE].size() == 1); 224 static_cast<int>(split[EVENT_TYPE].at(0))]; 228 std::vector<std::string> split; local 229 base::SplitString(key, kDelimiter, &split); 230 DCHECK(split[RECENT_TYPE].size() == 1); 231 return RecentKey(split[RECENT_TIME], 233 static_cast<int>(split[RECENT_TYPE].at(0))], 234 split[RECENT_ACTIVITY]) 238 std::vector<std::string> split; local [all...] |
/external/chromium_org/chrome/browser/resources/bookmark_manager/ |
manifest.json | 10 "incognito" : "split",
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
bugzilla-4840.html | 10 Drag the vertical split bar below to the left and release it. 14 The frames will resize accordingly, with the split bar where you released it. 18 The split bar will not follow the mouse when dragged to the left. After releasing 19 the mouse button, the frames will not resize and the split bar will continue to
|
/external/chromium_org/third_party/re2/re2/testing/ |
exhaustive1_test.cc | 16 vector<string> ops = Split(" ", 28 vector<string> ops = Split(" ", 32 ExhaustiveTest(3, 2, Split(" ", "a (a) b"), ops, 37 ExhaustiveTest(4, 3, Split(" ", "a (a)"), ops,
|
/external/chromium_org/v8/test/webkit/fast/js/ |
string-split-double-empty-expected.txt | 24 This test checks for a regression against split() function returns wrong answer for second empty split. 29 PASS "".split(/s+/) is [""] 30 PASS "".split(/s+/) is [""]
|
string-split-double-empty.js | 25 'This test checks for a regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=44600">split() function returns wrong answer for second empty split</a>.' 28 shouldBe('"".split(/s+/)', '[""]'); 29 shouldBe('"".split(/s+/)', '[""]');
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_dboolhuff.h | 47 unsigned int split = 1 + (((br->range - 1) * probability) >> 8); local 55 bigsplit = (VP9_BD_VALUE)split << (BD_VALUE_SIZE - 8); 57 range = split; 60 range = br->range - split;
|
/external/qemu-pc-bios/vgabios/ |
Notes | 4 - need to split video init function
|
/external/regex-re2/re2/testing/ |
exhaustive1_test.cc | 16 vector<string> ops = Split(" ", 28 vector<string> ops = Split(" ", 32 ExhaustiveTest(3, 2, Split(" ", "a (a) b"), ops, 37 ExhaustiveTest(4, 3, Split(" ", "a (a)"), ops,
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
TextUtilsTest.java | 54 assertThat(TextUtils.split("", ",").length, equalTo(0)); 57 assertArrayEquals(TextUtils.split("abc", ","), new String[]{"abc"}); 60 assertArrayEquals(TextUtils.split("abc,def", ","), new String[]{"abc", "def"}); 63 assertArrayEquals(TextUtils.split("abc, def", ","), new String[]{"abc", " def"});
|
/external/skia/tests/ |
PathOpsQuadParameterizationTest.cpp | 30 // split large quadratic 34 SkDQuadPair split = test.chopAt(0.5); local 37 &test, &midThird, &split.first(), &split.second()
|