/external/chromium_org/v8/src/ia32/ |
simulator-ia32.h | 37 // do is to call the entry directly. 38 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \ 39 (entry(p0, p1, p2, p3, p4)) 45 // Call the generated regexp code directly. The code at the entry address should 47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \ 48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
|
/external/chromium_org/v8/src/x64/ |
simulator-x64.h | 37 // do is to call the entry directly. 39 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \ 40 (entry(p0, p1, p2, p3, p4)) 45 // Call the generated regexp code directly. The code at the entry address should 47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \ 48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
IntQueue.java | 20 private static class Entry { 21 private IntQueue.Entry next; 23 private Entry(int value) { 27 private IntQueue.Entry head; 29 private IntQueue.Entry tail; 32 IntQueue.Entry entry = new Entry(value); local 34 tail.next = entry; 35 tail = entry; [all...] |
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/ |
VertexCache.java | 53 public boolean inCache(int entry) {
56 if(entries[i] == entry)
64 public int addEntry(int entry) {
75 entries[0] = entry;
|
/external/v8/src/ia32/ |
simulator-ia32.h | 37 // do is to call the entry directly. 38 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \ 39 (entry(p0, p1, p2, p3, p4)) 45 // Call the generated regexp code directly. The code at the entry address should 47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7) \ 48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7))
|
/external/v8/src/x64/ |
simulator-x64.h | 37 // do is to call the entry directly. 39 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \ 40 (entry(p0, p1, p2, p3, p4)) 45 // Call the generated regexp code directly. The code at the entry address should 47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7) \ 48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7))
|
/external/valgrind/main/VEX/switchback/ |
test_hello.c | 15 void entry ( void*(*service)(int,int) ) function
|
/frameworks/volley/tests/src/com/android/volley/mock/ |
MockCache.java | 30 private Entry mFakeEntry = null; 32 public void setEntryToReturn(Entry entry) { 33 mFakeEntry = entry; 37 public Entry get(String key) { 44 public Entry entryPut = null; 47 public void put(String key, Entry entry) { 50 entryPut = entry;
|
/libcore/luni/src/main/java/java/net/ |
AddressCache.java | 44 // Either an InetAddress[] for a positive entry, 45 // or a String detail message for a negative entry. 75 AddressCacheEntry entry = cache.get(hostname); local 76 // Do we have a valid cache entry? 77 if (entry != null && entry.expiryNanos >= System.nanoTime()) { 78 return entry.value; 95 * negative cache entry.)
|
/packages/apps/Contacts/tests/src/com/android/contacts/detail/ |
ContactDetailFragmentTests.java | 49 DetailViewEntry entry = new ContactDetailFragment.DetailViewEntry(); local 50 ContactDetailFragment.buildImActions(mContext, entry, im); 51 assertEquals(Intent.ACTION_SENDTO, entry.intent.getAction()); 52 assertEquals("xmpp:" + TEST_ADDRESS + "?message", entry.intent.getData().toString()); 54 assertNull(entry.secondaryIntent); 67 DetailViewEntry entry = new ContactDetailFragment.DetailViewEntry(); local 68 ContactDetailFragment.buildImActions(mContext, entry, im); 69 assertEquals(Intent.ACTION_SENDTO, entry.intent.getAction()); 70 assertEquals("xmpp:" + TEST_ADDRESS + "?message", entry.intent.getData().toString()); 72 assertEquals(Intent.ACTION_SENDTO, entry.secondaryIntent.getAction()) 87 DetailViewEntry entry = new ContactDetailFragment.DetailViewEntry(); local 107 DetailViewEntry entry = new ContactDetailFragment.DetailViewEntry(); local 133 DetailViewEntry entry = new ContactDetailFragment.DetailViewEntry(); local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PhotoFallbackEffect.java | 37 public static class Entry { 44 public Entry(Path path, Rect source, RawTexture texture) { 61 private ArrayList<Entry> mList = new ArrayList<Entry>(); 69 mList.add(new Entry(path, rect, texture)); 72 public Entry getEntry(Path path) { 74 Entry entry = mList.get(i); local 75 if (entry.path == path) return entry; 83 Entry entry = mList.get(i); local 165 Entry entry = mList.get(i); local 174 Entry entry = mList.get(i); local [all...] |
/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
download_operation.cc | 41 ResourceEntry* entry, 47 if (entry->file_info().is_directory()) 50 // The file's entry should have its file specific info. 51 DCHECK(entry->has_file_specific_info()); 57 if (entry->file_specific_info().is_hosted_document()) { 63 GURL(entry->file_specific_info().alternate_url()), 64 entry->resource_id()) || 69 SetPlatformFileInfoToResourceEntry(file_info, entry); 73 // Leave |cache_file_path| empty when no cache entry is found. 75 if (!cache->GetCacheEntry(entry->resource_id(), &cache_entry) 295 ResourceEntry* entry = new ResourceEntry; local 330 ResourceEntry* entry = new ResourceEntry; local [all...] |
/external/ipsec-tools/src/racoon/ |
genlist.c | 52 struct genlist_entry *entry = calloc(sizeof(struct genlist_entry), 1); local 53 entry->data = data; 54 TAILQ_INSERT_HEAD(head, entry, chain); 55 return entry; 61 struct genlist_entry *entry = calloc(sizeof(struct genlist_entry), 1); local 62 entry->data = data; 63 TAILQ_INSERT_TAIL(head, entry, chain); 64 return entry; 117 print_entry(void *entry, void *arg) 119 if (!entry) [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/ |
TfrfBox.java | 38 public List<Entry> entries = new ArrayList<Entry>();
60 for (Entry entry : entries) {
62 IsoTypeWriter.writeUInt64(byteBuffer, entry.fragmentAbsoluteTime);
63 IsoTypeWriter.writeUInt64(byteBuffer, entry.fragmentAbsoluteDuration);
65 IsoTypeWriter.writeUInt32(byteBuffer, entry.fragmentAbsoluteTime);
66 IsoTypeWriter.writeUInt32(byteBuffer, entry.fragmentAbsoluteDuration);
77 Entry entry = new Entry(); local [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
NavigationHistory.java | 19 protected void addEntry(NavigationEntry entry) { 20 entries.add(entry); 42 * Returns the index of the entry the {@link ContentView} was navigated to
|
/external/chromium_org/sync/engine/ |
apply_control_data_updates.h | 27 syncable::MutableEntry* const entry, 30 syncable::MutableEntry* const entry,
|
/external/clang/test/CodeGenCXX/ |
copy-assign-volatile-synthesis.cpp | 39 ioapic_redir_t entry; local 40 ioapic_shadow[ioapic_id].redirs[3] = entry;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
TablesTest.java | 37 Cell<String, Integer, Character> entry local 39 SerializableTester.reserializeAndAssert(entry); 43 Cell<String, Integer, Character> entry local 45 assertEquals("(foo,1)=a", entry.toString()); 53 Cell<String, Integer, Character> entry local 57 .addEqualityGroup(entry, Tables.immutableCell("foo", 1, 'a')) 66 Cell<String, Integer, Character> entry local 70 .addEqualityGroup(entry, Tables.immutableCell(null, null, null))
|
/external/linux-tools-perf/util/ |
debugfs.h | 20 extern int debugfs_write(const char *entry, const char *value); 21 extern int debugfs_read(const char *entry, char *buffer, size_t size);
|
/frameworks/volley/src/com/android/volley/ |
CacheDispatcher.java | 101 Cache.Entry entry = mCache.get(request.getCacheKey()); local 102 if (entry == null) { 110 if (entry.isExpired()) { 112 request.setCacheEntry(entry); 120 new NetworkResponse(entry.data, entry.responseHeaders)); 123 if (!entry.refreshNeeded()) { 131 request.setCacheEntry(entry);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|