HomeSort by relevance Sort by last modified time
    Searched refs:lookup (Results 26 - 50 of 702) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu4c/common/unicode/
symtable.h 18 * \brief C++ API: An interface that defines both lookup protocol and parsing of
30 * An interface that defines both lookup protocol and parsing of
37 * "$start=alpha"), then the call lookup("start") will return the
70 * Lookup the characters associated with this string and return it.
73 * @param s the symbolic name to lookup
78 virtual const UnicodeString* lookup(const UnicodeString& s) const = 0;
81 * Lookup the UnicodeMatcher associated with the given character, and
  /external/javassist/src/main/javassist/compiler/
KeywordTable.java 21 public int lookup(String name) { method in class:KeywordTable
  /frameworks/av/media/libmediaplayerservice/
SharedLibrary.h 31 void *lookup(const char *symbol) const;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectStreamClassTest.java 54 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
63 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
74 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
85 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
96 ObjectStreamClass osc = ObjectStreamClass.lookup(DummyClass.class);
118 ObjectStreamClass osc1 = ObjectStreamClass.lookup(SyntheticTest.class);
121 ObjectStreamClass osc2 = ObjectStreamClass.lookup(SyntheticTest.X.class);
134 ObjectStreamClass osc1 = ObjectStreamClass.lookup(cl1);
140 ObjectStreamClass osc2 = ObjectStreamClass.lookup(cl2);
147 * @tests java.io.ObjectStreamClass#lookup(java.lang.Class
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table.cc 40 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/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
AreaCodeMapTest.java 99 assertEquals("New York", areaCodeMapForUS.lookup(number));
104 assertEquals("Westwood, NJ", areaCodeMapForUS.lookup(number));
109 assertEquals("New York", areaCodeMapForUS.lookup(number));
114 assertEquals("San Mateo, CA", areaCodeMapForUS.lookup(number));
119 assertEquals("California", areaCodeMapForUS.lookup(number));
124 assertEquals("Richardson, TX", areaCodeMapForUS.lookup(number));
129 assertNull(areaCodeMapForUS.lookup(number));
134 assertNull(areaCodeMapForUS.lookup(number));
139 assertEquals("Milan", areaCodeMapForIT.lookup(number));
142 assertEquals("Rome", areaCodeMapForIT.lookup(number))
    [all...]
  /external/openssh/
auth2-hostbased.c 144 const char *resolvedname, *ipaddr, *lookup, *reason; local
166 lookup = chost;
174 lookup = resolvedname;
179 key_cert_check_authority(key, 1, 0, lookup, &reason)) {
185 host_status = check_key_in_hostfiles(pw, key, lookup,
191 host_status = check_key_in_hostfiles(pw, key, lookup,
204 cuser, lookup);
208 key_type(key), fp, cuser, lookup);
  /developers/build/prebuilts/gradle/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) { method in class:SampleGattAttributes
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) { method in class:SampleGattAttributes
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) { method in class:SampleGattAttributes
  /frameworks/base/tools/aapt/
ResourceIdCache.h 14 static uint32_t lookup(const android::String16& package,
  /external/chromium/base/
string_piece.cc 83 // the lookup table in constant time.
106 bool lookup[UCHAR_MAX + 1] = { false };
107 BuildLookupTable(s, lookup);
109 if (lookup[static_cast<unsigned char>(ptr_[i])]) {
128 bool lookup[UCHAR_MAX + 1] = { false };
129 BuildLookupTable(s, lookup);
131 if (!lookup[static_cast<unsigned char>(ptr_[i])]) {
158 bool lookup[UCHAR_MAX + 1] = { false };
159 BuildLookupTable(s, lookup);
161 if (lookup[static_cast<unsigned char>(ptr_[i])]
    [all...]
  /external/chromium_org/content/renderer/
active_notification_tracker.cc 32 WebNotification* lookup = notification_table_.Lookup(id); local
33 if (!lookup)
36 *notification = *lookup;
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
71 return callback_table_.Lookup(id);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleCustomFilterProgramCache.cpp 57 StyleCustomFilterProgram* StyleCustomFilterProgramCache::lookup(const CustomFilterProgramInfo& programInfo) const function in class:WebCore::StyleCustomFilterProgramCache
63 StyleCustomFilterProgram* StyleCustomFilterProgramCache::lookup(StyleCustomFilterProgram* program) const function in class:WebCore::StyleCustomFilterProgramCache
65 return lookup(programCacheKey(program));
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
string_piece.cc 89 // the lookup table in constant time.
112 bool lookup[UCHAR_MAX + 1] = { false };
113 BuildLookupTable(s, lookup);
115 if (lookup[static_cast<unsigned char>(ptr_[i])]) {
134 bool lookup[UCHAR_MAX + 1] = { false };
135 BuildLookupTable(s, lookup);
137 if (!lookup[static_cast<unsigned char>(ptr_[i])]) {
164 bool lookup[UCHAR_MAX + 1] = { false };
165 BuildLookupTable(s, lookup);
167 if (lookup[static_cast<unsigned char>(ptr_[i])]
    [all...]
  /external/v8/src/
ic.cc 173 LookupResult* lookup,
175 Object* end = lookup->IsProperty()
176 ? lookup->holder() : Object::cast(isolate->heap()->null_value());
420 LookupResult* lookup) {
424 object->Lookup(*name, lookup);
426 // an interceptor), bail out if lookup is not cacheable: we won't
427 // be able to IC it anyway and regular lookup should work fine.
428 if (!lookup->IsFound()
429 || (lookup->type() != INTERCEPTOR
    [all...]
  /external/chromium_org/sync/notifier/
object_id_invalidation_map.cc 45 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;
  /external/chromium_org/chrome/renderer/resources/extensions/
utils.js 20 // lookup(array_of_dictionaries, 'id', 2) to get the dictionary with id == 2.
21 function lookup(array_of_dictionaries, field, value) { function
29 throw new Error("Failed lookup of field '" + field + "' with value '" +
56 exports.lookup = lookup;
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 
  /external/chromium_org/base/strings/
string_piece.cc 114 // the lookup table in constant time.
138 bool lookup[UCHAR_MAX + 1] = { false };
139 BuildLookupTable(s, lookup);
141 if (lookup[static_cast<unsigned char>(self.data()[i])]) {
161 bool lookup[UCHAR_MAX + 1] = { false };
162 BuildLookupTable(s, lookup);
164 if (!lookup[static_cast<unsigned char>(self.data()[i])]) {
195 bool lookup[UCHAR_MAX + 1] = { false };
196 BuildLookupTable(s, lookup);
198 if (lookup[static_cast<unsigned char>(self.data()[i])]
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_data.cpp 97 TransliterationRuleData::lookup(UChar32 standIn) const { function in class:TransliterationRuleData
104 UnicodeFunctor *f = lookup(standIn);
110 UnicodeFunctor *f = lookup(standIn);
  /external/icu4c/i18n/
rbt_data.cpp 97 TransliterationRuleData::lookup(UChar32 standIn) const { function in class:TransliterationRuleData
104 UnicodeFunctor *f = lookup(standIn);
110 UnicodeFunctor *f = lookup(standIn);
  /external/marisa-trie/tools/
marisa-lookup.cc 23 int lookup(const char * const *args, std::size_t num_args) { function in namespace:__anon25363
55 const marisa::UInt32 key_id = trie.lookup(str);
104 return lookup(cmdopt.argv + cmdopt.optind, cmdopt.argc - cmdopt.optind);
  /external/marisa-trie/v0_1_5/tools/
marisa_alpha-lookup.cc 23 int lookup(const char * const *args, std::size_t num_args) { function in namespace:__anon25376
55 const marisa_alpha::UInt32 key_id = trie.lookup(str);
104 return lookup(cmdopt.argv + cmdopt.optind, cmdopt.argc - cmdopt.optind);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRPtrStack.h 41 - (id)lookup:(NSString *)s;

Completed in 770 milliseconds

12 3 4 5 6 7 8 91011>>