HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 476 - 500 of 6954) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
merge.go 180 k := s.key()
193 // key generates sampleKey to be used as a key for maps.
194 func (sample *Sample) key() sampleKey { func
247 k := l.key()
258 // key generates locationKey to be used as a key for maps.
259 func (l *Location) key() locationKey { func
260 key := locationKey{
265 key.addr -= l.Mapping.Star
338 func (m *Mapping) key() (buildIDKey, pathKey mappingKey) { func
400 func (f *Function) key() functionKey { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
merge.go 180 k := s.key()
193 // key generates sampleKey to be used as a key for maps.
194 func (sample *Sample) key() sampleKey { func
247 k := l.key()
258 // key generates locationKey to be used as a key for maps.
259 func (l *Location) key() locationKey { func
260 key := locationKey{
265 key.addr -= l.Mapping.Star
338 func (m *Mapping) key() (buildIDKey, pathKey mappingKey) { func
400 func (f *Function) key() functionKey { func
    [all...]
  /system/bt/service/ipc/binder/
interface_with_instances_base.cc 143 void InterfaceWithInstancesBase::OnRemoteCallbackRemoved(const int& key) {
144 VLOG(2) << __func__ << " instance_id: " << key; local
149 id_to_instance_.erase(key);
  /system/bt/stack/smp/
smp_api.cc 298 SMP_TRACE_EVENT("SMP_PasskeyReply: Key: %d Result:%d", passkey, res);
318 "SMP_PasskeyReply() - Wrong key len: %d or passkey entry fail",
396 tSMP_KEY key; local
413 key.key_type = SMP_KEY_TYPE_TK;
414 key.p_data = p_cb->tk;
417 smp_int_data.key = key;
490 * specified key
492 * Parameters: key - Pointer to key key[0] conatins the MS
    [all...]
  /system/netd/server/dns/
DnsTlsDispatcher.cpp 50 const Key key = std::make_pair(mark, tlsServer); local
51 if (mStore.find(key) != mStore.end()) {
113 const Key key = std::make_pair(mark, server); local
117 auto it = mStore.find(key);
120 mStore[key].reset(xport);
  /test/vti/dashboard/src/main/webapp/js/
test_acknowledgments.js 45 * @param key (String) The value to display next to the label.
47 function removeAcknowledgment(ack, key) {
53 url: '/api/test_acknowledgments/' + key,
147 * @param key (String) The key associated with the acknowledgment.
154 function saveCallback(ack, modal, key, test, branchSet, deviceSet, testCaseSet, note) {
174 'key' : key,
183 if (key == null) {
200 * @param key (String) The key associated with the acknowledgment
173 var data = { property in class:saveCallback.data
    [all...]
  /toolchain/binutils/binutils-2.27/include/
fibheap.h 64 fibheapkey_t key; member in struct:fibnode
  /tools/dexter/dexter/
dissasembler.cc 79 int key = packed_switch->first_key; local
81 printf("\t\t%5d: ", key++);
93 printf("\t\t%5d: ", switchCase.key);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
InjectBindingRegistry.java 66 private final Map<Key, B> bindingsByKey = Maps.newLinkedHashMap();
68 private final Set<Key> materializedBindingKeys = Sets.newLinkedHashSet();
76 materializedBindingKeys.add(binding.key());
84 B getBinding(Key key) {
85 return bindingsByKey.get(key);
105 types.erasure(binding.key().type()))); // erasure to strip <T> from msgs.
114 && !materializedBindingKeys.contains(binding.key())
119 /** Caches the binding for future lookups by key. */
125 Key key = binding.key() local
    [all...]
  /frameworks/base/core/java/android/net/nsd/
NsdServiceInfo.java 115 // 1 - n ASCII but not '=' yes key
116 // n + 1 '=' optional separator of key and value
125 // [3, =, 1, 2] <- key is empty
126 // [3, 0, =, 2] <- key contains non-ASCII character. We handle this by replacing the
144 // Decode key-value records
145 String key = null; local
149 if (key == null) {
151 key = new String(txtRecordsRawBytes, pos, i - pos,
156 value = new byte[recordLen - key.length() - 1];
164 if (key == null)
283 String key = entry.getKey(); local
    [all...]
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 220 * @param name of SharedPreferences key
222 * @return current value attached to key (default 0), limited by max
357 String key = e.getKey(); local
358 if (key.startsWith(PREFIX)) {
359 if (key.endsWith("TimeMillis")) {
362 out.append(" ").append(key.substring(PREFIX.length(), key.length() - 10));
365 out.append(" ").append(key.substring(PREFIX.length()));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyboardAccessibilityDelegate.java 30 import com.android.inputmethod.keyboard.Key;
54 private Key mLastHoverKey;
88 protected final void setLastHoverKey(final Key key) {
89 mLastHoverKey = key;
92 protected final Key getLastHoverKey() {
155 * Get a key that a hover event is on.
158 * @return key The key that the <code>event</code> is on.
160 protected final Key getHoverKeyOf(final MotionEvent event)
197 final Key key = getHoverKeyOf(event); local
214 final Key key = getHoverKeyOf(event); local
242 final Key key = getHoverKeyOf(event); local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ActualKeyboardBuilder.java 19 import com.android.inputmethod.keyboard.Key;
34 * An actual keyboard is an array of rows, and a row consists of an array of {@link Key}s.
35 * Each row may have different number of {@link Key}s.
37 public final class ActualKeyboardBuilder extends AbstractKeyboardBuilder<Key> {
38 private static ArrayList<Key> filterOutSpacer(final List<Key> keys) {
39 final ArrayList<Key> filteredKeys = new ArrayList<>();
40 for (final Key key : keys) {
41 if (key.isSpacer())
    [all...]
  /prebuilts/sdk/current/androidx/m2repository/androidx/collection/collection/1.0.0-alpha1/
collection-1.0.0-alpha1.jar 
  /prebuilts/sdk/current/support/m2repository/com/android/support/collections/28.0.0/
collections-28.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/trove4j/trove4j/20160824/
trove4j-20160824.jar 
  /external/robolectric/v1/lib/main/
json-20080701.jar 
  /external/robolectric/v3/runtime/
json-20080701.jar 
  /prebuilts/tools/common/m2/repository/org/json/json/20080701/
json-20080701.jar 
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SparseFieldVector.java 107 for (int key = 0; key < values.length; key++) {
108 T value = values[key];
109 entries.put(key, value);
145 int key = iter.key(); local
147 if (entries.containsKey(key)) {
148 res.setEntry(key, entries.get(key).add(value))
327 int key = iter.key(); local
504 int key = iter.key(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java 52 public int mRightKeys; // includes default key.
65 * @param keyWidth more keys keyboard key width in pixel, including horizontal gap.
67 * @param coordXInParent coordinate x of the key preview in parent keyboard.
98 final int numRightKeys = numColumns - numLeftKeys; // including default key.
99 // Maximum number of keys we can layout both side of the parent key
107 rightKeys = maxRightKeys + 1; // include default key
113 // If the left keys fill the left side of the parent key, entire more keys keyboard
114 // should be shifted to the right unless the parent key is on the left edge.
119 // If the right keys fill the right side of the parent key, entire more keys
120 // should be shifted to the left unless the parent key is on the right edge
343 final Key key = moreKeySpec.buildKey(x, y, moreKeyFlags, params); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
DynamicGridKeyboard.java 23 import com.android.inputmethod.keyboard.Key;
50 private final ArrayDeque<Key> mPendingKeys = new ArrayDeque<>();
52 private List<Key> mCachedGridKeys;
57 final Key key0 = getTemplateKey(TEMPLATE_KEY_CODE_0);
58 final Key key1 = getTemplateKey(TEMPLATE_KEY_CODE_1);
67 private Key getTemplateKey(final int code) {
68 for (final Key key : super.getSortedKeys()) {
69 if (key.getCode() == code) {
70 return key;
108 final GridKey key = new GridKey(usedKey); local
173 final Key key; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
pr.h 31 __u64 key; member in struct:pr_reservation
48 __u64 key; member in struct:pr_clear
tls.h 43 unsigned char key[TLS_CIPHER_AES_GCM_128_KEY_SIZE]; member in struct:tls12_crypto_info_aes_gcm_128
  /bionic/libc/kernel/uapi/rdma/
cxgb4-abi.h 24 __u64 key; member in struct:c4iw_create_cq_resp

Completed in 1229 milliseconds

<<11121314151617181920>>