/AliOS-Things-master/components/py_engine/tests/import/ |
A D | import_pkg1.py | 1 import pkg.mod 3 print(pkg.__name__) 4 print(pkg.mod.__name__) 5 print(pkg.mod.foo()) 9 print(pkg_ is not pkg.mod) 10 print(pkg_ is pkg) 11 print(pkg_.mod is pkg.mod) 14 import pkg.mod as mm 16 print(mm is pkg.mod)
|
A D | import_pkg3.py | 1 from pkg import mod 5 import pkg.mod 7 print(mod is pkg.mod)
|
A D | import_pkg2.py | 1 from pkg.mod import foo 4 pkg 8 pkg.mod
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/ |
A D | package | 150 set pkg = ${destDir}/${root}.pkg 152 if ( -e $pkg ) /bin/rm -rf $pkg 153 /bin/mkdir -p -m 755 $pkg 166 set pkgArchive = $pkg/$root.tar.Z 169 set pkgArchive = $pkg/$root.tar.gz 179 set pkgInfo = $pkg/$root.info 187 set pkgTiff = $pkg/$root.tiff 208 cp -r $resDir/$resFile $pkg 211 pushd $pkg > /dev/null 229 set pkgBom = $pkg/$root.bom [all …]
|
/AliOS-Things-master/components/SDL2/acinclude/ |
A D | pkg_config.m4 | 6 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) 7 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) 8 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) 11 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 15 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) 83 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl 92 and $1[]_LIBS to avoid the need to call pkg-config. 93 See the pkg-config man page for more details.]) 119 [The pkg-config script could not be found or is too old. Make sure it 121 path to pkg-config. [all …]
|
A D | ltoptions.m4 | 176 for pkg in $enableval; do 178 if test "X$pkg" = "X$p"; then 230 for pkg in $enableval; do 232 if test "X$pkg" = "X$p"; then 284 for pkg in $enableval; do 286 if test "X$pkg" = "X$p"; then
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/pkg-support/ |
A D | mkpackage.sh | 17 mkdir -p build/pkg-tmp 18 xcrun CpMac -r "build/$FRAMEWORK.framework" build/pkg-tmp/ 20 ./package build/pkg-tmp "pkg-support/$PACKAGE.info" -d build -r "$PACKAGE_RESOURCES" 23 rm -rf build/pkg-tmp
|
/AliOS-Things-master/components/SDL2/src/image/acinclude/ |
A D | pkg.m4 | 1 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- 29 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl 31 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 35 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) 106 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl 107 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl 116 and $1[]_LIBS to avoid the need to call pkg-config. 117 See the pkg-config man page for more details.]) 143 [The pkg-config script could not be found or is too old. Make sure it 145 path to pkg-config. [all …]
|
A D | ltoptions.m4 | 176 for pkg in $enableval; do 178 if test "X$pkg" = "X$p"; then 230 for pkg in $enableval; do 232 if test "X$pkg" = "X$p"; then 284 for pkg in $enableval; do 286 if test "X$pkg" = "X$p"; then
|
/AliOS-Things-master/components/SDL2/src/hidapi/m4/ |
A D | pkg.m4 | 1 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- 29 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl 31 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 35 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) 106 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl 107 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl 116 and $1[]_LIBS to avoid the need to call pkg-config. 117 See the pkg-config man page for more details.]) 143 [The pkg-config script could not be found or is too old. Make sure it 145 path to pkg-config. [all …]
|
/AliOS-Things-master/components/SDL2/test/ |
A D | acinclude.m4 | 48 SDL_CONFIG="pkg-config sdl2" 203 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- 204 # serial 1 (pkg-config-0.24) 232 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) 237 AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) 241 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) 318 and $1[]_LIBS to avoid the need to call pkg-config. 319 See the pkg-config man page for more details.]) 345 [The pkg-config script could not be found or is too old. Make sure it 347 path to pkg-config. [all …]
|
/AliOS-Things-master/components/linkkit/wifi_provision/frameworks/ |
A D | zconfig_protocol.h | 107 struct package pkg[2][MAX_PKG_NUMS]; member 152 #define pkg_score(n) (zconfig_data->pkg[tods][n].score) 153 #define pkg_len(n) (zconfig_data->pkg[tods][n].len) 154 #define pkg(n) (&zconfig_data->pkg[tods][n]) macro
|
/AliOS-Things-master/components/SDL2/src/hidapi/testgui/ |
A D | Makefile.linux | 16 CFLAGS=-I../hidapi -Wall -g -c `fox-config --cflags` `pkg-config libusb-1.0 --cflags` 17 LIBS=-ludev -lrt -lpthread `fox-config --libs` `pkg-config libusb-1.0 --libs`
|
/AliOS-Things-master/components/SDL2/src/hidapi/libusb/ |
A D | Makefile.linux | 25 LIBS_USB = `pkg-config libusb-1.0 --libs` -lrt -lpthread 27 INCLUDES ?= -I../hidapi `pkg-config libusb-1.0 --cflags`
|
/AliOS-Things-master/components/SDL2/src/hidapi/linux/ |
A D | Makefile-manual | 25 LIBS_UDEV = `pkg-config libudev --libs` -lrt 27 INCLUDES ?= -I../hidapi `pkg-config libusb-1.0 --cflags`
|
/AliOS-Things-master/components/linkkit/wifi_provision/smartconfig/ |
A D | awss_smartconfig.c | 78 if (zconfig_data->pkg[1][1].score > zconfig_data->pkg[0][1].score) { in zconfig_get_data_len() 79 len = zconfig_data->pkg[1][1].len & PAYLOAD_BITS_MASK; in zconfig_get_data_len() 80 score = zconfig_data->pkg[1][1].score; in zconfig_get_data_len() 82 len = zconfig_data->pkg[0][1].len & PAYLOAD_BITS_MASK; in zconfig_get_data_len() 83 score = zconfig_data->pkg[0][1].score; in zconfig_get_data_len() 412 struct package *pkg = (struct package *)package; in package_cmp() local 414 if (pkg->len != len) { in package_cmp() 423 struct package *pkg = (struct package *)package; in package_save() local 425 pkg->len = len; in package_save() 1168 equal = !package_cmp((uint8_t *)pkg(pos), src, dst, tods, len); in awss_recv_callback_smartconfig() [all …]
|
/AliOS-Things-master/components/py_engine/engine/extmod/btstack/ |
A D | btstack.mk | 46 CFLAGS += $(shell pkg-config libusb-1.0 --cflags) 47 LDFLAGS += $(shell pkg-config libusb-1.0 --libs)
|
/AliOS-Things-master/components/SDL2/src/image/debian/ |
A D | control | 4 Maintainer: Debian SDL packages maintainers <pkg-sdl-maintainers@lists.alioth.debian.org> 7 Felix Geyer <debfx-pkg@fobos.de>,
|
/AliOS-Things-master/components/SDL2/ |
A D | sdl2.pc.in | 1 # sdl pkg-config source file
|
A D | sdl2.pc | 1 # sdl pkg-config source file
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/m4/ |
A D | ltoptions.m4 | 178 for pkg in $enableval; do 180 if test "X$pkg" = "X$p"; then 232 for pkg in $enableval; do 234 if test "X$pkg" = "X$p"; then 286 for pkg in $enableval; do 288 if test "X$pkg" = "X$p"; then
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
A D | ltoptions.m4 | 178 for pkg in $enableval; do 180 if test "X$pkg" = "X$p"; then 232 for pkg in $enableval; do 234 if test "X$pkg" = "X$p"; then 286 for pkg in $enableval; do 288 if test "X$pkg" = "X$p"; then
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/m4/ |
A D | ltoptions.m4 | 178 for pkg in $enableval; do 180 if test "X$pkg" = "X$p"; then 232 for pkg in $enableval; do 234 if test "X$pkg" = "X$p"; then 286 for pkg in $enableval; do 288 if test "X$pkg" = "X$p"; then
|
/AliOS-Things-master/components/jsoncpp/ |
A D | CMakeLists.txt | 162 "pkg-config/jsoncpp.pc.in" 163 "pkg-config/jsoncpp.pc" 165 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/pkg-config/jsoncpp.pc"
|
/AliOS-Things-master/components/linkkit/wifi_provision/ht40/ |
A D | awss_ht40.c | 309 equal = !package_cmp((uint8_t *)pkg(pos), NULL, NULL, tods, len); in awss_recv_callback_ht_ctrl() 315 package_save((uint8_t *)pkg(pos), NULL, NULL, tods, len); in awss_recv_callback_ht_ctrl()
|