Home
last modified time | relevance | path

Searched refs:variable (Results 1 – 25 of 107) sorted by relevance

12345

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
Dvariable.hpp90 class variable : public variable_base { class
93 explicit variable( cstring var_name );
96 explicit variable( cstring var_name, Modifiers const& m );
98 explicit variable( rt_env_detail::variable_data& data ) in variable() function in boost::BOOST_RT_PARAM_NAMESPACE::environment::variable
102 void operator=( variable const& v ) { m_data = v.m_data; } in operator =()
132 operator<<( std::basic_ostream<CharT,Tr>& os, variable<T> const& v ) in operator <<()
146 operator==( variable<T> ev, V const& v ) in operator ==()
155 operator==( V const& v, variable<T> ev ) in operator ==()
164 operator!=( variable<T> ev, V const& v ) in operator !=()
173 operator!=( V const& v, variable<T> ev ) in operator !=()
[all …]
Denvironment.hpp108 inline variable<T>
113 …return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, nfp::no_params ) … in var()
119 inline variable<T>
124 … return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, m ) : *vd ); in var()
151 variable<T> const& v = environment::var<T>( var_name ); in get()
Dfwd.hpp46 template <typename T> class variable;
/ndk/sources/host-tools/make-3.81/
Dvariable.c108 struct variable const *key = (struct variable const *) keyv; in variable_hash_1()
115 struct variable const *key = (struct variable const *) keyv; in variable_hash_2()
122 struct variable const *x = (struct variable const *) xv; in variable_hash_cmp()
123 struct variable const *y = (struct variable const *) yv; in variable_hash_cmp()
161 struct variable *
167 struct variable *v; in define_variable_in_set()
168 struct variable **var_slot; in define_variable_in_set()
169 struct variable var_key; in define_variable_in_set()
176 var_slot = (struct variable **) hash_find_slot (&set->table, &var_key); in define_variable_in_set()
209 v = (struct variable *) xmalloc (sizeof (struct variable)); in define_variable_in_set()
[all …]
Dmakefile.vms93 default.obj,variable.obj,expand.obj,function.obj,strcache.obj,\
97 default.c variable.c expand.c function.c strcache.c \
99 commands.h dep.h filedef.h job.h make.h rule.h variable.h
118 commands.obj: commands.c make.h dep.h commands.h filedef.h variable.h job.h
119 job.obj: job.c vmsjobs.c make.h commands.h job.h filedef.h variable.h
121 file.obj: file.c make.h commands.h dep.h filedef.h variable.h
125 main.obj: main.c make.h commands.h dep.h filedef.h variable.h job.h
126 read.obj: read.c make.h commands.h dep.h filedef.h variable.h
128 rule.obj: rule.c make.h commands.h dep.h filedef.h variable.h rule.h
130 default.obj: default.c make.h rule.h dep.h filedef.h commands.h variable.h
[all …]
Dvariable.h51 struct variable struct
105 struct variable variable; member
133 extern char *recursively_expand_for_file PARAMS ((struct variable *v,
147 extern struct variable *do_variable_definition PARAMS ((const struct floc *flocp, const char *name,…
148 extern struct variable *parse_variable_definition PARAMS ((struct variable *v, char *line));
149 extern struct variable *try_variable_definition PARAMS ((const struct floc *flocp, char *line, enum…
152 extern struct variable *lookup_variable PARAMS ((const char *name, unsigned int length));
153 extern struct variable *lookup_variable_in_set PARAMS ((const char *name,
157 extern struct variable *define_variable_in_set
DMakefile.ami121 rule.o implicit.o default.o variable.o expand.o function.o \
128 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \
135 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in
275 commands.o: commands.c make.h dep.h filedef.h variable.h job.h \
277 job.o: job.c make.h job.h filedef.h commands.h variable.h
279 file.o: file.c make.h dep.h filedef.h job.h commands.h variable.h
281 main.o: main.c make.h dep.h filedef.h variable.h job.h commands.h \
283 read.o: read.c make.h dep.h filedef.h job.h commands.h variable.h \
286 rule.o: rule.c make.h dep.h filedef.h job.h commands.h variable.h \
290 variable.h
[all …]
DNMakefile99 $(OUTDIR)/variable.obj \
143 gettext.h dep.h filedef.h hash.h variable.h \
149 gettext.h filedef.h hash.h variable.h rule.h \
162 variable.h rule.h
169 variable.h debug.h
174 gettext.h filedef.h hash.h variable.h dep.h \
195 variable.h job.h \
203 commands.h variable.h \
214 gettext.h dep.h filedef.h hash.h variable.h \
228 commands.h variable.h rule.h debug.h \
[all …]
DSMakefile127 rule.o implicit.o default.o variable.o expand.o function.o \
134 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \
141 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in
234 gettext.h dep.h filedef.h hash.h variable.h \
240 gettext.h filedef.h hash.h variable.h rule.h \
253 variable.h rule.h
260 variable.h debug.h
265 gettext.h filedef.h hash.h variable.h dep.h \
286 variable.h job.h \
294 commands.h variable.h \
[all …]
DChangeLog103 * variable.c (do_variable_definition) [WINDOWS32]: Call the shell
109 * variable.c (merge_variable_set_lists): It's legal for *setlist0
147 * variable.c (merge_variable_set_lists): Don't try to merge the
158 * expand.c (expanding_var): Keep track of which variable we're
159 expanding. If no variable is being expanded, it's the same as
163 current variable we're expanding, unless there's no file info in
165 variable). Restore it before we exit.
180 * implicit.c (pattern_search): If we allocated a variable set for
182 * variable.c (free_variable_set): New function.
183 * variable.h: Declare it.
[all …]
Dexpand.c96 static char *allocated_variable_append PARAMS ((const struct variable *v));
99 recursively_expand_for_file (struct variable *v, struct file *file) in recursively_expand_for_file()
165 register struct variable *v; in reference_variable()
199 register struct variable *v; in variable_expand_string()
478 const struct variable *v; in variable_append()
514 allocated_variable_append (const struct variable *v) in allocated_variable_append()
DNEWS21 Up to and including this release, the '$?' variable does not contain
98 - New automatic variable: $| (added in 3.80, actually): contains all
112 - $(flavor ...) returns the flavor of a variable.
124 - Setting the SHELL make variable does NOT change the value of the
125 SHELL environment variable given to programs invoked by make. As
126 an enhancement to POSIX, if you export the make variable SHELL then
170 tested, so it can be a constructed variable name.
172 Similarly, the arguments to "export" (when not used in a variable
176 function is the _name_ of a variable. The result of the function is
177 the value of the variable, without having been expanded.
[all …]
DMakefile.am45 strcache.c variable.c version.c vpath.c hash.c
49 noinst_HEADERS = commands.h dep.h filedef.h job.h make.h rule.h variable.h \
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/
Dnegative6 # Check that non-terminated variable references are detected (and
15 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.',
19 # Bogus variable value passed on the command line.
22 '#MAKEFILE#:4: *** unterminated variable reference. Stop.',
36 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.',
40 # Bogus variable value passed on the command line.
43 '#MAKEFILE#:4: *** unterminated variable reference. Stop.',
Dflavors3 $description = "Test various flavors of make variable setting.";
74 $answer = "$makefile:24: *** empty variable name. Stop.\n";
91 # There's a bit of oddness here if you try to use a variable to hold the
109 # instead of in a variable, that can't happen because by the time make
111 # can't know anymore whether the prefix character came before the variable
112 # reference or was included in the first line of the variable reference.
160 # Test the basics; a "@" internally to the variable applies to only one line.
161 # A "@" before the variable applies to the entire variable.
DMAKE_RESTARTS3 $description = "Test the MAKE_RESTARTS variable.";
36 # Test multiple restarts and make sure the variable is cleaned up
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dorigin6 This function will report on where a variable was
16 'automatic' Automatic variable\n";
18 # Set an environment variable
48 # Reset an environment variable
Dforeach8 names and a variable. Each name in the list is subsituted
9 into the variable and the given text evaluated. The general
16 # Set an environment variable that we can test in the makefile.
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Dwarn-undefined-variables21 "#MAKEFILE#:7: warning: undefined variable `UNDEFINED'
22 #MAKEFILE#:9: warning: undefined variable `UNDEFINED'
/ndk/build/core/
Dmain.mk64 The APP variable is undefined or empty.)
78 APP variable defined to unknown applications: $(_bad_apps))
121 Removing unknown names from APP variable: $(_unknown_apps))\
125 The APP variable contains unknown app names: $(_unknown_apps))\
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dconditionals33 @echo variable is undefined
35 @echo variable undefined is defined
46 variable is undefined
99 result += variable is undefined
Dtargetvars2 $description = "Test target-specific variable settings.";
5 Create a makefile containing various flavors of target-specific variable
6 values, override and non-override, and using various variable expansion
31 # Test per-target variable inheritance
166 # PR/1709: Test semicolons in target-specific variable values
206 # Test double-colon rules with target-specific variable values
236 # Test double-colon rules with target-specific variable values and
244 # Test double-colon rules with pattern-specific variable values
297 # Test appending to a simple variable containing a "$": avoid a
/ndk/sources/host-tools/make-3.81/doc/
Dmake.info-1203 * Reference:: How to use the value of a variable.
205 * Advanced:: Advanced features for referencing a variable.
207 * Setting:: How to set a variable in the makefile.
209 of a variable.
210 * Override Directive:: How to set a variable in the makefile even if
212 * Defining:: An alternate way to set a variable
217 * Pattern-specific:: Target-specific variable values can be applied
222 * Substitution Refs:: Referencing a variable with
224 * Computed Names:: Computing the name of the variable to refer to.
240 * Value Function:: Return the un-expanded value of a variable.
[all …]
Dmake.texi11 @c Combine the variable and function indices:
229 * Reference:: How to use the value of a variable.
231 * Advanced:: Advanced features for referencing a variable.
233 * Setting:: How to set a variable in the makefile.
235 of a variable.
236 * Override Directive:: How to set a variable in the makefile even if
238 * Defining:: An alternate way to set a variable
243 * Pattern-specific:: Target-specific variable values can be applied
248 * Substitution Refs:: Referencing a variable with
250 * Computed Names:: Computing the name of the variable to refer to.
[all …]
/ndk/sources/host-tools/make-3.81/po/
DPOTFILES.in37 variable.c
38 variable.h

12345