/external/chromium/testing/gtest/codegear/ |
gtest_link.cc | 39 #pragma link "gtest.lib"
40 #pragma link "gtest_main.lib"
|
/external/chromium_org/testing/gtest/codegear/ |
gtest_link.cc | 39 #pragma link "gtest.lib"
40 #pragma link "gtest_main.lib"
|
/external/protobuf/gtest/codegear/ |
gtest_link.cc | 39 #pragma link "gtest.lib"
40 #pragma link "gtest_main.lib"
|
/external/iproute2/etc/iproute2/ |
rt_scopes | 7 253 link
|
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
analysis_link.css | 6 .analysis-link { 7 color: -webkit-link; 12 .analysis-link:hover {
|
/bionic/libc/upstream-netbsd/libc/include/isc/ |
list.h | 28 #define LINK(type) struct { type *prev, *next; } 29 #define INIT_LINK_TYPE(elt, link, type) \ 31 (elt)->link.prev = (type *)(-1); \ 32 (elt)->link.next = (type *)(-1); \ 34 #define INIT_LINK(elt, link) \ 35 INIT_LINK_TYPE(elt, link, void) 36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ 37 (void *)((elt)->link.next) != (void *)(-1)) 43 #define PREPEND(list, elt, link) \ [all...] |
/external/libppp/src/ |
link.h | 26 * $FreeBSD: src/usr.sbin/ppp/link.h,v 1.11.34.1 2010/12/21 17:10:29 kensmith Exp $ 40 struct link { struct 46 struct pppThroughput total; /* Link throughput statistics */ 47 struct pppThroughput *parent; /* MP link throughput statistics */ 61 #define LINK_QUEUES(link) (sizeof (link)->Queue / sizeof (link)->Queue[0]) 62 #define LINK_HIGHQ(link) ((link)->Queue + LINK_QUEUES(link) - 1 [all...] |
ip.h | 33 struct link; 36 extern int ip_PushPacket(struct link *, struct bundle *); 41 extern struct mbuf *ipv4_Input(struct bundle *, struct link *, struct mbuf *); 43 extern struct mbuf *ipv6_Input(struct bundle *, struct link *, struct mbuf *);
|
vjcomp.h | 30 struct link;
|
layer.h | 39 #define LAYER_MAX 10 /* How many layers we can handle on a link */ 42 struct link; 48 struct mbuf *(*push)(struct bundle *, struct link *, struct mbuf *, 50 struct mbuf *(*pull)(struct bundle *, struct link *, struct mbuf *,
|
pap.h | 40 extern struct mbuf *pap_Input(struct bundle *, struct link *, struct mbuf *);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
link.c | 8 int link(const char* oldpath, const char* newpath) { function
|
/external/clang/test/CodeGen/ |
2002-03-12-StructInitialize.c | 10 Connection link[3] variable
|
2002-03-12-StructInitializer.c | 14 Connection link[3] variable
|
/external/bison/lib/ |
fd-hook.c | 29 /* The first and last link in the doubly linked list. 71 register_fd_hook (close_hook_fn close_hook, ioctl_hook_fn ioctl_hook, struct fd_hook *link) 78 if (link->private_next == NULL && link->private_prev == NULL) 80 /* Add the link to the doubly linked list. */ 81 link->private_next = anchor.private_next; 82 link->private_prev = &anchor; 83 link->private_close_fn = close_hook; 84 link->private_ioctl_fn = ioctl_hook; 85 anchor.private_next->private_prev = link; [all...] |
/bionic/libc/arch-arm/bionic/ |
exidx_dynamic.c | 29 #include <link.h>
|
/bionic/libc/arch-mips/syscalls/ |
link.S | 4 .globl link 6 .ent link 8 link: label 22 .end link
|
/external/markdown/MarkdownTest/Tests_2004/ |
Yuri-Links-in-Headers.text | 10 # A header with a [link](http://www.link.com) 14 Another with a [link][a] 18 [a]: http://www.link.com/
|
/libcore/luni/src/main/java/java/util/ |
LinkedList.java | 27 * LinkedList is an implementation of {@link List}, backed by a doubly-linked list. 35 * probably use {@link ArrayList} if you don't need the queue-like behavior. 46 transient Link<E> voidLink; 48 private static final class Link<ET> { 51 Link<ET> previous, next; 53 Link(ET o, Link<ET> p, Link<ET> n) { 65 Link<ET> link, lastLink field in class:LinkedList.LinkIterator 193 private Link<ET> link; field in class:LinkedList.ReverseLinkIterator 280 Link<E> link = voidLink; local 485 Link<E> link = voidLink.next; local 507 Link<E> link = voidLink; local 559 Link<E> link = voidLink.next; local 592 Link<E> link = voidLink.previous; local 642 Link<E> link = voidLink; local 863 Link<E> link = voidLink; local 925 Link<E> link = voidLink.next; local 956 Link<E> link = voidLink.next; local 982 Link<E> link = voidLink; local [all...] |
/development/samples/RSSReader/src/com/example/android/rssreader/ |
RssItem.java | 21 * title, link, description. 34 public RssItem(CharSequence title, CharSequence link, CharSequence description) { 36 mLink = link; 52 public void setLink(CharSequence link) { 53 mLink = link;
|
/external/qemu/hw/ |
bt.c | 25 static void bt_dummy_lmp_mode_change(struct bt_link_s *link) 30 static void bt_dummy_lmp_connection_complete(struct bt_link_s *link) 32 if (link->slave->reject_reason) 41 static void bt_dummy_lmp_disconnect_master(struct bt_link_s *link) 47 static void bt_dummy_lmp_acl_resp(struct bt_link_s *link, 54 /* Slaves that don't hold any additional per link state can use these */ 57 struct bt_link_s *link = qemu_mallocz(sizeof(struct bt_link_s)); local 59 link->slave = req->slave; 60 link->host = req->host; 63 req->host->lmp_connection_complete(link); [all...] |
/bionic/libc/arch-arm/syscalls/ |
link.S | 6 ENTRY(link) function 15 END(link)
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/ |
content.js | 9 var link = links[i].href.replace(/(.*)#?/, "$1"); 10 if (seenLinks[link]) 12 seenLinks[link] = 1; 13 results.push({ href: link, text: text });
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
myocamlbuild.ml | 6 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"]);;
|
/external/llvm/tools/llvm-link/ |
Android.mk | 4 llvm-link.cpp 19 # llvm-link command line tool (host) 24 LOCAL_MODULE := llvm-link 34 # llvm-link command line tool (target) 39 LOCAL_MODULE := llvm-link
|