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

1 2 3 4 5 6 7 8 91011>>

  /external/libselinux/src/
label_android_property.c 18 struct selabel_lookup_rec lr; /* holds contexts for lookup result */
244 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, function
298 rec->func_lookup = &lookup;
  /external/linux-tools-perf/config/
utilities.mak 137 # lookup
139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
144 lookup = $(call unescape-nl,$(shell sh -c $(_l-sh))) macro
168 get-executable = $(if $(1),$(if $(is-absolute),$(_ge-abspath),$(lookup)))
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 308 SymbolLoc Loc = GlobalSymbolTable.lookup(Name);
317 SymbolLoc Loc = GlobalSymbolTable.lookup(Name);
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.h 161 size_type find (char lookup) const
163 return find(lookup, 0);
  /external/srec/config/en.us/grammars/
run_compile_grammars.sh 15 GMR=lookup
  /external/stlport/src/
messages.cpp 59 locale _Catalog_locale_map::lookup(nl_catd_type key) const { function in class:_Catalog_locale_map
152 const wctype& ct = use_facet<wctype>(_M_map->lookup(_STLP_MUTABLE(_Messages_impl, _M_cat)[thecat]));
156 // Verify that the lookup failed; an empty string might represent success.
  /frameworks/base/core/java/android/text/
AutoText.java 111 return getInstance(view).lookup(src, start, end);
132 private String lookup(CharSequence src, final int start, final int end) { method in class:AutoText
  /libcore/benchmarks/src/benchmarks/regression/
SerializationBenchmark.java 67 ObjectStreamClass osc = ObjectStreamClass.lookup(String.class);
79 ObjectStreamClass osc = ObjectStreamClass.lookup(String.class);
  /ndk/sources/cxx-stl/stlport/src/
messages.cpp 59 locale _Catalog_locale_map::lookup(nl_catd_type key) const { function in class:_Catalog_locale_map
152 const wctype& ct = use_facet<wctype>(_M_map->lookup(_STLP_MUTABLE(_Messages_impl, _M_cat)[thecat]));
156 // Verify that the lookup failed; an empty string might represent success.
  /ndk/tests/device/test-gnustl_shared-exception/jni/
Android.mk 31 # Note: Symbol lookup from lib at exec fixed in bionic after android-14
  /ndk/tests/device/test-gnustl_static-exception/jni/
Android.mk 31 # Note: Symbol lookup from lib at exec fixed in bionic after android-14
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailcap.py 147 entries = lookup(caps, MIMEtype, key)
158 def lookup(caps, MIMEtype, key=None): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailcap.py 147 entries = lookup(caps, MIMEtype, key)
158 def lookup(caps, MIMEtype, key=None): function
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeVerticalData.cpp 215 const LookupTable* lookup(uint16_t index, const SharedBuffer& buffer) const function in struct:WebCore::OpenType::LookupList
235 const LookupTable* lookup = lookups->lookup(lookupListIndex[i], buffer); local
236 if (!lookup || !lookup->getSubstitutions(map, buffer))
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
ArrayMapTests.java 391 ControlledHash lookup = new ControlledHash(50000);
394 if (it.next().equals(lookup)) {
398 if (arrayMap.containsKey(lookup)) {
406 if (it.next().equals(lookup)) {
410 if (arraySet.contains(lookup)) {
  /external/littlemock/tests/com/google/testing/littlemock/
LittleMockTest.java 121 public String lookup(String string); method in interface:LittleMockTest.Foo
596 doReturn("hello").when(mFoo).lookup(mCaptureString.capture());
598 assertEquals("hello", mFoo.lookup("what"));
645 mFoo.lookup("james");
648 verify(mFoo).lookup(mCaptureString.capture());
656 doReturn("jim").when(mFoo).lookup(anyString());
657 assertEquals("jim", mFoo.lookup("barney"));
675 doReturn("jim").when(mFoo).lookup((String) anyObject());
676 assertEquals("jim", mFoo.lookup("barney"));
    [all...]
  /external/chromium_org/v8/test/mjsunit/
mirror-object.js 39 MirrorRefCache.prototype.lookup = function(handle) {
103 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
104 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
106 assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
108 assertEquals(mirror.prototypeObject().type(), refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
140 // Lookup the serialized object from the handle reference.
141 var o = refs.lookup(fromJSON.properties[i].ref);
  /external/clang/lib/Serialization/
ModuleManager.cpp 29 ModuleFile *ModuleManager::lookup(StringRef Name) { function in class:ModuleManager
33 return lookup(Entry);
38 ModuleFile *ModuleManager::lookup(const FileEntry *File) { function in class:ModuleManager
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 119 // Lookup tests
124 this->Map.lookup(this->getKey()));
128 // two-phase name lookup, it also doesn't require the typename. Deal with
131 this->Map.lookup(this->getKey()));
159 // Lookup tests
162 EXPECT_EQ(this->getValue(), this->Map.lookup(this->getKey()));
292 // Key traits that allows lookup with either an unsigned or char* key;
319 // Normal lookup tests
  /external/smack/src/org/xbill/DNS/
Lookup.java 10 * The Lookup object issues queries to caching DNS servers. The input consists
18 * A Lookup object may be reused, but should not be used by multiple threads.
27 public final class Lookup {
61 /** The lookup was successful. */
65 * The lookup failed due to a data or server error. Repeating the lookup
71 * The lookup failed due to a network error. Repeating the lookup may be
204 * Create a Lookup object that will find records of the given name, type,
205 * and class. The lookup will use the default cache, resolver, and searc
452 lookup(Name current) { method in class:Lookup
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 59 // public byte[] lookup(long key) throws IOException;
60 // public void lookup(LookupRequest req) throws IOException;
419 // This method is for one-off lookup. For repeated lookup, use the version
422 public byte[] lookup(long key) throws IOException { method in class:BlobCache
425 if (lookup(mLookupRequest)) {
442 public boolean lookup(LookupRequest req) throws IOException { method in class:BlobCache
542 // Returns true if the lookup is successful.
543 // The slot offset in the index file is saved in mSlotOffset. If the lookup
546 // If the lookup is successful, the file offset is also saved i
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
BlobCache.java 59 // public byte[] lookup(long key) throws IOException;
60 // public void lookup(LookupRequest req) throws IOException;
408 // This method is for one-off lookup. For repeated lookup, use the version
411 public byte[] lookup(long key) throws IOException { method in class:BlobCache
414 if (lookup(mLookupRequest)) {
431 public boolean lookup(LookupRequest req) throws IOException { method in class:BlobCache
528 // Returns true if the lookup is successful.
529 // The slot offset in the index file is saved in mSlotOffset. If the lookup
532 // If the lookup is successful, the file offset is also saved i
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 309 struct lookup { struct
323 static struct lookup const * byword(const char * string,
324 const struct lookup * lp);
326 static struct lookup const line_codes[] = {
334 static struct lookup const mon_names[] = {
350 static struct lookup const wday_names[] = {
361 static struct lookup const lasts[] = {
372 static struct lookup const begin_years[] = {
378 static struct lookup const end_years[] = {
385 static struct lookup const leap_types[] =
    [all...]
  /external/icu4c/tools/tzcode/
zic.c 309 struct lookup { struct
323 static struct lookup const * byword(const char * string,
324 const struct lookup * lp);
326 static struct lookup const line_codes[] = {
334 static struct lookup const mon_names[] = {
350 static struct lookup const wday_names[] = {
361 static struct lookup const lasts[] = {
372 static struct lookup const begin_years[] = {
378 static struct lookup const end_years[] = {
385 static struct lookup const leap_types[] =
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 91011>>