Searched refs:entry (Results 276 - 300 of 497) sorted by relevance

<<11121314151617181920

/frameworks/base/core/java/android/gesture/
H A DGestureStore.java122 * Get all the gesture entry names in the library
143 * Add a gesture for the entry
145 * @param entryName entry name
165 * given entry, the gesture entry will be removed.
167 * @param entryName entry name
178 // if there are no more samples, remove the entry automatically
189 * Remove a entry of gestures
191 * @param entryName the entry name
200 * Get all the gestures of an entry
[all...]
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java63 * Broadcast Action: This is broadcast when a new entry is added in the dropbox.
82 * when the entry was created.
87 * A single entry retrieved from the drop box.
124 * The data array must not be modified after creating this entry.
158 * The file will be read when the entry's contents are requested.
171 /** Close the input stream associated with this entry. */
176 /** @return the tag originally attached to the entry. */
179 /** @return time when the entry was originally created. */
187 * @return the uncompressed text contents of the entry, null if the entry i
[all...]
/frameworks/base/core/java/android/preference/
H A DListPreference.java81 * Each entry must have a corresponding index in
109 * The array to find the value to save for a preference when an entry from
121 * @param entryValuesResId The entry values array as a resource.
158 * marker in it (i.e. "%s" or "%1$s"), then the current entry
165 final CharSequence entry = getEntry();
169 return String.format(mSummary, entry == null ? "" : entry);
177 * marker in it (i.e. "%s" or "%1$s"), then the current entry
193 * Sets the value to the given index from the entry values.
214 * Returns the entry correspondin
[all...]
/frameworks/base/libs/hwui/
H A DPatchCache.cpp239 const Patch* PatchCache::get(const AssetAtlas::Entry* entry, argument
247 const UvMapper& mapper = entry ? entry->uvMapper : sIdentity;
H A DTextureCache.cpp113 AssetAtlas::Entry* entry = mAssetAtlas->getEntry(bitmap->pixelRef()); local
114 if (CC_UNLIKELY(entry)) {
115 return entry->texture;
/frameworks/base/media/java/android/media/
H A DMediaExtractor.java153 for (Map.Entry<String, String> entry: headers.entrySet()) {
154 keys[i] = entry.getKey();
155 values[i] = entry.getValue();
H A DMediaMuxer.java412 for (Map.Entry<String, Object> entry : formatMap.entrySet()) {
413 keys[i] = entry.getKey();
414 values[i] = entry.getValue();
/frameworks/base/packages/Osu/src/com/android/anqp/eap/
H A DEAPMethod.java125 for (Map.Entry<EAP.AuthInfoID, Set<AuthParam>> entry :
127 Set<AuthParam> params = mAuthParams.get(entry.getKey());
132 if (!Collections.disjoint(params, entry.getValue())) {
/frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
H A DHTTPResponse.java153 for (Map.Entry<String, String> entry : mHeaders.entrySet()) {
154 sb.append(entry.getKey()).append(": ").append(entry.getValue()).append(CRLF);
/frameworks/base/tools/aapt2/util/
H A DFiles.cpp80 dirent* entry; local
81 while ((entry = readdir(dir))) {
82 files.emplace_back(entry->d_name);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.h37 /// Assign value to the GOT entry.
38 virtual void setEntryValue(Fragment* entry, uint64_t pValue) = 0;
82 /// hasGOT1 - return if this got section has any GOT1 entry
94 /// Create GOT entry.
97 /// Size of GOT entry.
121 Fragment* m_pLastLocal; ///< the last consumed local entry
122 Fragment* m_pLastGlobal; ///< the last consumed global entry
123 Fragment* m_pLastTLS; ///< the last consumed TLS entry
135 * \brief LocalEntry local GOT entry descriptor.
229 virtual void setEntryValue(Fragment* entry, uint64_
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
H A DGenerationalClassUtil.java123 ZipEntry entry = entries.nextElement();
125 if (!filter.accept(entry.getName())) {
130 inputStream = zipFile.getInputStream(entry);
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaAnalyzer.java136 for (Map.Entry<String, String> entry : env.entrySet()) {
137 L.d("%s %s", entry.getKey(), entry.getValue());
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipUtilTest.java88 ZipEntry entry = ZipEntryReader.readEntry(buffer);
89 toCheck.put(entry.getName(), entry);
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DUnrefedPooledCache.java132 for (Map.Entry<K, V> entry : mCache.entrySet()) {
133 final V value = entry.getValue();
138 eldestUnref = entry;
145 // only return a scavenged cache entry if the cache has enough
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEntry.java27 * Represents one entry inside recipient auto-complete list.
56 * True when this entry is the first entry in a group, which should have a photo and display
62 /** Destination for this contact entry. Would be an email address or a phone number. */
133 * an entry from contacts.
225 * @return the display name for the entry. If the display name source is larger than
307 * Returns if entry represents the same person as this instance. The default implementation
310 public boolean isSamePerson(final RecipientEntry entry) { argument
311 return entry != null && mContactId == entry
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DConfigurationMap.java100 for (Map.Entry<Integer, WifiConfiguration> entry : mPerID.entrySet()) {
101 final WifiConfiguration config = entry.getValue();
103 mPerIDForCurrentUser.put(entry.getKey(), config);
H A DWifiNetworkScoreCache.java180 for (Map.Entry<String, ScoredNetwork> entry : mNetworkCache.entrySet()) {
181 ScoredNetwork scoredNetwork = entry.getValue();
182 writer.println(" " + entry.getKey() + ": " + scoredNetwork.rssiCurve
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
H A DEAPMethod.java126 for (Map.Entry<EAP.AuthInfoID, Set<AuthParam>> entry :
128 Set<AuthParam> params = mAuthParams.get(entry.getKey());
133 if (!Collections.disjoint(params, entry.getValue())) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DAnqpCache.java183 for (Map.Entry<CacheKey, ANQPData> entry : mANQPCache.entrySet()) {
184 if (entry.getValue().expired(now)) {
185 retirees.add(entry.getKey());
/frameworks/rs/api/
H A DSpecification.cpp80 string entry; local
81 while (getline(stream, entry, ',')) {
82 trimSpaces(&entry);
83 entries.push_back(entry);
109 // Returns true if each entry in typeVector is an RS numerical type
339 void Function::addParameter(ParameterEntry* entry, Scanner* scanner) { argument
341 if (i->name == entry->name) {
343 if (!entry->documentation.empty()) {
344 scanner->error(entry->lineNumber)
351 mParameters.push_back(entry);
354 addReturn(ParameterEntry* entry, Scanner* scanner) argument
[all...]
/frameworks/rs/driver/
H A DrsdCore.cpp59 extern "C" bool rsdHalQueryHal(RsHalInitEnums entry, void **fnPtr) { argument
60 switch(entry) {
253 ALOGE("ERROR: unknown RenderScript HAL API query, %i", entry);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DListPreference.java89 * Each entry must have a corresponding index in
117 * The array to find the value to save for a preference when an entry from
129 * @param entryValuesResId The entry values array as a resource.
166 * marker in it (i.e. "%s" or "%1$s"), then the current entry
173 final CharSequence entry = getEntry();
177 return String.format(mSummary, entry == null ? "" : entry);
185 * marker in it (i.e. "%s" or "%1$s"), then the current entry
201 * Sets the value to the given index from the entry values.
222 * Returns the entry correspondin
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsTest.java525 final NetworkStats.Entry entry = stats.getValues(index, null);
526 assertValues(entry, iface, uid, set, tag, roaming);
527 assertValues(entry, rxBytes, rxPackets, txBytes, txPackets, operations);
531 NetworkStats.Entry entry, String iface, int uid, int set, int tag, int roaming) {
532 assertEquals(iface, entry.iface);
533 assertEquals(uid, entry.uid);
534 assertEquals(set, entry.set);
535 assertEquals(tag, entry.tag);
536 assertEquals(roaming, entry.roaming);
539 private static void assertValues(NetworkStats.Entry entry, lon argument
530 assertValues( NetworkStats.Entry entry, String iface, int uid, int set, int tag, int roaming) argument
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java1327 ObserverEntry entry = mObservers.get(i);
1328 if (entry.observer.asBinder() == observerBinder) {
1331 observerBinder.unlinkToDeath(entry, 0);
1348 ObserverEntry entry = mObservers.get(i);
1352 boolean selfChange = (entry.observer.asBinder() == observerBinder);
1359 || entry.userHandle == UserHandle.USER_ALL
1360 || targetUserHandle == entry.userHandle) {
1367 && entry.notifyForDescendants) {
1368 if (DEBUG) Slog.d(TAG, "Skipping " + entry.observer
1375 if (!entry
[all...]

Completed in 8652 milliseconds

<<11121314151617181920