Searched refs:default (Results 1 – 25 of 200) sorted by relevance
12345678
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | origin | 10 'default' default definition 38 'undefined default environment default file command line override automatic 40 default 42 default
|
D | foreach | 31 … "undefined file default file environment default file command line override automatic automatic 32 foo.o bletch.o null.o @.o garf.o .o .o undefined.o file.o default.o file.o environment.o default…
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | exception | 63 nested_exception(const nested_exception&) noexcept = default; 64 nested_exception& operator=(const nested_exception&) noexcept = default; 65 virtual ~nested_exception() = default; 176 // nested_exception(const nested_exception&) noexcept = default; 177 // nested_exception& operator=(const nested_exception&) noexcept = default;
|
D | stack | 34 stack() = default; 35 ~stack() = default; 37 stack(const stack& q) = default; 38 stack(stack&& q) = default; 40 stack& operator=(const stack& q) = default; 41 stack& operator=(stack&& q) = default;
|
D | queue | 34 queue() = default; 35 ~queue() = default; 37 queue(const queue& q) = default; 38 queue(queue&& q) = default; 40 queue& operator=(const queue& q) = default; 41 queue& operator=(queue&& q) = default; 110 priority_queue() = default; 111 ~priority_queue() = default; 113 priority_queue(const priority_queue& q) = default; 114 priority_queue(priority_queue&& q) = default; [all …]
|
/ndk/docs/tools/ |
D | ndk-markdown-substitutions.py | 186 default=None ) 192 default=False ) 197 default=None )
|
/ndk/tests/build/project-properties/ |
D | project.properties | 2 # Instead of the one under default.properties
|
/ndk/sources/host-tools/make-3.81/ |
D | makefile.vms | 93 default.obj,variable.obj,expand.obj,function.obj,strcache.obj,\ 97 default.c variable.c expand.c function.c strcache.c \ 130 default.obj: default.c make.h rule.h dep.h filedef.h commands.h variable.h
|
D | make.lnk | 1 …o"+"file.o"+"misc.o"+"main.o"+"read.o"+"remake.o"+"rule.o"+"implicit.o"+"default.o"+"variable.o"+"…
|
D | readme.vms | 25 . In default.c define variable ARCH as IA64 for VMS on Itanium systems. 77 blindly be applied for all users in default login procedures. 147 resets all signal handling to the default. On VMS execve creates a child 162 Compaq c/c++ compilers. Modifications in default.c. 180 It needs to be enabled to get this feature; default is disabled. The 215 The default rules are set up for GNU C. Building an executable from a 258 See defaults.c for VMS default suffixes and my definitions for default 265 The default include directory for including other makefiles is 269 The default makefiles make looks for are: makefile.vms, gnumakefile, 292 Lots of default settings are adapted for VMS. See default.c.
|
D | SMakefile | 89 # Directory to search by default for included makefiles. 127 rule.o implicit.o default.o variable.o expand.o function.o \ 133 $(srcdir)rule.c $(srcdir)implicit.c $(srcdir)default.c \ 150 # Some makes apparently use .PHONY as the default goal if it is before `all'. 237 # .deps/default.Po 238 default.o default.o: default.c make.h config.h \
|
D | Makefile.ami | 121 rule.o implicit.o default.o variable.o expand.o function.o \ 127 $(srcdir)rule.c $(srcdir)implicit.c $(srcdir)default.c \ 289 default.o: default.c make.h rule.h dep.h filedef.h job.h commands.h \
|
D | dosbuild.bat | 32 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g default.c -o default.o 54 for %%f in (job dir file misc main read remake rule implicit default variable) do echo %%f.o >> res…
|
D | NMakefile | 80 $(OUTDIR)/default.obj \ 146 # .deps/default.Po 147 default.o default.o: default.c make.h config.h \
|
/ndk/docs/text/ |
D | APPLICATION-MK.text | 80 > A 'release' mode is the default, and will generate highly 86 > tag), the default will be 'debug' instead of 'release'. This can 149 > By default, the NDK build system will look for a file named Android.mk 160 > By default, the NDK build system will generate machine code for the 202 > By default, the NDK build system provides C++ headers for the minimal 212 APP_STL := system --> default C++ runtime library 254 > the GCC compiler. 4.6 is the default 262 > By default, `ndk-build` will automatically set this value to '`true`' if 273 > Sets the default value of LOCAL_THIN_ARCHIVE for all static library
|
D | ANDROID-MK.text | 130 Note that the default extension for C++ source files is '.cpp'. It is 279 > By default, this will be '`android-3-armeabi`' 281 > (Up to Android NDK 1.6_r1, this used to be '`android-3-arm`' by default) 365 > hierarchies to the build system. Note that by default, the NDK 424 > By default, the module name determines the name of generated files, 430 > You can override this default with LOCAL_MODULE_FILENAME (see below) 435 > generated files. By default, module <foo> will always generate a 478 > The default is '.cpp' but you can change it. For example: 621 > linker on ARM/X86 GCC 4.6+ where `ld.gold` is the default 630 > By default, any undefined reference encountered when trying to build [all …]
|
D | CPLUSPLUS-SUPPORT.text | 8 By default, this 'system' runtime does *not* provide the following: 20 system -> Use the default minimal system C++ runtime library. 30 The 'system' runtime is the default if there is no APP_STL definition in 131 sources are compiled with -fno-exceptions support by default, for 158 since NDK r5, but all C++ sources are built with -fno-rtti by default for 260 "-std=c++11" is turned on by default. 280 from the default produces the following warning in logcat
|
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
D | SHELL | 5 # Find the default value when SHELL is not set. On UNIX it will be /bin/sh, 14 # Note %extraENV takes precedence over the default value for the shell.
|
/ndk/build/tools/toolchain-patches/gcc/ |
D | 0002-Enable-C-exceptions-and-RTTI-by-default.patch | 4 Subject: Enable C++ exceptions and RTTI by default. 6 With this change, -fexceptions and -frtti become default options
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | unistd_h.m4 | 11 dnl Use AC_REQUIRE here, so that the default behavior below is expanded 28 dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
|
D | string_h.m4 | 14 dnl Use AC_REQUIRE here, so that the default behavior below is expanded 28 dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
|
/ndk/build/tools/ |
D | prebuilt-common.sh | 361 default=`option_get_attr $opt default` 362 if [ -n "$default" ] ; then 363 echo " $text $abstract [$default]" 526 log "Using default $3: `var_value $1`"
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | results_reporter.ipp | 135 default: 182 default:
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | default_names | 4 default makefiles in the correct order (GNUmakefile,makefile,Makefile)";
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/ |
D | Makefile | 77 default: run target
|
12345678