/frameworks/native/include/input/ |
InputTransport.h | 63 struct Key { 77 return sizeof(Key); 79 } key; member in union:android::InputMessage::Body 202 /* Publishes a key event to the input channel.
|
/ndk/tests/device/test-gnustl-full/unit/ |
unordered_test.cpp | 514 struct Key 516 Key() : m_data(0) {} 517 explicit Key(int data) : m_data(data) {} 522 bool operator==(const Key&) const; 528 size_t operator () (Key key) const 529 { return (size_t)key.m_data; } 537 bool operator () (Key lhs, Key rhs) const 540 bool operator () (Key lhs, int rhs) cons [all...] |
/ndk/tests/device/test-stlport/unit/ |
unordered_test.cpp | 514 struct Key 516 Key() : m_data(0) {} 517 explicit Key(int data) : m_data(data) {} 522 bool operator==(const Key&) const; 528 size_t operator () (Key key) const 529 { return (size_t)key.m_data; } 537 bool operator () (Key lhs, Key rhs) const 540 bool operator () (Key lhs, int rhs) cons [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
gdiplusmetaheader.h | 67 UINT32 Key;
|
/external/clang/lib/ASTMatchers/ |
ASTMatchFinder.cpp | 48 // AST node twice. This struct is the key for looking up match 388 MatchKey Key; 389 Key.MatcherID = Matcher.getID(); 390 Key.Node = Node; 391 // Note that we key on the bindings *before* the match. 392 Key.BoundNodes = *Builder; 394 MemoizationMap::iterator I = ResultCache.find(Key); 405 MemoizedMatchResult &CachedResult = ResultCache[Key]; 628 MatchKey Key; 629 Key.MatcherID = Matcher.getID() [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
CheckerManager.cpp | 695 unsigned Key = (S->getStmtClass() << 1) | unsigned(isPreVisit); 696 CachedStmtCheckersMapTy::iterator CCI = CachedStmtCheckersMap.find(Key); 701 CachedStmtCheckers &Checkers = CachedStmtCheckersMap[Key];
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUService.java | 58 * fallback. The Key defines the canonical form of the id, and 61 * use. The Key can cache the results of this parsing to save 87 * ICUService by overriding it, for example, to customize the Key and 147 * <p> The default implementation of Key has no fallbacks and 150 public static class Key { 154 * Construct a key from an id. 156 public Key(String id) { 161 * Return the original ID used to construct this key. 189 * descriptor or use custom API on the key in order to 197 * If the key has a fallback, modify the key and return true 644 Key key = createKey(id); local [all...] |
/external/llvm/include/llvm/IR/ |
Module.h | 197 MDString *Key; 200 : Behavior(B), Key(K), Val(V) {} 449 /// Return the corresponding value if Key appears in module flags, otherwise 451 Metadata *getModuleFlag(StringRef Key) const; 464 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val); 465 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val); 466 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
|
/external/llvm/lib/CodeGen/ |
TargetLoweringObjectFileImpl.cpp | 475 StringRef Key = MFE.Key->getString(); 478 if (Key == "Objective-C Image Info Version") { 480 } else if (Key == "Objective-C Garbage Collection" || 481 Key == "Objective-C GC Only" || 482 Key == "Objective-C Is Simulated" || 483 Key == "Objective-C Image Swift Version") { 485 } else if (Key == "Objective-C Image Info Section") { 487 } else if (Key == "Linker Options") { 832 "' is not a key for its COMDAT.") [all...] |
/external/llvm/tools/llvm-cxxdump/ |
llvm-cxxdump.cpp | 334 auto Key = std::make_pair(SymName, SymOffI); 335 if (VTableSymEntries.count(Key)) 344 VTableDataEntries[Key] = VData;
|
/external/skia/src/gpu/ |
GrAtlasTextContext.h | 164 struct Key { 165 Key() { 166 sk_bzero(this, sizeof(Key)); 178 bool operator==(const Key& other) const { 179 return 0 == memcmp(this, &other, sizeof(Key)); 202 Key fKey; 227 static const Key& GetKey(const BitmapTextBlob& blob) { 231 static uint32_t Hash(const Key& key) { 232 return SkChecksum::Murmur3(&key, sizeof(Key)) [all...] |
/external/v8/src/ |
profile-generator.h | 229 typedef Address Key; 231 static const Key kNoKey; 233 static int Compare(const Key& a, const Key& b) { 241 void Call(const Address& key, const CodeEntryInfo& value);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/ |
MultiPagedForm.java | 48 private enum Key { 134 Log.w(TAG, "Intent result extras didn't have the result summary key!"); 432 Key key = getKeyFromKey(action.getKey()); 433 if (key != null) { 434 switch (key) { 461 private Key getKeyFromKey(String key) { 463 return Key.valueOf(key); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
scesvc.h | 46 LPTSTR Key; 70 LPTSTR Key;
|
/external/clang/lib/Basic/ |
VirtualFileSystem.cpp | 333 // This assumes that "" will never be a valid key. 585 bool checkDuplicateOrUnknownKey(yaml::Node *KeyNode, StringRef Key, 587 if (!Keys.count(Key)) { 588 error(KeyNode, "unknown key"); 591 KeyStatus &S = Keys[Key]; 593 error(KeyNode, Twine("duplicate key '") + Key + "'"); 606 error(Obj, Twine("missing key '") + I->first + "'"); 640 StringRef Key; 641 // Reuse the buffer for key and value, since we don't look at key afte [all...] |
/external/clang/lib/Sema/ |
AnalysisBasedWarnings.cpp | [all...] |
/external/llvm/utils/TableGen/ |
CodeGenRegisters.h | 402 // A key representing the parts of a register class used for forming 403 // sub-classes. Note the ordering provided by this key is not the same as 405 struct Key { 410 Key(const CodeGenRegister::Vec *M, unsigned S = 0, unsigned A = 0) 413 Key(const CodeGenRegisterClass &RC) 419 bool operator<(const Key&) const; 423 CodeGenRegisterClass(CodeGenRegBank&, StringRef Name, Key Props); 467 unsigned Order; // Cache the sort key. 504 typedef std::map<CodeGenRegisterClass::Key, CodeGenRegisterClass*> RCKeyMap;
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_text.cpp | 16 CFX_ByteString Key; 46 FX_LPVOID Key; 49 m_GlyphMap.GetNextAssoc(pos, Key, (void*&)pGlyphBitmap);
|
/external/v8/test/cctest/ |
test-regexp.cc | 534 typedef int Key; 575 CHECK_EQ(next, loc.key()); 585 CHECK_EQ(next, loc.key()); 594 CHECK_EQ(loc.key(), val); 601 CHECK_EQ(loc.key(), val); [all...] |
/frameworks/base/core/java/android/hardware/camera2/ |
CameraCharacteristics.java | 43 public final class CameraCharacteristics extends CameraMetadata<CameraCharacteristics.Key<?>> { 46 * A {@code Key} is used to do camera characteristics field lookups with 62 public static final class Key<T> { 63 private final CameraMetadataNative.Key<T> mKey; 70 public Key(String name, Class<T> type) { 71 mKey = new CameraMetadataNative.Key<T>(name, type); 79 public Key(String name, TypeReference<T> typeReference) { 80 mKey = new CameraMetadataNative.Key<T>(name, typeReference); 92 * specific key might look like {@code "com.google.nexus.data.private"}.</p> 94 * @return String representation of the key nam [all...] |
CaptureRequest.java | 75 public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>> 79 * A {@code Key} is used to do capture request field lookups with 81 * {@link CaptureRequest.Builder#set(Key, Object)}. 96 public final static class Key<T> { 97 private final CameraMetadataNative.Key<T> mKey; 104 public Key(String name, Class<T> type) { 105 mKey = new CameraMetadataNative.Key<T>(name, type); 113 public Key(String name, TypeReference<T> typeReference) { 114 mKey = new CameraMetadataNative.Key<T>(name, typeReference); 126 * specific key might look like {@code "com.google.nexus.data.private"}.</p [all...] |
CaptureResult.java | 46 * not have every key set. Only {@link TotalCaptureResult total} results are guaranteed to have 47 * every key available that was enabled by the request.</p> 52 public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> { 58 * A {@code Key} is used to do capture result field lookups with 73 public final static class Key<T> { 74 private final CameraMetadataNative.Key<T> mKey; 81 public Key(String name, Class<T> type) { 82 mKey = new CameraMetadataNative.Key<T>(name, type); 90 public Key(String name, TypeReference<T> typeReference) { 91 mKey = new CameraMetadataNative.Key<T>(name, typeReference) [all...] |
/frameworks/base/core/java/android/inputmethodservice/ |
Keyboard.java | 50 * <Key android:keyLabel="A" /> 68 private static final String TAG_KEY = "Key"; 88 /** Default key width */ 91 /** Default key height */ 100 /** Key instance for the shift key, if present */ 101 private Key[] mShiftKeys = { null, null }; 103 /** Key index for the shift key, if present */ 106 /** Current key width, while loading the keyboard * 609 final Key key = new Key(row); local 634 Key key = row.mKeys.get(keyIndex); local 644 Key key = row.mKeys.get(keyIndex); local 749 final Key key = mKeys.get(i); local 799 Key key = null; local [all...] |
/frameworks/base/services/core/java/com/android/server/net/ |
NetworkStatsCollection.java | 65 * Collection of {@link NetworkStatsHistory}, stored based on combined key of 81 private ArrayMap<Key, NetworkStatsHistory> mStats = new ArrayMap<>(); 143 final Key key = mStats.keyAt(i); local 144 if (isAccessibleToUser(key.uid, callerUid)) { 145 int j = uids.binarySearch(key.uid); 149 uids.add(j, key.uid); 184 final Key key = mStats.keyAt(i); local 185 if (key.uid == uid && NetworkStats.setMatches(set, key.set) && key.tag == ta 210 final Key key = mStats.keyAt(i); local 266 final Key key = another.mStats.keyAt(i); local 274 final Key key = new Key(ident, uid, set, tag); local 319 final Key key = new Key(ident, uid, set, tag); local 388 final Key key = new Key(ident, UID_ALL, SET_ALL, TAG_NONE); local 448 final Key key = new Key(ident, uid, set, tag); local 541 final Key key = mStats.keyAt(i); local 557 final Key key = grouped.keyAt(i); local 616 final Key key = (Key) obj; local [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
Keyboard.java | 53 * <Key android:keyLabel="A" /> 66 private static final String TAG_KEY = "Key"; 104 /** Default key width */ 107 /** Default key height */ 116 /** Key instance for the shift key, if present */ 117 private Key mShiftKey; 119 /** Key index for the shift key, if present */ 122 /** Current key width, while loading the keyboard * 585 final Key key = new Key(row); local 712 final Key key = mKeys.get(i); local 763 Key key = null; local [all...] |