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

1 2

  /external/elfutils/bionic-fixup/
error.h 28 va_list lst; local
29 va_start(lst, fmt);
30 vfprintf(stderr, fmt, lst);
32 va_end(lst);
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory_p.h 58 lst = l;
62 lst->deref();
67 WebCore::BackForwardListImpl* lst; member in class:QWebHistoryPrivate
qwebhistory.cpp 263 WebCore::BackForwardListImpl* lst = d->lst; local
266 WebCore::Page* page = static_cast<WebCore::BackForwardListImpl*>(lst)->page();
271 if (!lst->entries().size())
274 RefPtr<WebCore::HistoryItem> current = lst->currentItem();
275 int capacity = lst->capacity();
276 lst->setCapacity(0);
278 lst->setCapacity(capacity); //revert capacity
279 lst->addItem(current.get()); //insert old current item
280 lst->goToItem(current.get()); //and set it as current agai
    [all...]
  /hardware/ti/omap4xxx/
tm.c 7 va_list lst; local
8 va_start(lst, fmt);
9 vprintf(fmt, lst);
10 va_end(lst);
heaptracker.c 78 va_list lst; local
79 va_start(lst, fmt);
80 __android_log_vprint(ANDROID_LOG_ERROR, "DEBUG", fmt, lst);
81 va_end(lst);
  /external/elfutils/host-darwin-fixup/
AndroidFixup.h 61 va_list lst; local
62 va_start(lst, fmt);
63 vfprintf(stderr, fmt, lst);
65 va_end(lst);
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalueiterator/
tst_qscriptvalueiterator.cpp 98 QStringList lst; local
111 lst.append(name);
118 for (int i = 0; i < lst.count(); ++i) {
121 QCOMPARE(it.name(), lst.at(i));
124 for (int i = 0; i < lst.count(); ++i) {
127 QCOMPARE(it.name(), lst.at(lst.count()-1-i));
153 QStringList lst; local
166 lst.append(name);
173 for (int i = 0; i < lst.count(); ++i)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ValueParser.java 216 ArrayList<TextAttribute> lst = new ArrayList<TextAttribute>(); local
253 lst.add(attr);
256 return 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);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 59 LinkedList<Integer> lst = new LinkedList<Integer>(); local
60 lst.add(new Integer(30));
61 Collections.sort(lst, null);
62 int index = Collections.binarySearch(lst, new Integer(2), null);
  /external/dhcpcd/
if-options.c 135 char **lst = ifo->environ; local
145 while (lst && lst[i]) {
146 if (match && strncmp(lst[i], match, l) == 0) {
148 free(lst[i]);
149 lst[i] = xstrdup(value);
152 l = strlen(lst[i]);
154 lst[i] = xrealloc(lst[i], l + lv + 2);
155 lst[i][l] = ' '
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 58 LinkedList<Integer> lst = new LinkedList<Integer>(); local
59 lst.add(new Integer(30));
60 Collections.sort(lst, null);
61 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 250 uint8_t *lst; local
299 lst = rsp + 2;
306 memcpy(lst + len, record->attribute_list[i].pair,
313 lst[0] = SDP_DTYPE_SEQ | SDP_DSIZE_NEXT2;
314 lst[1] = (len + start - 3) >> 8;
315 lst[2] = (len + start - 3) & 0xff;
323 lst[end ++] = sizeof(int);
324 memcpy(lst + end, &len, sizeof(int));
327 lst[end ++] = 0;
376 uint8_t *lst; local
    [all...]
usb-ohci.c 99 uint32_t lst; member in struct:__anon13804
411 ohci->lst = OHCI_LS_THRESH;
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 52 u64 lst : 44;
87 SyncVar *lst = ListHead(); local
88 v->next = lst;
89 u64 x = (u64)v ^ (u64)lst;
96 SyncVar *lst = ListHead(); local
97 SyncVar *nxt = lst->next;
98 lst->next = 0;
99 u64 x = (u64)lst ^ (u64)nxt;
103 return lst;
107 SyncVar *lst = ListHead() local
    [all...]
  /external/icu4c/i18n/
astro.cpp 412 * @param lst The Local Sidereal Time, in hours since sidereal midnight
418 double CalendarAstronomer::lstToUT(double lst) {
420 double lt = normalize((lst - getSiderealOffset()) * 0.9972695663, 24);
856 // * @param lst in hours (0..24)
859 // double lstToGst(double lst) {
861 // return normalize(lst - delta, 24);
917 // // Now compute the Local Sidereal Time, LST:
919 // double LST = 98.9818 + 0.985647352 * d + /*UT*15 + long*/
922 // // (east long. positive). Note that LST is here expressed in degrees,
923 // // where 15 degrees corresponds to one hour. Since LST really is an angle
1385 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...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 428 QModelIndexList lst = model.match(model.index(0, 0), local
431 for (int i = 0; i < lst.size(); i++) {
433 item = model.itemFromIndex(lst[i]);
438 model.removeRow(lst[i].row());
564 QModelIndexList lst = model.match(model.index(0, 0), peer_role_bss_id,
566 if (lst.size() == 0)
568 model.removeRow(lst[0].row());
784 QModelIndexList lst = model.match(model.index(0, 0), peer_role_address,
786 if (lst.size() == 0)
788 return model.itemFromIndex(lst[0])
1773 QModelIndexList lst; local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.c 1650 Eina_Inlist *lst = *itr; local
1734 Eina_Inlist *lst = *itr; local
1799 Eina_Inlist *lst = *itr; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 568 milliseconds

1 2