HomeSort by relevance Sort by last modified time
    Searched refs:links (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_mc.c 80 struct media_link *links = entity->links; local
84 links = (struct media_link*)realloc(links, max_links * sizeof *links);
85 if (links == NULL)
89 links[i].twin->twin = &links[i];
92 entity->links = links;
107 struct media_links_enum links; local
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 46 * regex matches in the text into clickable links. This is particularly
199 * of the link types indicated in the mask into clickable links.
215 ArrayList<LinkSpec> links = new ArrayList<LinkSpec>(); local
218 gatherLinks(links, text, Patterns.WEB_URL,
224 gatherLinks(links, text, Patterns.EMAIL_ADDRESS,
230 gatherTelLinks(links, text);
234 gatherMapLinks(links, text);
237 pruneOverlaps(links);
239 if (links.size() == 0) {
243 for (LinkSpec link: links) {
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebPageSerializer.h 46 // which contain all resource links that have local copy.
62 // The parameter links contain original URLs of all saved links.
64 // saved links, which matched with vector:links one by one.
70 const WebVector<WebURL>& links,
  /system/core/init/
devices.c 364 char **links; local
373 links = malloc(sizeof(char *) * 2);
374 if (!links)
376 memset(links, 0, sizeof(char *) * 2);
397 if (asprintf(&links[link_num], "/dev/usb/%s%.*s", uevent->subsystem, width, parent) > 0)
400 links[link_num] = NULL;
407 return links;
409 free(links);
433 char **links = malloc(sizeof(char *) * 4); local
434 if (!links)
532 char **links = NULL; local
553 char **links = NULL; local
    [all...]
  /bionic/libc/tools/zoneinfo/
generate 40 links = []
47 links.append('%s %s %s\n' % (fields[0], fields[1], fields[2]))
54 for link in links:
ZoneCompactor.java 20 // Note that the links must be declared prior to the zone names.
75 private Map<String,String> links = new HashMap<String,String>(); field in class:ZoneCompactor
122 links.put(from, to);
124 String link = links.get(s);
143 // Fill in fields for links.
144 Iterator<String> it = links.keySet().iterator();
147 String to = links.get(from);
  /bionic/libc/kernel/common/linux/
media.h 66 __u16 links; member in struct:media_entity_desc
116 struct media_link_desc __user *links; member in struct:media_links_enum
  /external/kernel-headers/original/linux/
media.h 70 __u16 links; member in struct:media_entity_desc
122 /* Should have enough room for links elements */
123 struct media_link_desc __user *links; member in struct:media_links_enum
  /external/tremolo/Tremolo/
vorbisfile.c 75 between links in the chain. */
217 first pages of two links. */
245 vf->links=m+1;
246 vf->offsets=_ogg_malloc((vf->links+1)*sizeof(*vf->offsets));
247 vf->serialnos=_ogg_malloc(vf->links*sizeof(*vf->serialnos));
377 watch out for missing information for links in the OggVorbis_File
384 vf->dataoffsets=_ogg_malloc(vf->links*sizeof(*vf->dataoffsets));
385 vf->pcmlengths=_ogg_malloc(vf->links*2*sizeof(*vf->pcmlengths));
387 for(i=0;i<vf->links;i++){
484 for(i=0;i<vf->links;i++
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Makefile 25 rm -f manpage.links manpage.refs
  /hardware/samsung_slsi/exynos5/include/
media.h 66 __u16 links; member in struct:media_entity_desc
116 struct media_link_desc __user *links; member in struct:media_links_enum
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
media.h 70 __u16 links; member in struct:media_entity_desc
122 /* Should have enough room for links elements */
123 struct media_link_desc __user *links; member in struct:media_links_enum
  /external/libvorbis/lib/
vorbisfile.c 48 between links in the chain. */
502 vf->links=m+1;
507 vf->offsets=_ogg_malloc((vf->links+1)*sizeof(*vf->offsets));
508 vf->vi=_ogg_realloc(vf->vi,vf->links*sizeof(*vf->vi));
509 vf->vc=_ogg_realloc(vf->vc,vf->links*sizeof(*vf->vc));
510 vf->serialnos=_ogg_malloc(vf->links*sizeof(*vf->serialnos));
511 vf->dataoffsets=_ogg_malloc(vf->links*sizeof(*vf->dataoffsets));
512 vf->pcmlengths=_ogg_malloc(vf->links*2*sizeof(*vf->pcmlengths));
526 first pages of two links. */
832 for(link=0;link<vf->links;link++
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLDocument09.js 78 The links attribute returns a collection of all AREA and A elements
81 Retrieve the links attribute from the document and examine its value.
101 vlinks = doc.links;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLDocument09.js 78 The links attribute returns a collection of all AREA and A elements
81 Retrieve the links attribute from the document and examine its value.
101 vlinks = doc.links;
  /external/valgrind/main/helgrind/
hg_main.c 3317 LAOGLinks* links; local
3342 LAOGLinks* links; local
3422 LAOGLinks* links; local
3505 LAOGLinks* links; local
3549 LAOGLinks* links; local
3564 LAOGLinks* links; local
3581 LAOGLinks* links; local
3814 LAOGLinks *links; local
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCamera.cpp 698 struct media_link *links = NULL; local
777 // SETUP LINKS
780 links = m_ispSensorEntity->links;
781 if (links == NULL ||
782 links->source->entity != m_ispSensorEntity ||
783 links->sink->entity != m_ispFrontEntity) {
786 } else if (exynos_media_setup_link(m_media, links->source, links->sink, MEDIA_LNK_FL_ENABLED) < 0) {
794 links = &m_ispFrontEntity->links[i]
    [all...]
  /hardware/samsung_slsi/exynos5/libgscaler/
exynos_gscaler.c 312 struct media_link *links; local
365 links = &gsc_vd_entity->links[i];
367 if (links == NULL ||
368 links->source->entity != gsc_vd_entity ||
369 links->sink->entity != gsc_sd_entity) {
371 } else if (exynos_media_setup_link(media0, links->source, links->sink, MEDIA_LNK_FL_ENABLED) < 0) {
373 __func__, links->source->entity->info.id, links->sink->entity->info.id)
473 struct media_link * links; local
    [all...]
  /external/webkit/Source/JavaScriptCore/
create_hash_table 153 my @links = ();
164 if (defined($links[$h])) {
165 $h = $links[$h];
169 $links[$h] = $compactSize;
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 1 // Event listner for clicks on links in a browser action popup.
32 // Search history to find up to ten links that a user has typed in,
33 // and show those links in a popup.
  /external/libppp/src/
bundle.c 220 for (dl = bundle->links; dl; dl = dl->next)
250 for (dl = bundle->links; dl; dl = dl->next)
337 for (dl = bundle->links; dl; dl = dl->next) {
377 for (dl = bundle->links; dl; dl = dl->next)
401 for (dl = bundle->links; dl; dl = dl->next) {
433 for (dl = bundle->links; dl; dl = dl->next)
446 for (dl = bundle->links; dl; dl = dl->next)
462 for (nlinks = 0, dl = bundle->links; dl; dl = dl->next)
496 /* Which links need a select() ? */
497 for (dl = bundle->links; dl; dl = dl->next
    [all...]
  /external/libxml2/include/libxml/
nanoftp.h 44 * @filename: the file name (including "->" when links are shown)
49 * @links: the link count
62 unsigned long size, int links, int year,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_task_types.h 245 struct dsp_tree_link links; member in struct:dsp_task_tree_control_block
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_task_types.h 245 struct dsp_tree_link links; member in struct:dsp_task_tree_control_block
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
HyperlinksTest.java 216 IHyperlink[] links = resolver.detectHyperlinks(viewer, new Region(offset, 0), true); local
217 assertNotNull(links);
221 for (IHyperlink link : links) {
246 IHyperlink link = links[0];

Completed in 684 milliseconds

1 2 3 4 5 6 7 8