Home
last modified time | relevance | path

Searched refs:INDEX (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/external/bison/src/
DSbitset.h29 #define Sbitset__byteAddress(SELF, INDEX) \ argument
30 (((SELF) + (INDEX) / CHAR_BIT))
31 #define Sbitset__bit_mask(INDEX) \ argument
32 (1 << (CHAR_BIT - 1 - (INDEX) % CHAR_BIT))
42 #define Sbitset__test(SELF, INDEX) \ argument
43 ((*Sbitset__byteAddress ((SELF), (INDEX)) & Sbitset__bit_mask (INDEX)) != 0)
49 #define Sbitset__set(SELF, INDEX) \ argument
51 *Sbitset__byteAddress ((SELF), (INDEX)) = \
52 *Sbitset__byteAddress ((SELF), (INDEX)) | Sbitset__bit_mask (INDEX); \
55 #define Sbitset__reset(SELF, INDEX) \ argument
[all …]
Drelation.c55 static relation_nodes INDEX; variable
68 INDEX[i] = height = top; in traverse()
73 if (INDEX[R[i][j]] == 0) in traverse()
76 if (INDEX[i] > INDEX[R[i][j]]) in traverse()
77 INDEX[i] = INDEX[R[i][j]]; in traverse()
82 if (INDEX[i] == height) in traverse()
86 INDEX[j] = infinity; in traverse()
102 INDEX = xcalloc (size + 1, sizeof *INDEX); in relation_digraph()
110 if (INDEX[i] == 0 && R[i]) in relation_digraph()
113 free (INDEX); in relation_digraph()
/external/chromium_org/third_party/sqlite/src/test/
Danalyze7.test32 CREATE INDEX t1a ON t1(a);
33 CREATE INDEX t1b ON t1(b);
34 CREATE INDEX t1cd ON t1(c,d);
40 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1a (a=?) (~10 rows)}}
43 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1b (b=?) (~10 rows)}}
46 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1cd (c=?) (~10 rows)}}
56 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1a (a=?) (~1 rows)}}
59 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1b (b=?) (~10 rows)}}
62 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1cd (c=?) (~10 rows)}}
69 } {0 0 0 {SEARCH TABLE t1 USING INDEX t1a (a=?) (~1 rows)}}
[all …]
Dindexedby.test22 CREATE INDEX i1 ON t1(a);
23 CREATE INDEX i2 ON t1(b);
26 CREATE INDEX i3 ON t2(c);
27 CREATE INDEX i4 ON t2(d);
45 } {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~10 rows)}}
52 0 0 1 {SEARCH TABLE t2 USING INDEX i3 (c=?) (~10 rows)}
56 # Parser tests. Test that an INDEXED BY or NOT INDEX clause can be
92 } {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~2 rows)}}
96 } {0 0 0 {SEARCH TABLE t1 USING INDEX i2 (b=?) (~2 rows)}}
113 } {0 0 0 {SCAN TABLE t3 USING INDEX sqlite_autoindex_t3_1 (~1000000 rows)}}
[all …]
Deqp.test32 CREATE INDEX i1 ON t1(a);
33 CREATE INDEX i2 ON t1(b);
41 0 0 1 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~10 rows)}
42 0 0 1 {SEARCH TABLE t1 USING INDEX i2 (b=?) (~10 rows)}
49 0 1 1 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~10 rows)}
50 0 1 1 {SEARCH TABLE t1 USING INDEX i2 (b=?) (~10 rows)}
55 0 0 0 {SCAN TABLE t1 USING COVERING INDEX i1 (~1000000 rows)}
66 0 0 0 {SEARCH TABLE t1 USING COVERING INDEX i1 (a=?) (~10 rows)}
123 CREATE INDEX t2i1 ON t2(x);
133 0 0 0 {SCAN TABLE t2 USING COVERING INDEX t2i1 (~1000000 rows)}
[all …]
Danalyze2.test115 CREATE INDEX t1_x ON t1(x);
116 CREATE INDEX t1_y ON t1(y);
127 0 0 0 {SEARCH TABLE t1 USING INDEX t1_y (y>?) (~100 rows)}
132 0 0 0 {SEARCH TABLE t1 USING INDEX t1_x (x>?) (~100 rows)}
137 0 0 0 {SEARCH TABLE t1 USING INDEX t1_y (y>?) (~100 rows)}
142 0 0 0 {SEARCH TABLE t1 USING INDEX t1_x (x>?) (~100 rows)}
147 0 0 0 {SEARCH TABLE t1 USING INDEX t1_x (x>? AND x<?) (~25 rows)}
152 0 0 0 {SEARCH TABLE t1 USING INDEX t1_y (y>? AND y<?) (~75 rows)}
157 0 0 0 {SEARCH TABLE t1 USING INDEX t1_x (x>? AND x<?) (~12 rows)}
162 0 0 0 {SEARCH TABLE t1 USING INDEX t1_y (y>? AND y<?) (~12 rows)}
[all …]
Dunordered.test21 CREATE INDEX i1 ON t1(a);
41 {0 0 0 {SCAN TABLE t1 USING INDEX i1 (~128 rows)}}
44 {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a>?) (~32 rows)}}
47 {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~1 rows)}}
48 {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~1 rows)}
51 {0 0 0 {SEARCH TABLE t1 USING COVERING INDEX i1 (~1 rows)}}
54 {0 0 0 {SCAN TABLE t1 USING INDEX i1 (~128 rows)}}
58 {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~1 rows)}}
59 {0 0 0 {SEARCH TABLE t1 USING INDEX i1 (a=?) (~1 rows)}}
Dminmax3.test64 execsql { CREATE INDEX i1 ON t1(x) }
69 execsql { CREATE INDEX i2 ON t1(x,y) }
74 execsql { DROP INDEX i2 ; CREATE INDEX i2 ON t1(x, y DESC) }
89 execsql { DROP INDEX i1 ; DROP INDEX i2 }
94 execsql { CREATE INDEX i1 ON t1(x) }
99 execsql { CREATE INDEX i2 ON t1(x,y) }
104 execsql { DROP INDEX i2 ; CREATE INDEX i2 ON t1(x, y DESC) }
110 execsql { DROP INDEX i1 ; DROP INDEX i2 }
115 execsql { CREATE INDEX i1 ON t1(y) }
120 execsql { DROP INDEX i1 ; CREATE INDEX i1 ON t1(y DESC) }
[all …]
/external/chromium_org/components/test/data/web_database/
Dversion_22_corrupt.sql24 CREATE INDEX logins_signon ON logins (signon_realm);
25 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
26 CREATE INDEX web_apps_url_index ON web_apps (url);
27 CREATE INDEX autofill_name ON autofill (name);
28 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
29 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
30 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
31 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_27.sql18 CREATE INDEX logins_signon ON logins (signon_realm);
19 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
20 CREATE INDEX web_apps_url_index ON web_apps (url);
21 CREATE INDEX autofill_name ON autofill (name);
22 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
23 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
24 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
25 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_25.sql16 CREATE INDEX logins_signon ON logins (signon_realm);
17 CREATE INDEX web_apps_url_index ON web_apps (url);
18 CREATE INDEX autofill_name ON autofill (name);
19 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_32.sql26 CREATE INDEX logins_signon ON logins (signon_realm);
27 CREATE INDEX web_apps_url_index ON web_apps (url);
28 CREATE INDEX autofill_name ON autofill (name);
29 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
30 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
31 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
32 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_29.sql22 CREATE INDEX logins_signon ON logins (signon_realm);
23 CREATE INDEX web_apps_url_index ON web_apps (url);
24 CREATE INDEX autofill_name ON autofill (name);
25 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
26 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
27 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
28 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_26.sql16 CREATE INDEX logins_signon ON logins (signon_realm);
17 CREATE INDEX web_apps_url_index ON web_apps (url);
18 CREATE INDEX autofill_name ON autofill (name);
19 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_44.sql45 CREATE INDEX autofill_name ON autofill (name);
46 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
47 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
48 CREATE INDEX logins_signon ON logins (signon_realm);
49 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
50 CREATE INDEX web_apps_url_index ON web_apps (url);
51 CREATE INDEX web_intents_index ON web_intents (action);
52 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
Dversion_31.sql22 CREATE INDEX logins_signon ON logins (signon_realm);
23 CREATE INDEX web_apps_url_index ON web_apps (url);
24 CREATE INDEX autofill_name ON autofill (name);
25 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
26 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
27 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
28 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_30.sql24 CREATE INDEX logins_signon ON logins (signon_realm);
25 CREATE INDEX web_apps_url_index ON web_apps (url);
26 CREATE INDEX autofill_name ON autofill (name);
27 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
28 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
29 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
30 CREATE INDEX credit_cards_label_index ON credit_cards (label);
Dversion_22.sql22 CREATE INDEX logins_signon ON logins (signon_realm);
23 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
24 CREATE INDEX web_apps_url_index ON web_apps (url);
25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
Dversion_34.sql48 CREATE INDEX logins_signon ON logins (signon_realm);
49 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
50 CREATE INDEX web_apps_url_index ON web_apps (url);
51 CREATE INDEX autofill_name ON autofill (name);
52 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
53 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
Dversion_48.sql22 CREATE INDEX autofill_name ON autofill (name);
23 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
24 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
25 CREATE INDEX web_apps_url_index ON web_apps (url);
26 CREATE INDEX web_intents_index ON web_intents (action);
27 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
Dversion_49.sql25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
28 CREATE INDEX web_apps_url_index ON web_apps (url);
29 CREATE INDEX web_intents_index ON web_intents (action);
30 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
Dversion_50.sql25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
28 CREATE INDEX web_apps_url_index ON web_apps (url);
29 CREATE INDEX web_intents_index ON web_intents (action);
30 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
Dversion_52.sql27 CREATE INDEX web_intents_index ON web_intents (action);
28 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
29 CREATE INDEX web_apps_url_index ON web_apps (url);
30 CREATE INDEX autofill_name ON autofill (name);
31 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
32 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
Dversion_53.sql44 CREATE INDEX web_apps_url_index ON web_apps (url);
45 CREATE INDEX web_intents_index ON web_intents (action);
46 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
47 CREATE INDEX autofill_name ON autofill (name);
48 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
49 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
/external/chromium_org/v8/test/mjsunit/
Ddelete-non-configurable.js63 var INDEX = 28; variable
66 obj[INDEX] = TIPLI;
67 Object.defineProperty(obj, INDEX, { configurable: false });
69 assertFalse(delete obj[INDEX]);
71 assertFalse(delete obj[INDEX.toString()]);
73 assertEquals(TIPLI, obj[INDEX]);
74 assertTrue(delete arr[INDEX+1]);

12345678910>>...13