Searched refs:VALUE (Results 1 – 8 of 8) sorted by relevance
35 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 …]
252 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 {
28 VALUE, enumerator38 VALUE, enumerator
162 element_mode = StorageMode::VALUE; in RustNameOf()217 return StorageMode::VALUE; in ArgumentStorageMode()246 return ReferenceMode::VALUE; in ArgumentReferenceMode()
69 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()
210 {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; }
121 %token<str> VALUE472 | VALUE { $$ = Expression::atom(Expression::Type::UNKNOWN, $1); }
30 static_assert((int32_t) decltype(IFoo::S2::foo)::VALUE == 0,