HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 126 - 150 of 3921) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.4.1-3.js 26 * 15.10.4.1 new RegExp(pattern, flags)
29 * flags is undefined, then let P be the pattern used to construct R
30 * and let F be the flags used to construct R. If pattern is an object R
31 * whose [[Class]] property is "RegExp" and flags is not undefined,
34 * the empty string if flags is undefined and ToString(flags) otherwise.
40 * "flags" is undefined
46 * In this test, the initial RegExp obj1 will include a flag. The flags
60 var flags = new Array();
71 // various flags to try
    [all...]
15.10.4.1-4.js 26 * 15.10.4.1 new RegExp(pattern, flags)
29 * flags is undefined, then let P be the pattern used to construct R
30 * and let F be the flags used to construct R. If pattern is an object R
31 * whose [[Class]] property is "RegExp" and flags is not undefined,
34 * the empty string if flags is undefined and ToString(flags) otherwise.
40 * "flags" is undefined
66 var flags = new Array();
77 // various flags to try -
78 flags[0] = 'i'
    [all...]
  /external/wpa_supplicant/
eap_psk_common.h 31 #define EAP_PSK_FLAGS_GET_T(flags) (((flags) & 0xc0) >> 6)
44 u8 flags; member in struct:eap_psk_hdr
53 u8 flags; member in struct:eap_psk_hdr_1
64 u8 flags; member in struct:eap_psk_hdr_2
77 u8 flags; member in struct:eap_psk_hdr_3
89 u8 flags; member in struct:eap_psk_hdr_4
  /frameworks/base/core/java/android/content/pm/
FeatureInfo.java 49 * Set on {@link #flags} if this feature has been required by the application.
54 * Additional flags. May be zero or more of {@link #FLAG_REQUIRED}.
56 public int flags; field in class:FeatureInfo
64 flags = orig.flags;
71 + " " + name + " fl=0x" + Integer.toHexString(flags) + "}";
76 + " fl=0x" + Integer.toHexString(flags) + "}";
87 dest.writeInt(flags);
103 flags = source.readInt();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ReasonFlags.java 70 private boolean[] flags; field in class:ReasonFlags
73 * Creates the extension object corresponding to the given flags.
75 public ReasonFlags(boolean[] flags) {
76 this.flags = flags;
86 for (int i=0; i<flags.length; i++) {
87 if (flags[i]) {
106 out.content = ((ReasonFlags) out.content).flags;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
FormatFlagsConversionMismatchExceptionTest.java 47 String flags = "MYTESTFLAGS"; local
50 flags, conversion);
51 assertEquals(flags, formatFlagsConversionMismatchException.getFlags());
58 String flags = "MYTESTFLAGS"; local
61 flags, conversion);
71 String flags = "MYTESTFLAGS"; local
74 flags, conversion);
90 assertEquals("Flags", initEx.getFlags(), desrEx.getFlags());
  /frameworks/base/core/java/android/util/
Base64OutputStream.java 29 private final int flags; field in class:Base64OutputStream
41 * @param flags bit flags for controlling the encoder; see the
44 public Base64OutputStream(OutputStream out, int flags) {
45 this(out, flags, true);
54 * @param flags bit flags for controlling the encoder; see the
60 public Base64OutputStream(OutputStream out, int flags, boolean encode) {
62 this.flags = flags;
    [all...]
  /external/bluetooth/bluez/src/
log.h 38 unsigned int flags; member in struct:btd_debug_desc
52 .file = __FILE__, .flags = BTD_DEBUG_FLAG_DEFAULT, \
54 if (__btd_debug_desc.flags & BTD_DEBUG_FLAG_PRINT) \
  /external/oprofile/libutil/
op_popt.c 19 struct poptOption const * options, int flags)
27 optcon = poptGetContext(name, argc, argv, options, flags);
29 optcon = poptGetContext((char *)name, argc, (char **)argv, options, flags);
  /frameworks/base/core/java/android/os/
IBinder.java 170 * @param flags Additional operation flags. Either 0 for a normal
173 public boolean transact(int code, Parcel data, Parcel reply, int flags)
202 public void linkToDeath(DeathRecipient recipient, int flags)
223 public boolean unlinkToDeath(DeathRecipient recipient, int flags);
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 179 * <a name="flags"><h3>Flags</h3></a>
181 * <tr> <td> (?dimsux-dimsux:<i>a</i>) </td> <td>Evaluates the expression <i>a</i> with the given flags enabled/disabled.</td> </tr>
182 * <tr> <td> (?dimsux-dimsux) </td> <td>Evaluates the rest of the pattern with the given flags enabled/disabled.</td> </tr>
185 * <p>The flags are:
194 * <p>Either set of flags may be empty. For example, {@code (?i-m)} would turn on case-insensitivity
199 * <p>There are two other flags not settable via this mechanism: {@link #CANON_EQ} and
279 private final int flags; field in class:Pattern
345 * Returns the flags supplied to {@code compile}.
347 public int flags() { method in class:Pattern
    [all...]
  /system/core/sh/
var.c 79 int flags; member in struct:varinit
176 vp->flags = ip->flags;
186 vps1.flags = VSTRFIXED|VTEXTFIXED;
195 setvarsafe(const char *name, const char *val, int flags)
208 setvar(name, val, flags);
215 * Set the value of a variable. The flags argument is ored with the
216 * flags of the variable. If val is NULL, the variable is unset.
220 setvar(const char *name, const char *val, int flags)
248 flags |= VUNSET
634 setvareq(savestr(name), VSTRFIXED|flags); local
645 setvareq(savestr(name), flags); local
    [all...]
  /bionic/libc/kernel/common/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
spinlock.h 47 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags))
71 #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags)
72 #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags)
73 #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags)
91 #define spin_unlock_irqrestore(lock, flags) _spin_unlock_irqrestore(lock, flags)
    [all...]
  /external/dnsmasq/src/
cache.c 90 crecp->flags = 0;
163 if (!(crecp->flags & F_REVERSE))
165 while (*up && ((*up)->flags & F_REVERSE))
168 if (crecp->flags & F_IMMORTAL)
169 while (*up && !((*up)->flags & F_IMMORTAL))
178 crecp->flags &= ~F_FORWARD;
179 crecp->flags &= ~F_REVERSE;
191 if (crecp->flags & F_BIGNAME)
195 crecp->flags &= ~F_BIGNAME;
227 if (crecp->flags & F_BIGNAME
758 unsigned short flags = 0, saved_flags = 0; local
1039 unsigned short flags = F_DHCP | F_FORWARD | F_IPV4 | F_REVERSE; local
    [all...]
  /external/iptables/extensions/
libip6t_rt.c 150 rtinfo->flags = 0;
158 parse(int c, char **argv, int invert, unsigned int *flags,
167 if (*flags & IP6T_RT_TYP)
174 rtinfo->flags |= IP6T_RT_TYP;
175 *flags |= IP6T_RT_TYP;
178 if (*flags & IP6T_RT_SGS)
185 rtinfo->flags |= IP6T_RT_SGS;
186 *flags |= IP6T_RT_SGS;
189 if (*flags & IP6T_RT_LEN)
196 rtinfo->flags |= IP6T_RT_LEN
    [all...]
  /external/openssl/crypto/x509/
x509_trs.c 68 static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
69 static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
70 static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
72 static int obj_trust(int id, X509 *x, int flags);
73 static int (*default_trust)(int id, X509 *x, int flags) = obj_trust;
112 int X509_check_trust(X509 *x, int id, int flags)
118 if(idx == -1) return default_trust(id, x, flags);
120 return pt->check_trust(pt, x, flags);
159 int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int),
165 flags &= ~X509_TRUST_DYNAMIC
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 20 static int try_pvc(const char *text,struct sockaddr_atmpvc *addr,int flags)
44 if (!(flags & T2A_WILDCARD)) return FATAL; /* not allowed */
49 if (!(flags & T2A_UNSPEC)) return FATAL; /* not allowed */
64 if (part[1] > (flags & T2A_NNI ? ATM_MAX_VPI_NNI : ATM_MAX_VPI))
75 static int do_try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags)
125 if (*text == '/' && (flags & T2A_WILDCARD)) break;
149 static int try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags)
153 result = do_try_nsap(text,addr,flags);
161 static int try_e164(const char *text,struct sockaddr_atmsvc *addr,int flags)
184 result = do_try_nsap(text,addr,flags);
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/tests/
pmemalloc_test.cpp 50 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd,
59 virtual int open(const char* pathname, int flags, int mode) {
79 virtual ssize_t allocate(size_t size, uint32_t flags = 0) {
96 virtual int open(const char* pathname, int flags, int mode) {
98 EXPECT_EQ(O_RDWR, flags);
109 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd,
138 virtual int open(const char* pathname, int flags, int mode) {
140 EXPECT_EQ(O_RDWR, flags);
155 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd,
183 virtual int open(const char* pathname, int flags, int mode)
329 int flags = 0; local
356 int flags = ~0; local
395 int flags = ~0; local
428 int flags = ~0; local
462 int flags = ~0; local
498 int flags = 0; local
521 int flags = ~0; local
556 int flags = ~0; local
593 int flags = ~0; local
    [all...]

Completed in 2414 milliseconds

1 2 3 4 56 7 8 91011>>