HomeSort by relevance Sort by last modified time
    Searched defs:Key (Results 151 - 175 of 425) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/src/gpu/text/
GrAtlasTextBlob.h 51 struct Key {
52 Key() {
53 sk_bzero(this, sizeof(Key));
65 bool operator==(const Key& other) const {
66 return 0 == memcmp(this, &other, sizeof(Key));
70 void setupKey(const GrAtlasTextBlob::Key& key,
73 fKey = key;
74 if (key.fHasBlur) {
77 if (key.fStyle != SkPaint::kFill_Style)
266 const Key& key() const { return fKey; } function in class:GrAtlasTextBlob
    [all...]
  /external/v8/src/
interface-descriptors.h 137 enum Key {
151 CallInterfaceDescriptor(Isolate* isolate, CallDescriptors::Key key)
152 : data_(isolate->call_descriptor_data(key)) {}
201 void Initialize(Isolate* isolate, CallDescriptors::Key key) {
203 CallInterfaceDescriptorData* d = isolate->call_descriptor_data(key);
218 explicit name(Isolate* isolate) : base(isolate, key()) { \
219 Initialize(isolate, key()); \
224 name(Isolate* isolate, CallDescriptors::Key key) : base(isolate, key) {}
    [all...]
  /external/v8/src/profiler/
profile-generator.h 280 typedef Address Key;
282 static const Key kNoKey;
284 static int Compare(const Key& a, const Key& b) {
292 void Call(const Address& key, const CodeEntryInfo& value);
  /external/v8/test/cctest/
test-regexp.cc 584 typedef int Key;
625 CHECK_EQ(next, loc.key());
635 CHECK_EQ(next, loc.key());
644 CHECK_EQ(loc.key(), val);
651 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 * &lt;Key android:keyLabel="A" /&gt;
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 63 * Collection of {@link NetworkStatsHistory}, stored based on combined key of
79 private ArrayMap<Key, NetworkStatsHistory> mStats = new ArrayMap<>();
145 final Key key = mStats.keyAt(i); local
146 if (NetworkStatsAccess.isAccessibleToUser(key.uid, callerUid, accessLevel)) {
147 int j = uids.binarySearch(key.uid);
151 uids.add(j, key.uid);
199 final Key key = mStats.keyAt(i); local
200 if (key.uid == uid && NetworkStats.setMatches(set, key.set) && key.tag == ta
234 final Key key = mStats.keyAt(i); local
292 final Key key = another.mStats.keyAt(i); local
300 final Key key = new Key(ident, uid, set, tag); local
345 final Key key = new Key(ident, uid, set, tag); local
414 final Key key = new Key(ident, UID_ALL, SET_ALL, TAG_NONE); local
474 final Key key = new Key(ident, uid, set, tag); local
567 final Key key = mStats.keyAt(i); local
583 final Key key = grouped.keyAt(i); local
636 final Key key = (Key) obj; local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
reader.h 166 bool Key(const Ch* str, SizeType length, bool copy);
196 bool Key(const Ch* str, SizeType len, bool copy) { return static_cast<Override&>(*this).String(str, len, copy); }
649 success = (isKey ? handler.Key(str, SizeType(length), false) : handler.String(str, SizeType(length), false));
657 success = (isKey ? handler.Key(str, length, true) : handler.String(str, length, true));
    [all...]
document.h     [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 53 * &lt;Key android:keyLabel="A" /&gt;
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...]
  /external/clang/include/clang/AST/
ExprObjC.h 210 /// \brief The key for the dictionary element.
211 Expr *Key;
236 /// \brief Key/value pair used to store the key and value of a given element.
240 Expr *Key;
263 /// key/value pairs, which provide the locations of the ellipses (if
321 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None };
763 /// array[4] = array[3]; dictionary[key] = dictionary[alt_key];
771 enum { BASE, KEY, END_EXPR };
782 ObjCSubscriptRefExpr(Expr *base, Expr *key, QualType T
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp     [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 922 bool checkDuplicateOrUnknownKey(yaml::Node *KeyNode, StringRef Key,
924 if (!Keys.count(Key)) {
925 error(KeyNode, "unknown key");
928 KeyStatus &S = Keys[Key];
930 error(KeyNode, Twine("duplicate key '") + Key + "'");
943 error(Obj, Twine("missing key '") + I->first + "'");
976 StringRef Key;
977 // Reuse the buffer for key and value, since we don't look at key afte
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 50 /// Create a key for a binding to region \p r, which has a symbolic offset
58 /// Create a key for a binding at \p offset from base region \p r.
414 BindingKey Key = BindingKey::Make(R, BindingKey::Default);
415 if (B.lookup(Key)) {
422 B = B.addBinding(Key, V);
791 /// Each binding is a pair whose \c first is the key (a BindingKey) and whose
852 // Case 3: The next key is symbolic and we just changed something within
859 // Case 4: The next key is symbolic, but we changed a known
    [all...]
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
MapBinderTest.java 43 import com.google.inject.Key;
85 private static final Set<Key<?>> FRAMEWORK_KEYS = ImmutableSet.of(
86 Key.get(java.util.logging.Logger.class),
87 Key.get(Stage.class),
88 Key.get(Injector.class)
127 Map<Key<?>, Binding<?>> bindings = injector.getBindings();
129 ImmutableSet<Key<?>> expectedBindings = ImmutableSet.<Key<?>>builder()
132 Key.get(Types.mapOf(String.class, String.class)),
134 Key.get(Types.mapOf(String.class, Types.providerOf(String.class)))
211 Key<Map<String, String>> key = Key.get(mapOfString, Names.named("abc")); local
237 Key<Map<String, String>> key = Key.get(mapOfString, Abc.class); local
    [all...]
MultibinderTest.java 44 import com.google.inject.Key;
121 Key<Set<String>> setKey = Key.get(setOfString);
144 Key<Set<String>> setKey = Key.get(setOfString, Names.named("abc"));
166 Key<Set<String>> setKey = Key.get(setOfString, Abc.class);
191 Key<Set<String>> abcSetKey = Key.get(setOfString, named("abc"));
193 Key<Set<String>> deSetKey = Key.get(setOfString, named("de"))
1205 Key key = dep.getKey(); local
    [all...]
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
CheckedProviderTest.java 34 import com.google.inject.Key;
75 private static final Function<Dependency<?>, Key<?>> DEPENDENCY_TO_KEY =
76 new Function<Dependency<?>, Key<?>>() {
77 public Key<?> apply(Dependency<?> from) {
173 injector.getInstance(Key.get(remoteProviderOfFoo));
203 Key<RemoteProvider<Foo>> key = annotation != null ? local
204 Key.get(remoteProviderOfFoo, annotation) :
205 Key.get(remoteProviderOfFoo);
206 RemoteProvider<Foo> remoteProvider = injector.getInstance(key);
623 Key<?> key = Key.get(remoteProviderOfFoo); local
845 Key<RemoteProvider<List<String>>> key local
864 Key<RemoteProvider<List<String>>> key local
883 Key<RemoteProvider<List<String>>> key local
898 Key<RemoteProvider<List<String>>> key local
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmscgats.c 93 struct _KeyVal* NextSubkey; // If key is a dictionary, points to the next item
94 char* Subkey; // If key is a dictionary, points to the subkey name
687 SYMBOL key; local
711 key = BinSrchKey(it8->id);
712 if (key == SNONE) it8->sy = SIDENT;
713 else it8->sy = key;
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 79 public static class Key<T> {
89 * <p>Use the CameraCharacteristics.Key, CaptureResult.Key, or CaptureRequest.Key
92 public Key(String name, Class<T> type) {
94 throw new NullPointerException("Key needs a valid name");
107 * <p>Use the CameraCharacteristics.Key, CaptureResult.Key, or CaptureRequest.Key
111 public Key(String name, TypeReference<T> typeReference)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 50 * Class for describing the position and characteristics of a single key in the keyboard.
52 public class Key implements Comparable<Key> {
54 * The key code (unicode or custom code) that this key generates.
60 /** Hint label to display on the key in conjunction with the label */
72 // Start of key text ratio enum values
78 // End of key text ratio mask enum values
82 // The bit to calculate the ratio of key label width against key width. If autoXScale bit is o
    [all...]

Completed in 1885 milliseconds

1 2 3 4 5 67 8 91011>>