HomeSort by relevance Sort by last modified time
    Searched defs:link (Results 1 - 25 of 863) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
link.cpp 32 int link(const char* old_path, const char* new_path) { function
  /prebuilts/go/darwin-x86/misc/cgo/stdio/
chain.go 22 func link(left chan<- int, right <-chan int) { func
40 go link(left, right)
  /prebuilts/go/linux-x86/misc/cgo/stdio/
chain.go 22 func link(left chan<- int, right <-chan int) { func
40 go link(left, right)
  /external/autotest/frontend/client/src/autotest/common/ui/
RealHyperlink.java 8 private Element link; field in class:RealHyperlink
11 link = DOM.createAnchor();
12 link.setInnerText(text);
13 setElement(link);
18 link.setAttribute("target", "_blank");
20 link.removeAttribute("target");
25 link.setAttribute("href", href);
ToggleLink.java 14 private Anchor link; field in class:ToggleLink
20 link = new Anchor(activateText);
21 link.addClickHandler(this);
22 initWidget(link);
26 return link.getText().equals(deactivateText);
30 link.setText(active ? deactivateText : activateText);
  /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/opencv3/3rdparty/libtiff/
tif_close.c 65 TIFFClientInfoLink *link = tif->tif_clientinfo; local
67 tif->tif_clientinfo = link->next;
68 _TIFFfree( link->name );
69 _TIFFfree( link );
tif_extension.c 69 TIFFClientInfoLink *link = tif->tif_clientinfo; local
71 while( link != NULL && strcmp(link->name,name) != 0 )
72 link = link->next;
74 if( link != NULL )
75 return link->data;
83 TIFFClientInfoLink *link = tif->tif_clientinfo; local
86 ** Do we have an existing link with this name? If so, just
89 while( link != NULL && strcmp(link->name,name) != 0
    [all...]
  /external/pdfium/third_party/libtiff/
tif_close.c 65 TIFFClientInfoLink *link = tif->tif_clientinfo; local
67 tif->tif_clientinfo = link->next;
68 _TIFFfree( link->name );
69 _TIFFfree( link );
tif_extension.c 69 TIFFClientInfoLink *link = tif->tif_clientinfo; local
71 while( link != NULL && strcmp(link->name,name) != 0 )
72 link = link->next;
74 if( link != NULL )
75 return link->data;
83 TIFFClientInfoLink *link = tif->tif_clientinfo; local
86 ** Do we have an existing link with this name? If so, just
89 while( link != NULL && strcmp(link->name,name) != 0
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
btMultiBodyLinkCollider.h 32 btMultiBodyLinkCollider (btMultiBody* multiBody,int link)
34 m_link(link)
39 //if (link>=0 || (multiBody && !multiBody->hasFixedBase()))
73 //check if 'link' has collision disabled
76 const btMultibodyLink& link = m_multiBody->getLink(this->m_link); local
77 if ((link.m_flags&BT_MULTIBODYLINKFLAGS_DISABLE_PARENT_COLLISION) && link.m_parent == other->m_link)
  /bootable/recovery/applypatch/
freecache.cpp 59 char link[FILENAME_MAX]; local
61 int count = readlink(fd_path.c_str(), link, sizeof(link)-1);
63 link[count] = '\0';
64 if (strncmp(link, "/cache/", 7) == 0) {
65 if (files->erase(link) > 0) {
66 printf("%s is open by %s\n", link, de->d_name);
  /external/autotest/frontend/afe/feeds/
feed.py 43 link = "/results" variable in class:JobFeed
52 self.full_link = 'http://' + server_hostname + self.link
  /external/e2fsprogs/e2fsck/
prof_err.c 58 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
77 if (!link.table)
78 et = &link;
  /external/e2fsprogs/lib/et/test_cases/
continuation.c 28 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
47 if (!link.table)
48 et = &link;
heimdal.c 109 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
128 if (!link.table)
129 et = &link;
heimdal2.c 95 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
114 if (!link.table)
115 et = &link;
heimdal3.c 29 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
48 if (!link.table)
49 et = &link;
imap_err.c 57 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
76 if (!link.table)
77 et = &link;
simple.c 49 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
68 if (!link.table)
69 et = &link;
  /external/e2fsprogs/lib/ext2fs/
ext2_err.c 183 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
202 if (!link.table)
203 et = &link;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/index/
ElementIndex.java 41 * Returns the link to the class with the given identifier if a
46 * @return Link or null
54 public void addClass(final ILinkable link, final long classid) {
55 allClasses.put(Long.valueOf(classid), link.getLink(baseFolder));
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
MethodItem.java 52 final String link = sourcePage.getLink(base); local
54 return first != ISourceNode.UNKNOWN_LINE ? link + "#L" + first : link;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
LinkableStub.java 17 * Stub implementation for {@link ILinkable}.
21 protected final String link; field in class:LinkableStub
25 public LinkableStub(String link, String label, String style) {
26 this.link = link;
32 return link;

Completed in 903 milliseconds

1 2 3 4 5 6 7 8 91011>>