Home
last modified time | relevance | path

Searched refs:joined (Results 1 - 25 of 26) sorted by relevance

12

/third_party/skia/src/utils/
H A DSkMultiPictureDocument.cpp44 SkSize joined = {0, 0}; in join() local
46 joined = SkSize{std::max(joined.width(), s.width()), std::max(joined.height(), s.height())}; in join()
48 return joined; in join()
195 SkSize joined = {0.0f, 0.0f}; in SkMultiPictureDocumentRead() local
197 joined = SkSize{std::max(joined.width(), dstArray[i].fSize.width()), in SkMultiPictureDocumentRead()
198 std::max(joined.height(), dstArray[i].fSize.height())}; in SkMultiPictureDocumentRead()
206 PagerCanvas canvas(joined in SkMultiPictureDocumentRead()
[all...]
/third_party/python/Objects/
H A Daccu.c34 PyObject *joined; in flush_accumulator() local
40 joined = join_list_unicode(acc->small); in flush_accumulator()
41 if (joined == NULL) in flush_accumulator()
44 Py_DECREF(joined); in flush_accumulator()
47 ret = PyList_Append(acc->large, joined); in flush_accumulator()
48 Py_DECREF(joined); in flush_accumulator()
H A Dtypeobject.c4534 PyObject *joined; in object_new() local
4538 into joined. */ in object_new()
4551 joined = PyUnicode_Join(&_Py_STR(comma_sep), sorted_methods); in object_new()
4554 if (joined == NULL) in object_new()
4564 joined); in object_new()
4565 Py_DECREF(joined); in object_new()
/third_party/node/lib/
H A Dpath.js425 let joined;
431 if (joined === undefined)
432 joined = firstPart = arg;
434 joined += `\\${arg}`;
438 if (joined === undefined)
441 // Make sure that the joined path doesn't start with two slashes, because
474 while (slashCount < joined.length &&
475 isPathSeparator(StringPrototypeCharCodeAt(joined, slashCount))) {
481 joined = `\\${StringPrototypeSlice(joined, slashCoun
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dthread-posix.c44 bool joined; member
139 if (t->joined) in pa_thread_join()
142 t->joined = true; in pa_thread_join()
157 t->joined = true; in pa_thread_self()
/third_party/skia/third_party/externals/spirv-tools/tools/reduce/
H A Dreduce.cpp293 std::stringstream joined; in main() local
294 joined << interestingness_test[0]; in main()
296 joined << " " << interestingness_test[i]; in main()
298 std::string interestingness_command_joined = joined.str(); in main()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/reduce/
H A Dreduce.cpp293 std::stringstream joined; in main() local
294 joined << interestingness_test[0]; in main()
296 joined << " " << interestingness_test[i]; in main()
298 std::string interestingness_command_joined = joined.str(); in main()
/third_party/python/Lib/test/
H A Dtest_shlex.py350 joined = shlex.join(split_command)
351 self.assertEqual(joined, command)
357 joined = shlex.join(split_command)
358 resplit = shlex.split(joined)
H A Dtest_http_cookiejar.py232 joined = join_header_words([[("foo", None), ("bar", "baz")]])
233 self.assertEqual(joined, "foo; bar=baz")
/third_party/spirv-tools/tools/reduce/
H A Dreduce.cpp282 std::stringstream joined; in main() local
283 joined << interestingness_test[0]; in main()
285 joined << " " << interestingness_test[i]; in main()
287 std::string interestingness_command_joined = joined.str(); in main()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DPrint.hpp185 std::vector<Value *> joined; in vals() local
188 joined.insert(joined.end(), list.begin(), list.end()); in vals()
190 return joined; in vals()
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
H A DStableAPI.java868 Set<JoinedFunction> joined = fullJoin(leftSet, rightSet); in getFullList()
869 return joined; in getFullList()
870 // joinedNode = setToNode(joined); in getFullList()
936 Set<JoinedFunction> joined = new TreeSet<JoinedFunction>(); // Set<JoinedFun> in fullJoin()
946 joined.add(JoinedFunction.fromTwoFun(f1, f2)); in fullJoin()
960 joined.add(JoinedFunction.fromLeftFun(f)); in fullJoin()
965 joined.add(JoinedFunction.fromRightFun(f)); in fullJoin()
967 return joined; in fullJoin()
/third_party/skia/third_party/externals/spirv-tools/tools/fuzz/
H A Dfuzz.cpp530 std::stringstream joined; in Shrink() local
531 joined << interestingness_command[0]; in Shrink()
533 joined << " " << interestingness_command[i]; in Shrink()
535 std::string interestingness_command_joined = joined.str(); in Shrink()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/fuzz/
H A Dfuzz.cpp530 std::stringstream joined; in Shrink() local
531 joined << interestingness_command[0]; in Shrink()
533 joined << " " << interestingness_command[i]; in Shrink()
535 std::string interestingness_command_joined = joined.str(); in Shrink()
/third_party/spirv-tools/tools/fuzz/
H A Dfuzz.cpp524 std::stringstream joined; in Shrink() local
525 joined << interestingness_command[0]; in Shrink()
527 joined << " " << interestingness_command[i]; in Shrink()
529 std::string interestingness_command_joined = joined.str(); in Shrink()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_join_test.cc177 std::string joined = in TEST() local
181 EXPECT_EQ("(One)(Two)(Three)", joined); in TEST()
/third_party/skia/tools/skpbench/
H A Dskpbench.cpp730 SkString joined; in join() local
732 joined.appendf(i ? " %s" : "%s", stringArray[i]); in join()
734 return joined; in join()
/third_party/skia/src/gpu/v1/
H A DClipStack.cpp644 SkRRect joined = SkRRectPriv::ConservativeIntersect(a, b); in combine() local
645 if (!joined.isEmpty()) { in combine()
647 if (joined.isRect()) { in combine()
649 fShape.setRect(joined.rect()); in combine()
651 fShape.setRRect(joined); in combine()
/third_party/python/Modules/
H A D_elementtree.c193 should be joined before being returned to the user, the latter
2571 PyObject* joined; in treebuilder_extend_element_text_or_tail() local
2575 joined = list_join(*data); in treebuilder_extend_element_text_or_tail()
2576 if (!joined) { in treebuilder_extend_element_text_or_tail()
2581 PyObject *tmp = PyNumber_Add(previous, joined); in treebuilder_extend_element_text_or_tail()
2582 Py_DECREF(joined); in treebuilder_extend_element_text_or_tail()
2586 joined = tmp; in treebuilder_extend_element_text_or_tail()
2591 r = _PyObject_SetAttrId(element, name, joined); in treebuilder_extend_element_text_or_tail()
2592 Py_DECREF(joined); in treebuilder_extend_element_text_or_tail()
/third_party/skia/third_party/externals/libwebp/swig/
H A Dlibwebp_python_wrap.c1604 PyObject *joined = PyUnicode_Concat(repr, nrep); in SwigPyObject_repr() local
1607 repr = joined; in SwigPyObject_repr()
5215 PyObject *joined; in swig_varlink_str() local
5219 joined = PyUnicode_Concat(str, tail); in swig_varlink_str()
5222 str = joined; in swig_varlink_str()
5225 joined = PyUnicode_Concat(str, tail); in swig_varlink_str()
5228 str = joined; in swig_varlink_str()
5232 joined = PyUnicode_Concat(str, tail); in swig_varlink_str()
5235 str = joined; in swig_varlink_str()
/third_party/ffmpeg/fftools/
H A Dffmpeg.h433 int joined; /* the thread has been joined */ member
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc1718 ScopedPyObjectPtr joined( in InternalSerializeToString()
1720 if (joined == NULL) { in InternalSerializeToString()
1744 GetMessageName(self).c_str(), PyString_AsString(joined.get())); in InternalSerializeToString()
/third_party/python/Lib/
H A Dzipfile.py2291 joined = '/'.join(filter(allowed, parts))
2292 if not joined:
2294 return joined + '/' * name.endswith('/')
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DShaderCore.cpp1246 UInt4 joined = ((((As<UInt4>(Min(As<Float4>(absf & UInt4(mask_round)) * As<Float4>(UInt4(c_magic)), in floatToHalfBits() local
1251 dst = As<Float4>(storeInUpperBits ? As<UInt4>(dst) | ((joined << 16) | justsign) : joined | (justsign >> 16)); in floatToHalfBits()
/third_party/python/Tools/clinic/
H A Dclinic.py95 joined together (''.join(accumulator)) and
103 joined = " ".join([str(a) for a in args])
119 add(joined)

Completed in 58 milliseconds

12