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

1 2

  /external/iptables/extensions/
.set-test 2 [ -f $KERNEL_DIR/include/linux/netfilter_ipv4/ip_set.h ] && echo set SET
  /external/openssl/apps/
install.com 48 $ SET NOON
52 $ SET FILE/PROT=W:RE WRK_SSLEXE:'E'.EXE
54 $ SET ON
58 $ SET NOON
60 $ SET FILE/PROT=W:RE WRK_SSLEXE:CA.COM
62 $ SET FILE/PROT=W:R WRK_SSLROOT:[000000]OPENSSL.CNF
63 $ SET ON
  /external/proguard/bin/
proguard.bat 7 SET PROGUARD_HOME=..
proguardgui.bat 7 SET PROGUARD_HOME=..
retrace.bat 7 SET PROGUARD_HOME=..
  /external/openssl/ssl/
install.com 51 $ SET FILE/PROT=WORLD:RE WRK_SSLINCLUDE:'EXHEADER'
58 $ SET NOON
62 $ SET FILE/PROT=W:RE WRK_SSLXEXE:'E'.EXE
64 $ SET ON
73 $ SET NOON
78 $ SET FILE/PROT=W:RE WRK_SSLXLIB:'E'.OLB
84 $ SET FILE/PROT=W:RE WRK_SSLXLIB:'E'.EXE
86 $ SET ON
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
line-map.h 54 INCLUDED_FROM is an index into the set that gives the line mapping
56 of the include stack have this set to -1. REASON is the reason for
73 /* A set of chronological line_map structures. */
108 /* Initialize a line map set. */
111 /* Free a line map set. */
125 (struct line_maps *set, linenum_type to_line, unsigned int max_column_hint);
136 A call to this function can relocate the previous set of
170 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
175 /* Set LOC to a source position that is the same line as the most recen
    [all...]
hard-reg-set.h 24 /* Define the type of a set of hard registers. */
63 to set, clear or test one bit in a hard reg set of type HARD_REG_SET.
64 All three take two arguments: the set and the register number.
69 Define two macros for initializing a set:
83 which use the complement of the set FROM.
96 #define SET_HARD_REG_BIT(SET, BIT) \
97 ((SET) |= HARD_CONST (1) << (BIT))
98 #define CLEAR_HARD_REG_BIT(SET, BIT) \
99 ((SET) &= ~(HARD_CONST (1) << (BIT))
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
line-map.h 54 INCLUDED_FROM is an index into the set that gives the line mapping
56 of the include stack have this set to -1. REASON is the reason for
73 /* A set of chronological line_map structures. */
108 /* Initialize a line map set. */
111 /* Free a line map set. */
125 (struct line_maps *set, linenum_type to_line, unsigned int max_column_hint);
136 A call to this function can relocate the previous set of
170 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
175 /* Set LOC to a source position that is the same line as the most recen
    [all...]
hard-reg-set.h 24 /* Define the type of a set of hard registers. */
63 to set, clear or test one bit in a hard reg set of type HARD_REG_SET.
64 All three take two arguments: the set and the register number.
69 Define two macros for initializing a set:
83 which use the complement of the set FROM.
96 #define SET_HARD_REG_BIT(SET, BIT) \
97 ((SET) |= HARD_CONST (1) << (BIT))
98 #define CLEAR_HARD_REG_BIT(SET, BIT) \
99 ((SET) &= ~(HARD_CONST (1) << (BIT))
    [all...]
  /external/bluetooth/glib/gobject/
gclosure.c 123 #define SET(_closure, _field, _value) CHANGE_FIELD (_closure, _field, =, _value, TRUE, (void), (void) )
131 #define SET(cl,f,v) (void) (cl->f = v)
201 SET (closure, ref_count, 1);
202 SET (closure, meta_marshal, 0);
203 SET (closure, n_guards, 0);
204 SET (closure, n_fnotifiers, 0);
205 SET (closure, n_inotifiers, 0);
206 SET (closure, in_inotify, FALSE);
207 SET (closure, floating, TRUE);
208 SET (closure, derivative_flag, 0)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERSet.java 17 * create a set containing one object
26 * @param v - a vector of objects making up the set.
35 * @param v - a vector of objects making up the set.
52 out.write(SET | CONSTRUCTED);
DERConstructedSet.java 19 * @param obj - a single object that makes up the set.
28 * @param v - a vector of objects making up the set.
55 * ASN.1 descriptions given. Rather than just outputing SET,
77 out.writeEncoded(SET | CONSTRUCTED, bytes);
DERTags.java 15 public static final int SET = 0x11;
ASN1StreamParser.java 98 case DERTags.SET:
133 case DERTags.SET:
DERSet.java 8 * A DER encoded set object
14 * create an empty set
21 * @param obj - a single object that makes up the set.
30 * @param v - a vector of objects making up the set.
39 * create a set from an array of objects.
53 * @param v - a vector of objects making up the set.
75 * ASN.1 descriptions given. Rather than just outputing SET,
98 out.writeEncoded(SET | CONSTRUCTED, bytes);
ASN1TaggedObject.java 187 case DERTags.SET:
BERTaggedObjectParser.java 48 case DERTags.SET:
BERInputStream.java 118 case SET | CONSTRUCTED:
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
93 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
95 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
96 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
97 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
98 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
99 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
100 CREATE TRIGGER groupmembership_insert INSERT ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END
    [all...]
  /external/openssl/crypto/
install.com 130 $ SET FILE/PROT=WORLD:RE WRK_SSLINCLUDE:'tmp'
139 $ SET NOON
143 $ SET FILE/PROT=W:RE WRK_SSLLIB:'E'.OLB
149 $ SET FILE/PROT=W:RE WRK_SSLLIB:'E'.EXE
151 $ SET ON
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 144 // This is faster than repeatedly calling Get/Set on a v8::Object.
180 constructor->Set(String::New("parse"), bind->Call(ParseTemplate->GetFunction(), 1, &arg));
181 constructor->Set(String::New("serialize"), bind->Call(SerializeTemplate->GetFunction(), 1, &arg));
269 array->Set(index, ToJs(instance, reflection, field, child_type, j));
276 DBG("Type::ToJs: set property[%d]=%s", i, ToCString(value));
278 properties->Set(key, value);
299 #define SET(TYPE, EXPR) \
301 else reflection->Set##TYPE(instance, field, EXPR)
325 SET(String, string(*ascii, ascii.length()));
330 SET(Int32, value->NumberValue())
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
125 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
127 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
128 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
129 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
131 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
132 CREATE TRIGGER groupmembership_insert INSERT ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
149 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
151 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
152 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
153 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
155 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
156 CREATE TRIGGER groupmembership_insert INSERT ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END
    [all...]
  /bionic/libc/bionic/
fts.c 60 #define SET(opt) (sp->fts_options |= (opt))
93 SET(FTS_NOCHDIR);
148 * finished the node before the root(s); set p->fts_info to FTS_INIT
164 SET(FTS_NOCHDIR);
186 * actually enter the directory until after the preorder visit, set
265 /* Set current node pointer. */
323 * to make the names come out right, and set the parent errno
325 * Set the FTS_DONTCHDIR flag so that when we logically change
360 SET(FTS_STOP);
399 * Done; free everything up and set errno to 0 so the use
    [all...]

Completed in 372 milliseconds

1 2