HomeSort by relevance Sort by last modified time
    Searched refs:cur (Results 26 - 50 of 1519) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4579689/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/share/clang/
bash-autocomplete.sh 13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
38 if [[ "$cur" == -* ]]; then
40 arg="$arg$cur"
41 elif [[ "$w1" == -* && "$cur" == '=' ]]; then
44 elif [[ "$cur" == -*= ]]; then
46 arg="$arg$cur,"
49 arg="$arg$w1,$cur"
52 arg="$arg$w2=,$cur"
53 elif [[ ${cur: -1} != '=' && ${cur/=} != $cur ]]; the
    [all...]
  /dalvik/libdex/
Leb128.h 36 int cur = *(ptr++); local
37 result = (result & 0x7f) | ((cur & 0x7f) << 7);
38 if (cur > 0x7f) {
39 cur = *(ptr++);
40 result |= (cur & 0x7f) << 14;
41 if (cur > 0x7f) {
42 cur = *(ptr++);
43 result |= (cur & 0x7f) << 21;
44 if (cur > 0x7f) {
46 * Note: We don't check to see if cur is out o
73 int cur = *(ptr++); local
    [all...]
  /external/libcap-ng/libcap-ng-0.7/utils/
proc-llist.c 32 l->cur = NULL;
61 l->cur->next = newnode;
64 l->cur = newnode;
71 register lnode* cur; local
73 cur = l->head;
74 while (cur) {
75 nextnode=cur->next;
76 free(cur->cmd);
77 free(cur->capabilities);
78 free(cur->bounds)
89 register lnode* cur; local
    [all...]
  /tools/dexter/slicer/export/slicer/
dex_leb128.h 33 u4 cur = *(ptr++); local
34 result = (result & 0x7f) | ((cur & 0x7f) << 7);
35 if (cur > 0x7f) {
36 cur = *(ptr++);
37 result |= (cur & 0x7f) << 14;
38 if (cur > 0x7f) {
39 cur = *(ptr++);
40 result |= (cur & 0x7f) << 21;
41 if (cur > 0x7f) {
42 // We don't check to see if cur is out o
65 s4 cur = *(ptr++); local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/share/clang/
bash-autocomplete.sh 4 local cur prev words cword flags
7 flags=$( clang --autocomplete="$cur" )
8 if [[ "$flags" == "" || "$cur" == "" ]]; then
11 COMPREPLY=( $( compgen -W "$flags" -- "$cur" ) )
  /prebuilts/clang/host/darwin-x86/clang-4479392/share/clang/
bash-autocomplete.sh 4 local cur prev words cword flags
7 flags=$( clang --autocomplete="$cur" )
8 if [[ "$flags" == "" || "$cur" == "" ]]; then
11 COMPREPLY=( $( compgen -W "$flags" -- "$cur" ) )
  /prebuilts/clang/host/linux-x86/clang-4393122/share/clang/
bash-autocomplete.sh 4 local cur prev words cword flags
7 flags=$( clang --autocomplete="$cur" )
8 if [[ "$flags" == "" || "$cur" == "" ]]; then
11 COMPREPLY=( $( compgen -W "$flags" -- "$cur" ) )
  /prebuilts/clang/host/linux-x86/clang-4479392/share/clang/
bash-autocomplete.sh 4 local cur prev words cword flags
7 flags=$( clang --autocomplete="$cur" )
8 if [[ "$flags" == "" || "$cur" == "" ]]; then
11 COMPREPLY=( $( compgen -W "$flags" -- "$cur" ) )
  /external/python/cpython2/Doc/includes/sqlite3/
pysqlite_datetime.py 5 cur = con.cursor() variable
6 cur.execute("create table test(d date, ts timestamp)")
11 cur.execute("insert into test(d, ts) values (?, ?)", (today, now))
12 cur.execute("select d, ts from test")
13 row = cur.fetchone()
17 cur.execute('select current_date as "d [date]", current_timestamp as "ts [timestamp]"')
18 row = cur.fetchone()
simple_tableprinter.py 9 cur = con.cursor() variable
10 cur.execute(SELECT)
13 for fieldDesc in cur.description:
20 fieldIndices = range(len(cur.description))
21 for row in cur:
  /external/python/cpython3/Doc/includes/sqlite3/
pysqlite_datetime.py 5 cur = con.cursor() variable
6 cur.execute("create table test(d date, ts timestamp)")
11 cur.execute("insert into test(d, ts) values (?, ?)", (today, now))
12 cur.execute("select d, ts from test")
13 row = cur.fetchone()
17 cur.execute('select current_date as "d [date]", current_timestamp as "ts [timestamp]"')
18 row = cur.fetchone()
text_factory.py 4 cur = con.cursor() variable
9 cur.execute("select ?", (AUSTRIA,))
10 row = cur.fetchone()
15 cur.execute("select ?", (AUSTRIA,))
16 row = cur.fetchone()
25 cur.execute("select ?", ("bar",))
26 row = cur.fetchone()
simple_tableprinter.py 9 cur = con.cursor() variable
10 cur.execute(SELECT)
13 for fieldDesc in cur.description:
20 fieldIndices = range(len(cur.description))
21 for row in cur:
  /external/selinux/libsepol/src/
hashtab.c 69 hashtab_ptr_t prev, cur, newnode; local
76 cur = h->htable[hvalue];
77 while (cur && h->keycmp(h, key, cur->key) > 0) {
78 prev = cur;
79 cur = cur->next;
82 if (cur && (h->keycmp(h, key, cur->key) == 0))
108 hashtab_ptr_t cur, last local
141 hashtab_ptr_t prev, cur, newnode; local
182 hashtab_ptr_t cur; local
201 hashtab_ptr_t cur, temp; local
227 hashtab_ptr_t cur; local
254 hashtab_ptr_t last, cur, temp; local
291 hashtab_ptr_t cur; local
    [all...]
sidtab.c 46 sidtab_node_t *prev, *cur, *newnode; local
53 cur = s->htable[hvalue];
54 while (cur != NULL && sid > cur->sid) {
55 prev = cur;
56 cur = cur->next;
59 if (cur && sid == cur->sid) {
90 sidtab_node_t *cur, *last local
121 sidtab_node_t *cur; local
151 sidtab_node_t *cur; local
174 sidtab_node_t *last, *cur, *temp; local
211 sidtab_node_t *cur; local
263 sidtab_node_t *cur; local
290 sidtab_ptr_t cur, temp; local
    [all...]
  /external/selinux/policycoreutils/newrole/
hashtab.c 48 hashtab_ptr_t prev, cur, newnode; local
55 cur = h->htable[hvalue];
56 while (cur && h->keycmp(h, key, cur->key) > 0) {
57 prev = cur;
58 cur = cur->next;
61 if (cur && (h->keycmp(h, key, cur->key) == 0))
87 hashtab_ptr_t cur, last local
120 hashtab_ptr_t prev, cur, newnode; local
161 hashtab_ptr_t cur; local
180 hashtab_ptr_t cur, temp; local
206 hashtab_ptr_t cur; local
233 hashtab_ptr_t last, cur, temp; local
270 hashtab_ptr_t cur; local
    [all...]
  /external/libxml2/doc/tutorial/
includeaddkeyword.c 9 parseStory (xmlDocPtr doc, xmlNodePtr cur, char *keyword) {
11 xmlNewTextChild (cur, NULL, "keyword", keyword);
19 xmlNodePtr cur;
28 cur = xmlDocGetRootElement(doc);
30 if (cur == NULL) {
36 if (xmlStrcmp(cur->name, (const xmlChar *) "story")) {
42 cur = cur->xmlChildrenNode;
43 while (cur != NULL) {
44 if ((!xmlStrcmp(cur->name, (const xmlChar *)"storyinfo")))
    [all...]
includegetattribute.c 9 getReference (xmlDocPtr doc, xmlNodePtr cur) {
12 cur = cur->xmlChildrenNode;
13 while (cur != NULL) {
14 if ((!xmlStrcmp(cur->name, (const xmlChar *)"reference"))) {
15 uri = xmlGetProp(cur, "uri");
19 cur = cur->next;
29 xmlNodePtr cur;
38 cur = xmlDocGetRootElement(doc)
    [all...]

Completed in 427 milliseconds

12 3 4 5 6 7 8 91011>>