HomeSort by relevance Sort by last modified time
    Searched refs:link (Results 126 - 150 of 1943) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon52184
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon52645
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon53108
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon53523
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon54052
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon54583
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon59659
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon60023
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon60387
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon60754
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon61153
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon61605
38 struct list_head link; member in struct:android_early_suspend
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
android_power.h 19 struct list_head link; member in struct:__anon62059
38 struct list_head link; member in struct:android_early_suspend
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/
options_widgets.css 13 button:not(.custom-appearance):not(.link-button),
14 input[type='button']:not(.custom-appearance):not(.link-button),
15 input[type='submit']:not(.custom-appearance):not(.link-button),
32 button:not(.custom-appearance):not(.link-button),
33 input[type='button']:not(.custom-appearance):not(.link-button),
34 input[type='submit']:not(.custom-appearance):not(.link-button),
45 button:not(.custom-appearance):not(.link-button),
46 input[type='button']:not(.custom-appearance):not(.link-button),
47 input[type='submit']:not(.custom-appearance):not(.link-button) {
139 button:not(.custom-appearance):not(.link-button):enabled:hover
    [all...]
  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_mc.c 128 struct media_link_desc *link = &links.links[i]; local
134 source = exynos_media_get_entity_by_id(media, link->source.entity);
135 sink = exynos_media_get_entity_by_id(media, link->sink.entity);
137 ALOGE("WARNING entity %u link %u from %u/%u to %u/%u is invalid!",
138 id, i, link->source.entity,
139 link->source.index,
140 link->sink.entity,
141 link->sink.index);
145 fwdlink->source = &source->pads[link->source.index];
146 fwdlink->sink = &sink->pads[link->sink.index]
380 struct media_link *link = &pad->entity->links[i]; local
463 struct media_link *link; local
524 struct media_link *link = &entity->links[j]; local
674 struct media_link *link; local
719 struct media_link *link; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
link_error_detector.py 57 for link in links:
60 head, last = link.rsplit('/', 1) if '/' in link else ('', link)
65 link = posixpath.join(head, last)
67 link = '%s#%s' % (link, anchor)
69 if link.startswith('#'):
70 anchor_refs.append(link)
72 if link.startswith('/')
    [all...]
  /external/libnl/include/netlink/cli/
link.h 2 * netlink/cli/link.h CLI Link Helpers
15 #include <netlink/route/link.h>
19 nl_cli_alloc_cache((sk), "link", rtnl_link_alloc_cache)
  /external/libpcap/tests/
pcap_compile_test.c 1 pcap = pcap_open_dead(link, snaplen);
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 69 // It includes the data members "title," "link," and "summary."
72 public final String link; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) {
78 this.link = link;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
89 String link = null; local
99 } else if (name.equals("link")) {
100 link = readLink(parser);
105 return new Entry(title, summary, link);
118 String link = ""; local
    [all...]
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 69 // It includes the data members "title," "link," and "summary."
72 public final String link; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) {
78 this.link = link;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
89 String link = null; local
99 } else if (name.equals("link")) {
100 link = readLink(parser);
105 return new Entry(title, summary, link);
118 String link = ""; local
    [all...]
  /external/tremolo/Tremolo/
vorbisfile.c 56 #define STREAMSET 3 /* serialno and link set, but not to current link */
57 #define LINKSET 4 /* serialno and link set to current link */
201 /* finds each bitstream link one at a time using a bisection search
203 Recurses for each link so it can alloc the link storage after
348 static int _set_link_number(OggVorbis_File *vf,int link){
349 if(link != vf->current_link) _decode_clear(vf);
351 _seek_helper(vf,vf->offsets[link]);
591 int link=(vf->seekable?vf->current_link:0); local
672 int link,ret; local
1064 int i,link=vf->current_link; local
1099 int link; local
1154 int link=-1; local
1382 int link,ret; local
1432 int link=-1; local
1462 int link=-1; local
1502 int link=0; local
    [all...]
  /external/chromium_org/chrome/browser/
jumplist_updater_win.cc 28 base::win::ScopedComPtr<IShellLink> link; local
29 HRESULT result = link.CreateInstance(CLSID_ShellLink, NULL,
37 result = link->SetPath(application_path.c_str());
47 result = link->SetArguments(arguments.c_str());
56 link->SetIconLocation(item->icon_path().c_str(), item->icon_index());
64 result = link.QueryInterface(property_store.Receive());
76 return SUCCEEDED(collection->AddObject(link));
225 scoped_refptr<ShellLinkItem> link(*item);
226 AddShellLink(collection, application_path.value(), link);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
inspectorSyntaxHighlight.css 42 .cm-css-link {color: rgb(7, 144, 154);}
52 .cm-xml-link {color: #00e;}
96 .webkit-html-external-link,
97 .webkit-html-resource-link {
98 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webkit-html-resource-link) */
102 .webkit-html-resource-link {
108 .webkit-html-external-link {
109 /* Keep this in sync with view-source.css (.webkit-html-external-link) */
113 .webkit-html-external-link:hover
    [all...]
  /external/owasp/sanitizer/tools/findbugs/bin/
fb 13 link=`ls -ld "$program"`
14 link=`expr "$link" : '.*-> \(.*\)'`
15 if [ "`expr "$link" : '/.*'`" = 0 ]; then
18 program="$dir/$link"
21 program="$link"
findbugs 13 link=`ls -ld "$program"`
14 link=`expr "$link" : '.*-> \(.*\)'`
15 if [ "`expr "$link" : '/.*'`" = 0 ]; then
18 program="$dir/$link"
21 program="$link"

Completed in 1320 milliseconds

1 2 3 4 56 7 8 91011>>