HomeSort by relevance Sort by last modified time
    Searched defs:Key (Results 26 - 50 of 1478) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guice/core/src/com/google/inject/
Key.java 33 * Binding key consisting of an injection type and an optional annotation.
36 * <p>For example, {@code Key.get(Service.class, Transactional.class)} will
46 * <p>{@code Key} supports generic types via subclassing just like {@link
55 public class Key<T> {
64 * Constructs a new key. Derives the type from this class's type parameter.
73 * <p>{@code new Key<Foo>(Bar.class) {}}.
76 protected Key(Class<? extends Annotation> annotationType) {
85 * Constructs a new key. Derives the type from this class's type parameter.
94 * <p>{@code new Key<Foo>(new Bar()) {}}.
97 protected Key(Annotation annotation)
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
Key.java 20 public class Key {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 41 static AnalysisKey Key;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
ModuleSummaryAnalysis.h 41 static AnalysisKey Key;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
ModuleSummaryAnalysis.h 41 static AnalysisKey Key;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 41 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
ModuleSummaryAnalysis.h 41 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
ModuleSummaryAnalysis.h 41 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
ModuleSummaryAnalysis.h 46 static AnalysisKey Key;
  /system/netd/server/dns/
DnsTlsDispatcher.h 72 // Key = <mark, server>
73 typedef std::pair<unsigned, const DnsTlsServer> Key;
92 // The key is a (netid, server) pair. The netid is first for lexicographic comparison speed.
93 std::map<Key, std::unique_ptr<Transport>> mStore GUARDED_BY(sLock);
  /system/keymaster/include/keymaster/
key.h 31 class Key {
33 virtual ~Key() {}
34 Key(const Key&) = delete;
35 void operator=(const Key&) = delete;
38 * Return a copy of raw key material, in the specified format.
53 // Methods to move data out of the key. These could be overloads of the methods above, with ref
64 Key(AuthorizationSet&& hw_enforced, AuthorizationSet&& sw_enforced,
  /device/linaro/bootloader/OpenPlatformPkg/Include/Protocol/
PlatformVirtualKeyboard.h 29 EFI_INPUT_KEY Key;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
DriverConfiguration.c 39 @retval EFI_ABORTED Get an 'ESC' key inputed.
50 EFI_INPUT_KEY Key;
53 Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
55 if (Key.ScanCode == SCAN_ESC) {
59 switch (Key.UnicodeChar) {
  /device/linaro/bootloader/edk2/SecurityPkg/RandomNumberGenerator/RngDxe/
RdRand.c 81 UINT8 Key[16];
88 // Chose an arbitary key and zero the feed_forward_value (FFV)
91 Key[Index] = (UINT8) Index;
113 AesEncrypt (Key, Xored, Ffv);
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellEnvVar.h 25 CHAR16 *Key;
213 @param Key The name of the environment variable.
227 IN CONST CHAR16 *Key,
236 @param Key The name of the environment variable.
248 IN CONST CHAR16 *Key,
257 @param Key The name of the environment variable.
265 IN CONST CHAR16 *Key
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Key.java 66 abstract class Key {
69 * for the type of this key.
78 * The type represented by this key.
98 Key withType(Types types, TypeMirror newType) {
108 * Returns true if the key is valid as an implicit key (that is, if it's valid for a just-in-time
130 // If the key has type arguments, validate that each type argument is declared.
139 // Also validate that the key is not the erasure of a generic type.
151 return MoreObjects.toStringHelper(Key.class)
187 Key forComponentMethod(ExecutableElement componentMethod)
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
FiltersModuleBuilder.java 19 import com.google.inject.Key;
62 through(Key.get(filterKey));
65 public void through(Key<? extends Filter> filterKey) {
77 through(Key.get(filterKey), initParams);
80 public void through(Key<? extends Filter> filterKey,
85 private void through(Key<? extends Filter> filterKey,
97 Key<Filter> filterKey = Key.get(Filter.class, UniqueAnnotations.create());
  /external/libchrome/base/posix/
global_descriptors.h 35 // It maps from an abstract key to a descriptor. If independent modules each
44 typedef uint32_t Key;
46 Descriptor(Key key, int fd);
47 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
49 // Globally unique key.
50 Key key; member in struct:base::GlobalDescriptors::Descriptor
58 // Often we want a canonical descriptor for a given Key. In this case, we ad
    [all...]

Completed in 332 milliseconds

12 3 4 5 6 7 8 91011>>