Searched refs:value (Results 1 - 25 of 62) sorted by relevance

123

/ndk/sources/host-tools/make-3.81/
H A Dexpand.c53 the buffer is returned as the value. Thus, the value returned by
102 char *value;
142 value = allocated_variable_append (v);
144 value = allocated_variable_expand (v->value);
155 return value;
167 char *value;
174 /* If there's no variable by that name or it has no value, stop now. */
175 if (v == 0 || (*v->value
101 char *value; local
166 char *value; local
329 char *value = (v->recursive local
541 char *value; local
[all...]
H A Dvariable.c156 /* Define variable named NAME with value VALUE in SET. VALUE is copied.
165 char *value, enum variable_origin origin,
196 if (v->value != 0)
197 free (v->value);
198 v->value = xstrdup (value);
215 v->value = xstrdup (value);
285 var->value = build_target_list (var->value);
162 define_variable_in_set(const char *name, unsigned int length, char *value, enum variable_origin origin, int recursive, struct variable_set *set, const struct floc *flocp) argument
364 char *value; local
960 char *value = recursively_expand_for_file (v, file); local
993 do_variable_definition(const struct floc *flocp, const char *varname, char *value, enum variable_origin origin, enum variable_flavor flavor, int target_var) argument
[all...]
H A Dmain.c101 enum /* Type of the value. */
111 char *value_ptr; /* Pointer to the value-holding variable. */
117 char *noarg_value; /* Pointer to value used if no argument is given. */
118 char *default_value;/* Pointer to default value. */
123 /* True if C is a switch value that corresponds to a short option. */
281 /* Remember the original value of the SHELL variable, from the environment. */
476 /* Pointer to the value of the .DEFAULT_GOAL special
730 * a value for default shell here (if the default path does not exist).
749 However, make sure that's what they really want by requiring the value
784 if (v && v->value) {
1315 char *value, *p; local
2348 char *value; local
2574 char *value, *p; local
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_watcom.h112 value [eax];
120 value [eax];
128 value [eax];
135 value [eax];
144 value [eax];
H A D_mwerks.h140 # define _STLP_HAS_TRIVIAL_CONSTRUCTOR(T) Metrowerks::has_trivial_default_ctor<T>::value
141 # define _STLP_HAS_TRIVIAL_COPY(T) Metrowerks::has_trivial_copy_ctor<T>::value
142 # define _STLP_HAS_TRIVIAL_ASSIGN(T) Metrowerks::has_trivial_assignment<T>::value
143 # define _STLP_HAS_TRIVIAL_DESTRUCTOR(T) Metrowerks::has_trivial_dtor<T>::value
144 # define _STLP_IS_POD(T) Metrowerks::is_POD<T>::value
/ndk/tests/device/test-gnustl-copy_vector_into_a_set/jni/
H A Dcopy_vector_into_a_set.cpp52 const PasswordForm* value = *iter; local
53 cout << "************************************************ vector value " << value->signon_realm << std::endl;
57 const PasswordForm* value = *iter; local
58 cout << "************************************************ set value " << value << std::endl;
59 cout << "************************************************ set value " << value->signon_realm << std::endl;
/ndk/tests/device/test-stlport-copy_vector_into_a_set/jni/
H A Dcopy_vector_into_a_set.cpp52 const PasswordForm* value = *iter; local
53 cout << "************************************************ vector value " << value->signon_realm.c_str() << std::endl;
57 const PasswordForm* value = *iter; local
58 cout << "************************************************ set value " << value << std::endl;
59 cout << "************************************************ set value " << value->signon_realm.c_str() << std::endl;
/ndk/sources/host-tools/ndk-stack/elff/
H A Ddwarf_defs.h103 /* Describes a value, obtained from the mapped .debug_info section
107 /* Unites all possible data types for the value.
126 * contains the value).
130 /* Number of bytes that encode this value in .debug_info section
171 /* Pulls actual value, encoded with this LEB128 block.
173 * value - Upon return will contain value, encoded with this LEB128 block.
175 * integer, otherwise, caller expects an unsigned integer value to be
178 void get_common(Dwarf_Value* value, bool sign) const { argument
179 value
266 process(Dwarf_Value* value, bool sign) const argument
655 const Dwarf_Value* value() const { function in class:DIEAttrib
[all...]
H A Ddwarf_die.cc48 return die_attr.value()->str;
56 parent_cu()->get_referenced_die_object(die_attr.value()->u32);
66 parent_cu()->get_referenced_die_object(die_attr.value()->u32);
141 Elf_Word range_off = die_ranges.value()->u32;
157 address < low_pc.value()->u64 ||
158 address >= high_pc.value()->u64) {
209 dump_attrib(attr.at(), attr.form(), attr.value());
212 Elf_Word off = attr.value()->u32;
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A Dboost_type_traits.h42 * both the boost value and STLport values has to be taken into account
49 enum { _Is = ::boost::is_reference<_Tp>::value };
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value };
59 enum { is_integral = ::boost::is_integral<_Tp>::value };
64 enum { is_float = ::boost::is_float<_Tp>::value };
70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value };
73 enum { trivial_copy = ::boost::has_trivial_copy<_Tp>::value };
76 enum { trivial_assign = ::boost::has_trivial_assign<_Tp>::value };
79 enum { trivial_destructor = ::boost::has_trivial_destructor<_Tp>::value };
82 enum { pod = ::boost::is_pod<_Tp>::value };
[all...]
H A Dtype_manips.h233 enum { value = (sizeof(char) == sizeof(_H::_Test(false, _H::_MakeSource()))) }; enumerator in enum:_IsConvertible::__anon130
234 typedef typename __bool2type<value>::_Ret _Ret;
288 * something else than pointer type as it uses pass by value parameter that
296 enum { value = (sizeof(char) == sizeof(_H::_Test(false, _H::_MakeSource()))) }; enumerator in enum:_IsCVConvertible::__anon131
299 enum { _Is2 = _IsConvertible<_UnConstPtr<_Src>::_Type, _UnConstPtr<_Dst>::_Type>::value };
300 enum { value = _Is1 ? 0 : _Is2 };
302 typedef typename __bool2type<value>::_Ret _Ret;
308 enum { value = 0 }; enumerator in enum:_IsConvertible::__anon132
314 enum { value = 0 }; enumerator in enum:_IsCVConvertible::__anon133
/ndk/tests/device/test-gnustl-full/unit/
H A Dreference_wrapper_test.cpp31 CPPUNIT_CHECK( (::boost::is_convertible<rr_type, int&>::value) );
32 CPPUNIT_CHECK( (::boost::is_same<rr_type::type, int>::value) );
62 CPPUNIT_CHECK( (::boost::is_convertible<crr_type, const int&>::value) );
63 CPPUNIT_CHECK( (::boost::is_same<crr_type::type, const int>::value) );
H A Dmacro_checks.cpp10 # error Weird WCHAR_BIT value.
82 # error Weird WCHAR_MIN or WCHAR_MAX macro value.
90 # error Weird UCHAR_MAX macro value.
98 # error Weird UINT_MAX macro value.
106 # error Weird ULONG_MAX macro value.
114 # error Weird USHRT_MAX macro value.
H A Dmap_test.cpp61 //cout << "m['z'] = " << m['z'] << endl; // Note default value is added.
340 typedef Container::value_type value; typedef
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
365 typedef Container::value_type value; typedef
368 cont.insert(value(&key1, 1));
369 cont.insert(value(&key2, 2));
370 cont.insert(value(
389 typedef Container::value_type value; typedef
414 typedef Container::value_type value; typedef
[all...]
H A Dequal_test.cpp72 Test(int val) : value(val) {}
73 int value; member in struct:Test
76 { return value == i; }
80 { return v1.value < v2; }
83 { return v1 < v2.value; }
87 { return v1.value < v2.value; }
/ndk/tests/device/test-stlport/unit/
H A Dreference_wrapper_test.cpp31 CPPUNIT_CHECK( (::boost::is_convertible<rr_type, int&>::value) );
32 CPPUNIT_CHECK( (::boost::is_same<rr_type::type, int>::value) );
62 CPPUNIT_CHECK( (::boost::is_convertible<crr_type, const int&>::value) );
63 CPPUNIT_CHECK( (::boost::is_same<crr_type::type, const int>::value) );
H A Dmacro_checks.cpp10 # error Weird WCHAR_BIT value.
82 # error Weird WCHAR_MIN or WCHAR_MAX macro value.
90 # error Weird UCHAR_MAX macro value.
98 # error Weird UINT_MAX macro value.
106 # error Weird ULONG_MAX macro value.
114 # error Weird USHRT_MAX macro value.
H A Dmap_test.cpp61 //cout << "m['z'] = " << m['z'] << endl; // Note default value is added.
340 typedef Container::value_type value; typedef
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
365 typedef Container::value_type value; typedef
368 cont.insert(value(&key1, 1));
369 cont.insert(value(&key2, 2));
370 cont.insert(value(
389 typedef Container::value_type value; typedef
414 typedef Container::value_type value; typedef
[all...]
H A Dequal_test.cpp72 Test(int val) : value(val) {}
73 int value; member in struct:Test
76 { return value == i; }
80 { return v1.value < v2; }
83 { return v1 < v2.value; }
87 { return v1.value < v2.value; }
/ndk/sources/cxx-stl/stlport/src/
H A Dnum_get_float.cpp337 uint64 &value = drep.ival; /* Value develops as follows: local
355 value = 0;
358 value *= 10;
359 value += *buffer++;
363 if (value == 0) {
367 /* Normalize value */
370 /* Count number of non-zeroes in value */
372 if ((value >> 32) != 0) { nzero = 32; } //*TY 03/25/2000 - added explicit comparison to zero to avoid uint64 to bool conversion operator
373 if ((value >> (16 + nzero)) != 0) { nzero += 16; }
374 if ((value >> (
[all...]
H A Dsparc_atomic64.s5 ! int _STLP_atomic_exchange (void *pvalue, int value)
14 ldx [%o0], %o2 ! Set the current value
15 mov %o1, %o3 ! Set the new value
22 mov %o2, %o0 ! Set the new value
41 mov %o1, %o0 ! Set the return value
H A Dfacets_byname.cpp521 // 1 if currency symbol precedes a positive value
524 // a space separates currency symbol from a positive value.
526 pos_format.field[3] = (char) money_base::value;
528 // a space not separates currency symbol from a positive value.
529 pos_format.field[2] = (char) money_base::value;
533 // 0 if currency symbol succeeds a positive value
534 pos_format.field[1] = (char) money_base::value;
536 // a space separates currency symbol from a positive value.
540 // a space not separates currency symbol from a positive value.
548 // 1 if currency symbol precedes a positive value
[all...]
H A Dsparc_atomic.s7 ** int _STLP_atomic_exchange (void *pvalue, int value)
16 ld [%o0], %o2 ! Set the current value
17 mov %o1, %o3 ! Set the new value
23 mov %o2, %o0 ! Set the new value
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dtempname.c84 if (__builtin_expect (value == UINT64_C (0), 0)) \
87 the variable we accumulate the value in to some somewhat \
88 random value. If we'd not do this programs at startup time \
93 value = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec; \
204 static uint64_t value; local
247 value += random_time_bits ^ __getpid ();
249 for (count = 0; count < attempts; value += 7777, ++count)
251 uint64_t v = value;
/ndk/build/tools/
H A Dprebuilt-common.sh130 # Assign a value to a variable
149 # -s<value>
150 # --setting=<value>
163 # $3: attribute value
182 # $3: optional. default value
191 # Check for something like --setting=<value>
208 # Check for something like -f<value>
230 log "new option: type='$opttype' name='$optlabel' value='$optvalue'"
237 option_set_attr $optname value "$optvalue"
248 # $4: optional. default value
[all...]

Completed in 1072 milliseconds

123