HomeSort by relevance Sort by last modified time
    Searched defs:BOOLEAN (Results 51 - 75 of 853) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 192 BOOLEAN = 1 << 3,
198 // POD except boolean and enum.
256 static const MojomTypeCategory category = MojomTypeCategory::BOOLEAN;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
WireFormat.java 84 BOOLEAN(false),
117 BOOL (JavaType.BOOLEAN , WIRETYPE_VARINT ),
120 public boolean isPackable() {
125 public boolean isPackable() {
130 public boolean isPackable() {
135 public boolean isPackable() {
156 public boolean isPackable() { return true; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
RegisterType.java 70 public boolean equals(Object o) {
102 public static final byte BOOLEAN = 4;
130 "Boolean",
153 /* UNKNOWN UNINIT NULL ONE, BOOLEAN BYTE POS_BYTE SHORT POS_SHORT CHAR INTEGER, FLOAT, LONG_LO LONG_HI DOUBLE_LO DOUBLE_HI UNINIT_REF UNINIT_THIS REFERENCE CONFLICTED*/
154 /*UNKNOWN*/ {UNKNOWN, UNINIT, NULL, ONE, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, LONG_LO, LONG_HI, DOUBLE_LO, DOUBLE_HI, UNINIT_REF, UNINIT_THIS,REFERENCE, CONFLICTED},
156 /*NULL*/ {NULL, CONFLICTED, NULL, BOOLEAN, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, REFERENCE, CONFLICTED},
157 /*ONE*/ {ONE, CONFLICTED, BOOLEAN, ONE, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED},
158 /*BOOLEAN*/ {BOOLEAN, CONFLICTED, BOOLEAN, BOOLEAN, BOOLEAN, BYTE, POS_BYTE, SHORT, (…)
    [all...]
  /external/v8/src/ic/
ic-state.h 161 BOOLEAN,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 64 BOOLEAN,
201 public boolean edited;
215 private boolean mNoValidator;
250 if (initial != null && !initial.isEmpty() && type == Type.BOOLEAN) {
251 value = Boolean.valueOf(initial);
  /external/python/cpython2/Lib/ctypes/
wintypes.py 15 BOOLEAN = BYTE
166 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /external/selinux/libselinux/src/
audit2why.c 28 #define BOOLEAN 3
54 static int load_booleans(const sepol_bool_t * boolean,
58 boollist[boolcnt]->name = strdup(sepol_bool_get_name(boolean));
59 boollist[boolcnt]->active = sepol_bool_get_value(boolean);
72 sepol_bool_t *boolean = NULL; local
85 "Could not create boolean key.\n");
90 key, &boolean);
94 "Could not find boolean %s.\n", name);
99 sepol_bool_set_value(boolean, !active);
103 key, boolean);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tic.h 55 ** Boolean Section, containing the values of all of the
56 ** boolean capabilities
142 #define BOOLEAN 0 /* Boolean capability */
197 int nte_type; /* BOOLEAN, NUMBER or STRING */
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
wintypes.py 19 BOOLEAN = BYTE
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
wintypes.py 19 BOOLEAN = BYTE
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 19 BOOLEAN = BYTE
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 19 BOOLEAN = BYTE
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TypeTest.java 36 boolean useMips = (mips == 1);
39 boolean useFaces = (faces == 1);
57 testTypeBuilderHelper(Element.BOOLEAN(mRS));
87 boolean useFaces = faces == 1;
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 41 /** basic type constant for {@code boolean} */
74 /** {@code non-null;} instance representing {@code boolean} */
75 public static final Type BOOLEAN = new Type("Z", BT_BOOLEAN);
112 putIntern(BOOLEAN);
129 CLASS_TYPE_MAP.put(boolean.class, BOOLEAN);
166 * {@code non-null;} instance representing {@code java.lang.Boolean}; the
170 public static final Type BOOLEAN_CLASS = intern("Ljava/lang/Boolean;");
228 /** {@code non-null;} instance representing {@code boolean[]} */
229 public static final Type BOOLEAN_ARRAY = BOOLEAN.getArrayType()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 42 /** basic type constant for {@code boolean} */
75 /** {@code non-null;} instance representing {@code boolean} */
76 public static final Type BOOLEAN = new Type("Z", BT_BOOLEAN);
144 * {@code non-null;} instance representing {@code java.lang.Boolean}; the
148 public static final Type BOOLEAN_CLASS = new Type("Ljava/lang/Boolean;", BT_OBJECT);
206 /** {@code non-null;} instance representing {@code boolean[]} */
207 public static final Type BOOLEAN_ARRAY = new Type("[" + BOOLEAN.descriptor, BT_OBJECT);
243 putIntern(BOOLEAN);
511 public boolean equals(Object other) {
550 case BT_BOOLEAN: return "boolean";
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 44 private final boolean special;
49 /** Represents the boolean primitive type */
50 public static final Type BOOLEAN = new Type(CtClass.booleanType);
112 prims.put(CtClass.booleanType, BOOLEAN);
142 private Type(CtClass clazz, boolean special) {
148 boolean popChanged() {
176 public boolean isReference() {
186 public boolean isSpecial() {
195 public boolean isArray() {
248 public boolean isAssignableFrom(Type type)
    [all...]
  /external/javassist/src/main/javassist/compiler/
TokenId.java 20 int BOOLEAN = 301;
  /external/python/cpython3/Lib/ctypes/
wintypes.py 17 BOOLEAN = BYTE
171 PBOOLEAN = ctypes.POINTER(BOOLEAN)
  /external/selinux/python/sepolicy/sepolicy/
__init__.py 41 BOOLEAN = 6
243 elif setype == BOOLEAN:
294 d['boolean'] = [(str(rule.conditional), enabled)]
396 'boolean' in x,
401 tdict.update({'source': i['source'], 'boolean': i['boolean']})
415 if x['boolean'][0][1]:
418 return _("-- Allowed %s [ %s ]") % (enabled, " || ".join(set(map(lambda x: "%s=%d" % (x['boolean'][0][0], x['boolean'][0][1]), cond))))
655 def get_boolean_rules(setype, boolean)
    [all...]
  /external/syslinux/efi32/include/efi/
efidef.h 25 typedef UINT8 BOOLEAN;
30 #define TRUE ((BOOLEAN) 1)
31 #define FALSE ((BOOLEAN) 0)
120 BOOLEAN EnableUnicastReceive;
121 BOOLEAN EnableMulticastReceive;
122 BOOLEAN EnableBroadcastReceive;
123 BOOLEAN EnablePromiscuousReceive;
124 BOOLEAN FlushQueuesOnReset;
125 BOOLEAN EnableReceiveTimestamps;
126 BOOLEAN DisableBackgroundPolling
    [all...]
  /external/syslinux/efi64/include/efi/
efidef.h 25 typedef UINT8 BOOLEAN;
30 #define TRUE ((BOOLEAN) 1)
31 #define FALSE ((BOOLEAN) 0)
120 BOOLEAN EnableUnicastReceive;
121 BOOLEAN EnableMulticastReceive;
122 BOOLEAN EnableBroadcastReceive;
123 BOOLEAN EnablePromiscuousReceive;
124 BOOLEAN FlushQueuesOnReset;
125 BOOLEAN EnableReceiveTimestamps;
126 BOOLEAN DisableBackgroundPolling
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efidef.h 25 typedef UINT8 BOOLEAN;
30 #define TRUE ((BOOLEAN) 1)
31 #define FALSE ((BOOLEAN) 0)
120 BOOLEAN EnableUnicastReceive;
121 BOOLEAN EnableMulticastReceive;
122 BOOLEAN EnableBroadcastReceive;
123 BOOLEAN EnablePromiscuousReceive;
124 BOOLEAN FlushQueuesOnReset;
125 BOOLEAN EnableReceiveTimestamps;
126 BOOLEAN DisableBackgroundPolling
    [all...]
  /external/v8/src/ast/
ast-value-factory.h 159 // AstValue is either a string, a symbol, a number, a string array, a boolean,
222 bool IsFalse() const { return type_ == BOOLEAN && !bool_; }
223 bool IsTrue() const { return type_ == BOOLEAN && bool_; }
252 BOOLEAN,
282 explicit AstValue(bool b) : type_(BOOLEAN), next_(nullptr) { bool_ = b; }
  /frameworks/base/core/java/com/android/internal/util/function/pooled/
PooledLambdaImpl.java 56 private static final boolean DEBUG = false;
170 final boolean notUsed = fillInArg(a1) && fillInArg(a2) && fillInArg(a3)
194 private boolean fillInArg(Object invocationArg) {
235 case LambdaType.ReturnType.BOOLEAN:
247 case LambdaType.ReturnType.BOOLEAN: {
261 case LambdaType.ReturnType.BOOLEAN: {
275 case LambdaType.ReturnType.BOOLEAN: {
290 case LambdaType.ReturnType.BOOLEAN: {
308 case LambdaType.ReturnType.BOOLEAN: {
326 case LambdaType.ReturnType.BOOLEAN:
    [all...]
  /libcore/ojluni/src/main/java/sun/invoke/util/
Wrapper.java 30 BOOLEAN( Boolean.class, boolean.class, 'Z', (Boolean)false, new boolean[0], Format.unsigned( 1)),
96 BOOLEAN = UNSIGNED | (1 << SIZE_SHIFT) | (1 << SLOT_SHIFT),
114 public boolean isSingleWord() { return (format & (1 << Format.SLOT_SHIFT)) != 0; }
116 public boolean isDoubleWord() { return (format & (2 << Format.SLOT_SHIFT)) != 0; }
118 public boolean isNumeric() { return (format & Format.NUM_MASK) != 0; }
120 public boolean isIntegral() { return isNumeric() && format < Format.FLOAT;
    [all...]

Completed in 964 milliseconds

1 23 4 5 6 7 8 91011>>