HomeSort by relevance Sort by last modified time
    Searched refs:MapKey (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
BooleanKey.java 18 import dagger.MapKey;
20 @MapKey(unwrapValue = true)
ByteKey.java 18 import dagger.MapKey;
20 @MapKey(unwrapValue = true)
CharKey.java 18 import dagger.MapKey;
20 @MapKey(unwrapValue = true)
ShortKey.java 18 import dagger.MapKey;
20 @MapKey(unwrapValue = true)
NestedAnnotationContainer.java 18 import dagger.MapKey;
22 @MapKey(unwrapValue = false)
NumberClassKey.java 18 import dagger.MapKey;
20 @MapKey(unwrapValue = true)
UnwrappedAnnotationKey.java 18 import dagger.MapKey;
21 @MapKey(unwrapValue = true)
WrappedAnnotationKey.java 18 import dagger.MapKey;
22 @MapKey(unwrapValue = false)
  /external/dagger2/core/src/main/java/dagger/mapkeys/
ClassKey.java 18 import dagger.MapKey;
25 * A {@link MapKey} annotation for maps with {@code Class<?>} keys.
32 @MapKey
IntKey.java 18 import dagger.MapKey;
24 /** A {@link MapKey} annotation for maps with {@code int} keys. */
27 @MapKey
LongKey.java 18 import dagger.MapKey;
24 /** A {@link MapKey} annotation for maps with {@code long} keys. */
27 @MapKey
StringKey.java 18 import dagger.MapKey;
24 /** A {@link MapKey} annotation for maps with {@link String} keys. */
27 @MapKey
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Library/ResetSystemLib/
ResetSystemLib.c 38 UINTN MapKey;
49 &MapKey,
64 &MapKey,
70 Status = gBS->ExitBootServices (gImageHandle, MapKey);
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Library/ResetSystemLib/
ResetSystemLib.c 38 UINTN MapKey;
49 &MapKey,
64 &MapKey,
70 Status = gBS->ExitBootServices (gImageHandle, MapKey);
  /external/dagger2/core/src/main/java/dagger/
MapKey.java 33 * with {@code @MapKey}.
41 * {@literal @}MapKey
75 * {@literal @}MapKey(unwrapValue = false)
106 public @interface MapKey {
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
ClassMapKey.java 31 @MapKey(unwrapValue = true)
MapKey.java 33 * your own MapKey annotation, such as this one for an enum:
36 * {@literal @}MapKey(unwrapValue = true)
53 public @interface MapKey {
StringMapKey.java 31 @MapKey(unwrapValue = true)
  /external/protobuf/src/google/protobuf/
map_field.h 50 class MapKey;
89 virtual bool ContainsMapKey(const MapKey& map_key) const = 0;
91 const MapKey& map_key, MapValueRef* val) = 0;
92 virtual bool DeleteMapValue(const MapKey& map_key) = 0;
254 bool ContainsMapKey(const MapKey& map_key) const;
255 bool InsertOrLookupMapValue(const MapKey& map_key, MapValueRef* val);
256 bool DeleteMapValue(const MapKey& map_key);
298 class LIBPROTOBUF_EXPORT DynamicMapField: public TypeDefinedMapFieldBase<MapKey, MapValueRef> {
305 bool ContainsMapKey(const MapKey& map_key) const;
306 bool InsertOrLookupMapValue(const MapKey& map_key, MapValueRef* val)
    [all...]
map_field.cc 156 : TypeDefinedMapFieldBase<MapKey, MapValueRef>(arena),
163 for (Map<MapKey, MapValueRef>::iterator iter = map_.begin();
175 const MapKey& map_key) const {
176 const Map<MapKey, MapValueRef>& map = GetMap();
177 Map<MapKey, MapValueRef>::const_iterator iter = map.find(map_key);
182 const MapKey& map_key, MapValueRef* val) {
185 Map<MapKey, MapValueRef>* map = MutableMap();
186 Map<MapKey, MapValueRef>::iterator iter = map->find(map_key);
229 bool DynamicMapField::DeleteMapValue(const MapKey& map_key) {
231 Map<MapKey, MapValueRef>::iterator iter = map_.find(map_key)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_field.h 50 class MapKey;
89 virtual bool ContainsMapKey(const MapKey& map_key) const = 0;
91 const MapKey& map_key, MapValueRef* val) = 0;
92 virtual bool DeleteMapValue(const MapKey& map_key) = 0;
254 bool ContainsMapKey(const MapKey& map_key) const;
255 bool InsertOrLookupMapValue(const MapKey& map_key, MapValueRef* val);
256 bool DeleteMapValue(const MapKey& map_key);
298 class LIBPROTOBUF_EXPORT DynamicMapField: public TypeDefinedMapFieldBase<MapKey, MapValueRef> {
305 bool ContainsMapKey(const MapKey& map_key) const;
306 bool InsertOrLookupMapValue(const MapKey& map_key, MapValueRef* val)
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeyProcessingStep.java 23 import dagger.MapKey;
38 * The annotation processor responsible for validating the mapKey annotation and auto-generate
39 * implementation of annotations marked with &#064MapKey where necessary.
63 return ImmutableSet.<Class<? extends Annotation>>of(MapKey.class);
69 for (Element element : elementsByAnnotation.get(MapKey.class)) {
74 MapKey mapkey = element.getAnnotation(MapKey.class); local
75 if (mapkey.unwrapValue()) {
MapKeyValidator.java 18 import dagger.MapKey;
31 * A validator for {@link MapKey} annotations.
43 } else if (element.getAnnotation(MapKey.class).unwrapValue()) {
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsHelper.c 25 UINTN MapKey;
38 &MapKey,
53 &MapKey,
61 Status = gBS->ExitBootServices (gImageHandle, MapKey);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/
PropertiesTableAttributesDxe.c 123 UINTN MapKey;
149 &MapKey,
160 &MapKey,

Completed in 515 milliseconds

1 2 3 4