Searched defs:lookup (Results 1 - 25 of 216) sorted by path

123456789

/external/aac/libFDK/src/
H A Dfixpoint_math.cpp245 /* This table is used for lookup 2^x with */
259 /* This table is used for lookup 2^x with */
272 /* This table is used for lookup 2^x with */
303 UINT lookup = (UINT)(LONG)fMult((FIXP_DBL)lookup12, (FIXP_DBL) lookup3f); local
305 FIXP_DBL retVal = (lookup<<3) >> exp;
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerRegistry.java76 public HttpRequestHandler lookup(final String requestURI) { method in class:HttpRequestHandlerRegistry
77 return (HttpRequestHandler) matcher.lookup(requestURI);
H A DHttpRequestHandlerResolver.java49 HttpRequestHandler lookup(String requestURI); method in interface:HttpRequestHandlerResolver
H A DUriPatternMatcher.java91 public Object lookup(String requestURI) { method in class:UriPatternMatcher
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDefaultDigestProvider.java37 private static final Map lookup = createTable(); field in class:BcDefaultDigestProvider
143 BcDigestProvider extProv = (BcDigestProvider)lookup.get(digestAlgorithmIdentifier.getAlgorithm());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DIETFUtils.java234 Hashtable lookup)
237 for (Enumeration en = lookup.elements(); en.hasMoreElements();)
248 for (Enumeration en = lookup.keys(); en.hasMoreElements();)
251 if (oid.equals(lookup.get(key)))
232 findAttrNamesForOID( ASN1ObjectIdentifier oid, Hashtable lookup) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DCRLReason.java103 return lookup(ASN1Enumerated.getInstance(o).getValue().intValue());
140 public static CRLReason lookup(int value) method in class:CRLReason
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
H A DAES.java57 private static final Class gcmSpecClass = lookup("javax.crypto.spec.GCMParameterSpec");
657 private static Class lookup(String className) method in class:AES
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseBlockCipher.java81 private static final Class gcmSpecClass = lookup("javax.crypto.spec.GCMParameterSpec");
115 private static Class lookup(String className) method in class:BaseBlockCipher
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Ddatabase_string_table.cc40 std::map<std::string, int64>::const_iterator lookup = local
42 if (lookup != value_to_id_.end()) {
43 *id = lookup->second;
70 // lookup to find the old value.
86 std::map<int64, std::string>::const_iterator lookup = local
88 if (lookup != id_to_value_.end()) {
89 *value = lookup->second;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dspeech_rule_functions.js55 cvox.SpeechRuleFunctions.Store_.prototype.lookup = function(name) {
/external/chromium_org/components/invalidation/
H A Dinvalidator_registrar.cc75 HandlerIdsMap::const_iterator lookup = handler_to_ids_map_.find(handler); local
76 if (lookup != handler_to_ids_map_.end()) {
77 return lookup->second;
H A Dobject_id_invalidation_map.cc45 IdToListMap::const_iterator lookup = map_.find(*it); local
46 if (lookup != map_.end()) {
47 new_map[*it] = lookup->second;
55 IdToListMap::const_iterator lookup = map_.find(id); local
56 DCHECK(lookup != map_.end());
57 DCHECK(!lookup->second.IsEmpty());
58 return lookup->second;
H A Dsync_invalidation_listener.cc203 UnackedInvalidationsMap::iterator lookup = local
205 if (lookup == unacked_invalidations_map_.end()) {
206 lookup = unacked_invalidations_map_.insert(
209 lookup->second.AddSet(to_save.ForObject(*it));
298 UnackedInvalidationsMap::iterator lookup = local
300 if (lookup == unacked_invalidations_map_.end()) {
304 lookup->second.Acknowledge(handle);
315 UnackedInvalidationsMap::iterator lookup = local
317 if (lookup == unacked_invalidations_map_.end()) {
321 lookup
[all...]
/external/chromium_org/content/common/gpu/
H A Dgpu_surface_lookup.cc21 void GpuSurfaceLookup::InitInstance(GpuSurfaceLookup* lookup) { argument
22 DCHECK(!g_instance || !lookup);
23 g_instance = lookup;
/external/chromium_org/content/renderer/
H A Dactive_notification_tracker.cc30 WebNotification* lookup = notification_table_.Lookup(id); local
31 if (!lookup)
34 *notification = *lookup;
/external/chromium_org/extensions/renderer/resources/
H A Dutils.js29 * lookup(array_of_dictionaries, 'id', 2) to get the dictionary with id == 2.
34 function lookup(array_of_dictionaries, field, value) { function
42 throw new Error("Failed lookup of field '" + field + "' with value '" +
171 exports.lookup = lookup;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8EventListenerList.cpp40 PassRefPtr<EventListener> V8EventListenerList::getEventListener(ScriptState* scriptState, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup) argument
43 if (lookup == ListenerFindOnly) {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaSource.h50 static HTMLMediaSource* lookup(const String& url) { return s_registry ? static_cast<HTMLMediaSource*>(s_registry->lookup(url)) : 0; } function in class:blink::HTMLMediaSource
H A DURLRegistry.h56 virtual URLRegistrable* lookup(const String&) { ASSERT_NOT_REACHED(); return 0; } function in class:blink::URLRegistry
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DMediaSourceRegistry.cpp69 URLRegistrable* MediaSourceRegistry::lookup(const String& url) function in class:blink::MediaSourceRegistry
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeVerticalData.cpp213 const LookupTable* lookup(uint16_t index, const SharedBuffer& buffer) const function in struct:blink::OpenType::LookupList
233 const LookupTable* lookup = lookups->lookup(lookupListIndex[i], buffer); local
234 if (!lookup || !lookup->getSubstitutions(map, buffer))
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.cpp1778 typename Entry::LookupResult HeapExtentCache<Entry>::lookup(Address address) function in class:HeapExtentCache
1809 BaseHeapPage* HeapContainsCache::lookup(Address address) function in class:HeapContainsCache
1811 return HeapExtentCache<PositiveEntry>::lookup(address);
2141 if (s_heapDoesNotContainCache->lookup(address))
2150 ASSERT(!s_heapDoesNotContainCache->lookup(address));
2159 if (!s_heapDoesNotContainCache->lookup(address))
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTable.h478 ValueType* lookup(KeyPeekInType key) { return lookup<IdentityTranslatorType, KeyPeekInType>(key); } function in class:WTF::HashTable
479 template<typename HashTranslator, typename T> ValueType* lookup(T);
480 template<typename HashTranslator, typename T> const ValueType* lookup(T) const;
636 inline Value* HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::lookup(T key) function in class:WTF::HashTable
638 return const_cast<Value*>(const_cast<const HashTable*>(this)->lookup<HashTranslator, T>(key));
643 inline const Value* HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::lookup(T key) const function in class:WTF::HashTable
918 ValueType* entry = lookup<HashTranslator>(key);
929 ValueType* entry = const_cast<HashTable*>(this)->lookup<HashTranslator>(key);
940 return const_cast<HashTable*>(this)->lookup<HashTranslato
[all...]

Completed in 570 milliseconds

123456789