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

1 2

  /external/libsepol/src/
boolean_internal.h 5 #include <sepol/booleans.h>
genbools.c 149 int sepol_genbools(void *data, size_t len, char *booleans)
160 if (load_booleans(&policydb, booleans, &changes) < 0) {
161 WARN(NULL, "error while reading %s", booleans);
195 int hidden sepol_genbools_policydb(policydb_t * policydb, const char *booleans)
199 rc = load_booleans(policydb, booleans, &changes);
booleans.c 8 #include <sepol/booleans.h>
213 ERR(handle, "could not iterate over booleans");
expand.c 2874 int booleans, tunables, i; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 23 private static boolean[] booleans; field in class:ArrayTest
34 booleans = new boolean[] { true };
45 assertEquals(booleans[0], Array.getBoolean(booleans, 0));
57 try { Array.getByte(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
69 try { Array.getChar(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
81 try { Array.getDouble(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
93 try { Array.getFloat(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
105 try { Array.getInt(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
117 try { Array.getLong(booleans, 0); fail(); } catch (IllegalArgumentException expected) {
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
bool.pxd 11 # Booleans in Python are implemented as a subclass of
12 # integers. There are only two booleans, Py_False and Py_True. As
14 # booleans. The following macros are available, however.
  /external/libsepol/include/sepol/
sepol.h 14 #include <sepol/booleans.h>
  /art/test/003-omnibus-opcodes/src/
Array.java 53 static void checkBooleans(boolean[] booleans) {
54 Main.assertTrue(booleans[0]);
55 Main.assertTrue(booleans[1]);
56 Main.assertTrue(!booleans[2]);
57 Main.assertTrue(booleans[3]);
58 Main.assertTrue(!booleans[4]);
  /external/libsepol/
Android.mk 8 src/booleans.c \
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ParcelTest.java 380 final boolean[] booleans = {false, true, true};
381 parcel.writeBooleanArray(booleans);
383 final boolean[] booleans2 = new boolean[booleans.length];
385 assertTrue(Arrays.equals(booleans, booleans2));
400 final boolean[] booleans = {false, true, true};
401 parcel.writeBooleanArray(booleans);
404 assertTrue(Arrays.equals(booleans, booleans2));
  /external/libsepol/include/sepol/policydb/
services.h 30 int sepol_genbools_policydb(policydb_t * policydb, const char *booleans);
  /external/libselinux/
Android.mk 4 src/booleans.c \
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 280 private boolean[] booleans; field in class:ArrayAccessReplaceTest.Simple
298 return booleans[pos];
342 booleans[pos] = value;
  /external/chromium_org/v8/test/mjsunit/
regexp-static.js 148 assertTrue(typeof RegExp.multiline == typeof Boolean(), "RegExp.multiline coerces values to booleans");
150 assertTrue(typeof RegExp.input == typeof String(), "RegExp.input coerces values to booleans");
bitwise-operations-bools.js 28 // Test bitwise operations with booleans.
value-wrapper-accessor.js 28 // When calling user-defined accessors on strings, booleans or
value-wrapper.js 28 // When calling user-defined functions on strings, booleans or
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 1175 private String[] booleans = {"checked", "compact", "declare", "defer", field in class:XMLWriter
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewAnimationsTest.java 229 final boolean[] booleans = {true, false};
230 for (boolean supportsChange : booleans) {
231 for (boolean changeType : booleans) {
232 for (boolean hasStableIds : booleans) {
233 for (boolean deleteSomeItems : booleans) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 783 class booleans(aetools.ComponentItem): class in inherits:aetools.ComponentItem
784 """booleans - """
787 boolean = booleans
    [all...]
  /external/chromium_org/mojo/public/python/mojo/bindings/
descriptor.py 90 """Type object for booleans"""
506 """A FieldGroup to pack booleans."""
542 def _ConvertBooleansToByte(booleans):
543 """Pack a list of booleans into an integer."""
544 return reduce(lambda x, y: x * 2 + y, reversed(booleans), 0)
548 "Unpack an integer into a list of booleans."""
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest1.java 598 boolean[] booleans = { true, false, false, true };
599 objToSave = booleans;
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar 

Completed in 557 milliseconds

1 2