| /OK3568_Linux_fs/yocto/poky/bitbake/lib/ |
| H A D | codegen.py | 77 generator.visit(node) 112 self.visit(stmt) 133 self.visit(arg) 136 self.visit(default) 148 self.visit(decorator) 157 self.visit(target) 159 self.visit(node.value) 163 self.visit(node.target) 165 self.visit(node.value) 179 self.visit(item) [all …]
|
| /OK3568_Linux_fs/external/xserver/present/ |
| H A D | present.c | 124 struct pixmap_visit *visit = data; in present_set_tree_pixmap_visit() local 127 if ((*screen->GetWindowPixmap)(window) != visit->old) in present_set_tree_pixmap_visit() 129 (*screen->SetWindowPixmap)(window, visit->new); in present_set_tree_pixmap_visit() 138 struct pixmap_visit visit; in present_set_tree_pixmap() local 141 visit.old = (*screen->GetWindowPixmap)(window); in present_set_tree_pixmap() 142 if (expected && visit.old != expected) in present_set_tree_pixmap() 145 visit.new = pixmap; in present_set_tree_pixmap() 146 if (visit.old == visit.new) in present_set_tree_pixmap() 148 TraverseTree(window, present_set_tree_pixmap_visit, &visit); in present_set_tree_pixmap()
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/ |
| H A D | Kconfig | 31 For general information about Chelsio and our products, visit 34 For customer support, please visit our customer support page at 58 For general information about Chelsio and our products, visit 61 For customer support, please visit our customer support page at 80 For general information about Chelsio and our products, visit 83 For customer support, please visit our customer support page at 121 For general information about Chelsio and our products, visit 124 For customer support, please visit our customer support page at
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/ |
| H A D | interpolate.hpp | 29 void eachChild(const std::function<void(const Expression&)>& visit) const override { in eachChild() 30 visit(*input); in eachChild() 32 visit(*stop.second); in eachChild() 36 void eachStop(const std::function<void(double, const Expression&)>& visit) const { in eachStop() 38 visit(stop.first, *stop.second); in eachStop()
|
| H A D | step.hpp | 23 void eachChild(const std::function<void(const Expression&)>& visit) const override; 24 void eachStop(const std::function<void(double, const Expression&)>& visit) const;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | boolean_operator.cpp | 16 void Any::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 18 visit(*input); in eachChild() 44 void All::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 46 visit(*input); in eachChild()
|
| H A D | case.cpp | 22 void Case::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 24 visit(*branch.first); in eachChild() 25 visit(*branch.second); in eachChild() 27 visit(*otherwise); in eachChild()
|
| H A D | equals.cpp | 47 void Equals::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 48 visit(*lhs); in eachChild() 49 visit(*rhs); in eachChild() 51 visit(**collator); in eachChild()
|
| H A D | step.cpp | 46 void Step::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 47 visit(*input); in eachChild() 49 visit(*it->second); in eachChild() 53 void Step::eachStop(const std::function<void(double, const Expression&)>& visit) const { in eachStop() 55 visit(stop.first, *stop.second); in eachStop()
|
| H A D | at.cpp | 42 void At::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 43 visit(*index); in eachChild() 44 visit(*input); in eachChild()
|
| H A D | let.cpp | 13 void Let::eachChild(const std::function<void(const Expression&)>& visit) const { in eachChild() 15 visit(*it->second); in eachChild() 17 visit(*result); in eachChild()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geojson/0.4.2/include/mapbox/ |
| H A D | geojson_impl.hpp | 364 result.PushBack(value::visit(item, *this), allocator); in operator ()() 378 value::visit(property.second, *this), in operator ()() 391 rapidjson::GenericStringRef<char> { geometry::visit(element, to_type()) }, in convert() 396 geometry::visit(element, to_coordinates_or_geometries { allocator }), in convert() 408 result.AddMember("id", identifier::visit(*element.id, to_value { allocator }), allocator); in convert() 432 return geojson::visit(element, [&] (const auto& alternative) { in convert() 447 return geojson::visit(element, [] (const auto& alternative) { in stringify()
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | create_buildsys_python.py | 636 visitor.visit(parsed) 669 call = LiteralAstTransform().visit(node) 687 def visit(self, node): member in LiteralAstTransform 691 return ast.NodeTransformer.visit(self, node) 705 new_value = dict((kw.arg, self.visit(kw.value)) for kw in value) 707 new_value = [self.visit(i) for i in value] 709 new_value = self.visit(value) 720 return tuple(self.visit(v) for v in node.elts) 723 return [self.visit(v) for v in node.elts] 726 return set(self.visit(v) for v in node.elts) [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/ |
| H A D | tinyxml2.h | 345 are simply called with Visit(). 347 If you return 'true' from a Visit method, recursive parsing will continue. If you return 350 All flavors of Visit methods have a default implementation that returns 'true' (continue 364 /// Visit a document. 368 /// Visit a document. 373 /// Visit an element. 377 /// Visit an element. 382 /// Visit a declaration. 383 virtual bool Visit( const XMLDeclaration& /*declaration*/ ) { in Visit() function 386 /// Visit a text node. [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/csiostor/ |
| H A D | Kconfig | 11 For general information about Chelsio and our products, visit 14 For customer support, please visit our customer support page at
|
| /OK3568_Linux_fs/kernel/drivers/crypto/chelsio/ |
| H A D | Kconfig | 14 For general information about Chelsio and our products, visit 17 For customer support, please visit our customer support page at
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/cxgb4/ |
| H A D | Kconfig | 12 For general information about Chelsio and our products, visit 15 For customer support, please visit our customer support page at
|
| /OK3568_Linux_fs/kernel/Documentation/kbuild/ |
| H A D | Kconfig.select-break | 17 # visit the dependencies of the select target (in this case B). And since 18 # Kconfig does not visit the dependencies, it breaks the dependencies of B
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/variant/1.1.4/include/mapbox/ |
| H A D | variant.hpp | 847 auto VARIANT_INLINE static visit(V const& v, F&& f) in visit() function in mapbox::util::variant 854 auto VARIANT_INLINE static visit(V& v, F&& f) in visit() function in mapbox::util::variant 880 -> decltype(variant::visit(*this, ::mapbox::util::make_visitor(std::forward<Fs>(fs)...))) in match() 882 return variant::visit(*this, ::mapbox::util::make_visitor(std::forward<Fs>(fs)...)); in match() 887 -> decltype(variant::visit(*this, ::mapbox::util::make_visitor(std::forward<Fs>(fs)...))) in match() 889 return variant::visit(*this, ::mapbox::util::make_visitor(std::forward<Fs>(fs)...)); in match() 907 return visit(rhs, visitor); in operator ==() 924 return visit(rhs, visitor); in operator <() 943 auto VARIANT_INLINE apply_visitor(F&& f, V const& v) -> decltype(V::visit(v, std::forward<F>(f))) in apply_visitor() 945 return V::visit(v, std::forward<F>(f)); in apply_visitor() [all …]
|
| /OK3568_Linux_fs/buildroot/package/transmission/ |
| H A D | S92transmission | 15 # For the default location Transmission uses, visit: 17 # For a guide on how set the preferences, visit: 19 # For the available environement variables, visit:
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | search.h | 125 VISIT; typedef 144 typedef void (*__action_fn_t) (const void *__nodep, VISIT __value, 156 void (*) (const void *__nodep, VISIT __value,
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | search.h | 125 VISIT; typedef 144 typedef void (*__action_fn_t) (const void *__nodep, VISIT __value, 156 void (*) (const void *__nodep, VISIT __value,
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-connectivity/transmission/files/ |
| H A D | transmission-daemon | 19 # For the default location Transmission uses, visit: 21 # For a guide on how set the preferences, visit: 23 # For the available environement variables, visit:
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | license.py | 70 self.visit(ast.parse(' '.join(elements))) 93 left.visit(node.left) 96 right.visit(node.right) 172 def visit(self, node): member in ManifestVisitor
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/ |
| H A D | for_each_point.hpp | 22 mapbox::util::variant<Types...>::visit(geom, [&] (auto const& g) { in for_each_point() 30 mapbox::util::variant<Types...>::visit(geom, [&] (auto & g) { in for_each_point()
|