/third_party/ffmpeg/libavcodec/ |
H A D | hevcdec.c | 2094 int split = lc->cu.part_mode == PART_NxN; in intra_prediction_unit() local 2095 int pb_size = (1 << log2_cb_size) >> split; in intra_prediction_unit() 2096 int side = split + 1; in intra_prediction_unit() 3305 /* split the input packet into NAL units, so we know the upper bound on the in decode_nal_units()
|
/third_party/python/Lib/test/ |
H A D | test_descr.py | 3667 try: ''.split('') 3669 else: self.fail("''.split('') doesn't raise ValueError") 4742 str.split(fake_str) 4760 str.split(thing)
|
H A D | test__xxsubinterpreters.py | 876 self.assertEqual(str(caught.exception).split(':')[0],
|
H A D | test_minidom.py | 1462 names = "id notid text enum ref refs ent ents nm nms".split()
|
H A D | test_exceptions.py | 215 line = src.split('\n')[lineno-1]
|
H A D | test_collections.py | 613 'self', 'sequence', 'set', 'side', 'specified', 'split', 'start', 2182 words = Counter('which witch had which witches wrist watch'.split())
|
H A D | test_ast.py | 757 self.assertCountEqual(ast.expr.__doc__.split("\n"), expressions)
|
H A D | test_builtin.py | 2304 data = 'The quick Brown fox Jumped over The lazy Dog'.split()
|
H A D | test_set.py | 846 result = text[1:-1].split(', ')
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 1571 IMGUI_API void split(char separator, ImVector<TextRange>* out) const; 1763 // Draw channels are used by the Columns API to "split" the render list into different channels while building, so items of each column can be batched together.
|
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberUtil.java | 853 * to split a national significant number into geographical area code and subscriber number. It 922 * to split a national significant number into NDC and subscriber number. The NDC of a phone 971 String[] numberGroups = NON_DIGITS_PATTERN.split(nationalSignificantNumber); in getLengthOfNationalDestinationCode()
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | phonenumberutil.js | 688 * and punctuation. We split up the two reg-exes here and combine them when 1299 * clients could use it to split a national significant number into geographical 1366 * object passed in, so that clients could use it to split a national 1424 var numberGroups = nationalSignificantNumber.split(
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_widgets.py | 170 options = 'none text image center top bottom left right'.split()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | LowerTypeTests.cpp | 790 // Update phis in Else resulting from InitialBB being split in lowerTypeTestCall() 1316 TFAttr.getValueAsString().split(Features, ','); in isThumbFunction() 1753 // If only some of the modules were split, we cannot correctly perform in lower() 1755 // with partially split modules during the thin link, and would have emitted in lower()
|
/third_party/libevdev/ |
H A D | configure | 7034 " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ 7041 " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ 7043 " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ 13497 # split strings by '.' and convert to numeric. Append some zeros 13500 minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] 13532 # split strings by '.' and convert to numeric. Append some zeros 13535 minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] 15153 nfields = split(line, field, "@") 15284 split(lin [all...] |
/third_party/skia/third_party/externals/libpng/ |
H A D | configure | 6477 " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ 6484 " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ 6486 " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ 14989 nfields = split(line, field, "@") 15120 split(line, arg, " ") 15128 split(mac1, mac2, "(") #)
|
/third_party/eudev/ |
H A D | configure | 1499 --enable-split-usr Include hard-coded default search paths in / and 7165 " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ 7172 " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ 7174 " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ 18749 # Check whether --enable-split-usr was given. 20894 nfields = split(line, field, "@") 21025 split(line, arg, " ") 21033 split(mac1, mac2, "(") #)
|
/third_party/python/Objects/ |
H A D | unicodeobject.c | 921 #include "stringlib/split.h" 930 #include "stringlib/split.h" 940 #include "stringlib/split.h" 950 #include "stringlib/split.h" 10360 split(PyObject *self, in split() function 13152 return split(s, sep, maxsplit); in PyUnicode_Split() 13156 str.split as unicode_split 13159 The separator used to split the string. 13161 When set to None (the default value), will split on any whitespace 13170 Note, str.split() i [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | MeasureUnitTest.java | 2676 String[] nameParts = javaName.split("_PER_"); in getUnitsToPerParts()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_instr_alu.cpp | 644 AluGroup *AluInstr::split(ValueFactory& vf) in split() function in r600::AluInstr
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_events.py | 52 version = tuple(map(int, version.split('.')))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 384 StringRef DisplayName = SP->getName().split('<').first; in getFuncIdForSubprogram() 2420 // MethodOverloadList can be split correctly. in lowerRecordFieldList()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 142 struct ImDrawListSplitter; // Helper to split a draw list into different layers which can be drawn into out of order, then flattened back. 2093 IMGUI_API void split(char separator, ImVector<ImGuiTextRange>* out) const; 2335 // Split/Merge functions are used to split the draw list into different layers which can be drawn into out of order. 2476 // - Use to split render into layers. By switching channels to can render out-of-order (e.g. submit FG primitives before BG primitives) 2480 // Using the ImDrawList::ChannelsXXXX you cannot stack a split over another.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/ |
H A D | X86AsmParser.cpp | 1795 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.'); in ParseIntelDotOperator()
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_fixers.py | 1611 b = """x = raw_input(invite).split()""" 1612 a = """x = input(invite).split()""" 1616 b = """x = raw_input(invite) . split ()""" 1617 a = """x = input(invite) . split ()""" 3836 return os.path.pathsep.join(path.split("/"))
|