HomeSort by relevance Sort by last modified time
    Searched defs:lst (Results 1 - 22 of 22) sorted by null

  /external/webkit/WebKit/qt/Api/
qwebhistory_p.h 56 lst = l;
60 lst->deref();
65 WebCore::BackForwardList* lst; member in class:QWebHistoryPrivate
qwebhistory.cpp 259 WebCore::BackForwardList* lst = d->lst; local
262 WebCore::Page* page = lst->page();
267 if (!lst->entries().size())
270 RefPtr<WebCore::HistoryItem> current = lst->currentItem();
271 int capacity = lst->capacity();
272 lst->setCapacity(0);
274 lst->setCapacity(capacity); //revert capacity
275 lst->addItem(current.get()); //insert old current item
276 lst->goToItem(current.get()); //and set it as current agai
    [all...]
  /external/elfutils/
config-compat-darwin.h 27 va_list lst; local
28 va_start(lst, fmt);
29 vfprintf(stderr, fmt, lst);
31 va_end(lst);
config-compat-freebsd.h 30 va_list lst; local
31 va_start(lst, fmt);
32 vfprintf(stderr, fmt, lst);
34 va_end(lst);
  /bootable/diskinstaller/libdiskconfig/
diskconfig.c 384 validate_and_config(struct disk_info *dinfo, int *fd, struct write_list **lst)
386 *lst = NULL;
394 *lst = config_mbr(dinfo);
395 return *lst == NULL;
404 *lst = NULL;
418 struct write_list *lst; local
421 if (validate_and_config(dinfo, &fd, &lst) != 0)
425 wlist_free(lst);
  /system/core/libdiskconfig/
diskconfig.c 387 validate_and_config(struct disk_info *dinfo, int *fd, struct write_list **lst)
389 *lst = NULL;
397 *lst = config_mbr(dinfo);
398 return *lst == NULL;
407 *lst = NULL;
421 struct write_list *lst; local
424 if (validate_and_config(dinfo, &fd, &lst) != 0)
428 wlist_free(lst);
  /dalvik/libcore/awt-kernel/src/main/java/java/beans/
PropertyChangeSupport.java 306 PropertyChangeListener lst = (PropertyChangeListener) local
309 removePropertyChangeListener(name, lst);
328 PropertyChangeListener lst = (PropertyChangeListener) local
330 addPropertyChangeListener(name, lst);
  /external/dhcpcd/
dhcpcd.c 174 char **lst = options->environ; local
184 while (lst && lst[i]) {
185 if (match && strncmp(lst[i], match, l) == 0) {
187 free(lst[i]);
188 lst[i] = xstrdup(value);
191 l = strlen(lst[i]);
193 lst[i] = xrealloc(lst[i], l + lv + 2);
194 lst[i][l] = ' '
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
ValueParser.java 216 ArrayList<TextAttribute> lst = new ArrayList<TextAttribute>(); local
253 lst.add(attr);
256 return lst;
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 73 LinkedList<Integer> lst = new LinkedList<Integer>(); local
74 lst.add(new Integer(30));
75 Collections.sort(lst, null);
76 int index = Collections.binarySearch(lst, new Integer(2), null);
  /external/openssl/crypto/bn/
bntest.c 125 static unsigned char lst[]="\xC6\x4F\x43\x04\x2A\xEA\xCA\x6E\x58\x36\x80\x5B\xE8\xC9" variable
198 if (!test_lshift(out,ctx,BN_bin2bn(lst,sizeof(lst)-1,NULL)))
    [all...]
  /external/qemu/hw/
bt-sdp.c 251 uint8_t *lst; local
300 lst = rsp + 2;
307 memcpy(lst + len, record->attribute_list[i].pair,
314 lst[0] = SDP_DTYPE_SEQ | SDP_DSIZE_NEXT2;
315 lst[1] = (len + start - 3) >> 8;
316 lst[2] = (len + start - 3) & 0xff;
324 lst[end ++] = sizeof(int);
325 memcpy(lst + end, &len, sizeof(int));
328 lst[end ++] = 0;
377 uint8_t *lst; local
    [all...]
usb-ohci.c 100 uint32_t lst; member in struct:__anon4769
412 ohci->lst = OHCI_LS_THRESH;
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
FontPeerImpl.java 288 ArrayList<Glyph> lst = new ArrayList<Glyph>(len); local
296 lst.add(this.getGlyph(i));
299 return (Glyph[]) lst.toArray();
  /frameworks/base/core/jni/
android_bluetooth_common.cpp 186 va_list lst; local
187 va_start(lst, first_arg_type);
192 first_arg_type, lst);
193 va_end(lst);
259 va_list lst; local
260 va_start(lst, first_arg_type);
263 first_arg_type, lst);
264 va_end(lst);
276 va_list lst; local
277 va_start(lst, first_arg_type)
294 va_list lst; local
    [all...]
  /external/icu4c/i18n/
astro.cpp 413 * @param lst The Local Sidereal Time, in hours since sidereal midnight
419 double CalendarAstronomer::lstToUT(double lst) {
421 double lt = normalize((lst - getSiderealOffset()) * 0.9972695663, 24);
851 // * @param lst in hours (0..24)
854 // double lstToGst(double lst) {
856 // return normalize(lst - delta, 24);
912 // // Now compute the Local Sidereal Time, LST:
914 // double LST = 98.9818 + 0.985647352 * d + /*UT*15 + long*/
917 // // (east long. positive). Note that LST is here expressed in degrees,
918 // // where 15 degrees corresponds to one hour. Since LST really is an angle
1374 double lst = ((rise ? CalendarAstronomer_PI2-angle : angle) + pos.ascension ) * 24 \/ CalendarAstronomer_PI2; local
    [all...]
  /external/libxml2/
pattern.c 540 xmlNodePtr lst; local
550 lst = node->children;
553 while (lst != NULL) {
554 if ((lst->type == XML_ELEMENT_NODE) &&
555 (step->value[0] == lst->name[0]) &&
556 (xmlStrEqual(step->value, lst->name)))
558 lst = lst->next;
560 if (lst != NULL)
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 439 milliseconds