Home
last modified time | relevance | path

Searched refs:VALUE (Results 1 – 8 of 8) sorted by relevance

/system/core/libutils/include/utils/
DKeyedVector.h35 template <typename KEY, typename VALUE>
40 typedef VALUE value_type;
69 const VALUE& valueFor(const KEY& key) const;
70 const VALUE& valueAt(size_t index) const;
73 const VALUE& operator[](size_t index) const;
79 VALUE& editValueFor(const KEY& key);
80 VALUE& editValueAt(size_t index);
86 ssize_t add(const KEY& key, const VALUE& item);
87 ssize_t replaceValueFor(const KEY& key, const VALUE& item);
88 ssize_t replaceValueAt(size_t index, const VALUE& item);
[all …]
DTypeHelpers.h252 template <typename KEY, typename VALUE>
255 typedef VALUE value_t;
258 VALUE value;
266 key_value_pair_t(const KEY& k, const VALUE& v) : key(k), value(v) { }
274 inline const VALUE& getValue() const {
/system/tools/aidl/
Daidl_to_rust.h28 VALUE, enumerator
38 VALUE, enumerator
Daidl_to_rust.cpp162 element_mode = StorageMode::VALUE; in RustNameOf()
217 return StorageMode::VALUE; in ArgumentStorageMode()
246 return ReferenceMode::VALUE; in ArgumentReferenceMode()
Dgenerate_rust.cpp69 auto method_type = RustNameOf(method.GetType(), typenames, StorageMode::VALUE); in BuildMethod()
175 auto return_type = RustNameOf(method.GetType(), typenames, StorageMode::VALUE); in GenerateClientMethod()
210 arg_mode = StorageMode::VALUE; in GenerateServerTransaction()
340 const_type = RustNameOf(type, typenames, StorageMode::VALUE); in GenerateConstantDeclarations()
775 auto backing_type = RustNameOf(aidl_backing_type, typenames, StorageMode::VALUE); in GenerateRustEnumDeclaration()
/system/tools/hidl/c2hal/
Dc2hal_l.ll210 {D}+{E}{FS}? { yylval->str = strdup(yytext); return VALUE; }
211 {D}+\.{E}?{FS}? { yylval->str = strdup(yytext); return VALUE; }
212 {D}*\.{D}+{E}?{FS}? { yylval->str = strdup(yytext); return VALUE; }
213 L?\"(\\.|[^\\"])*\" { yylval->str = strdup(yytext); return VALUE; }
Dc2hal_y.yy121 %token<str> VALUE
472 | VALUE { $$ = Expression::atom(Expression::Type::UNKNOWN, $1); }
/system/tools/hidl/test/hidl_test/
Dstatic_test.cpp30 static_assert((int32_t) decltype(IFoo::S2::foo)::VALUE == 0,