/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
tic.h | 55 ** Boolean Section, containing the values of all of the 56 ** boolean capabilities 142 #define BOOLEAN 0 /* Boolean capability */ 195 int nte_type; /* BOOLEAN, NUMBER or STRING */
|
/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;
|
ElementTest.java | 124 assertTrue(Element.BOOLEAN(mRS) != null); 184 Element[] BOOLEAN = { Element.BOOLEAN(mRS) }; 239 Element[][] ElementArrs = { ALLOCATION, BOOLEAN, ELEMENT, F32, F32_2, 328 eb.add(Element.BOOLEAN(mRS), "BOOLEAN", arraySize); 394 assertFalse(Element.BOOLEAN(mRS).isComplex()); 430 assertEquals(DataType.BOOLEAN, DataType.valueOf("BOOLEAN")); 465 case BOOLEAN [all...] |
AllocationTest.java | 40 boolean useMips = (mips == 1); 43 boolean useFaces = (faces == 1); 124 createTypedHelper(Element.BOOLEAN(mRS)); 163 createSizedHelper(Element.BOOLEAN(mRS)); 391 E[i] = Element.BOOLEAN(mRS);
|
/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 | 39 /** basic type constant for {@code boolean} */ 72 /** {@code non-null;} instance representing {@code boolean} */ 73 public static final Type BOOLEAN = new Type("Z", BT_BOOLEAN); 110 putIntern(BOOLEAN); 150 * {@code non-null;} instance representing {@code java.lang.Boolean}; the 154 public static final Type BOOLEAN_CLASS = intern("Ljava/lang/Boolean;"); 212 /** {@code non-null;} instance representing {@code boolean[]} */ 213 public static final Type BOOLEAN_ARRAY = BOOLEAN.getArrayType(); 464 public boolean equals(Object other) { 501 case BT_BOOLEAN: return "boolean"; [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
Type.java | 40 /** basic type constant for {@code boolean} */ 73 /** {@code non-null;} instance representing {@code boolean} */ 74 public static final Type BOOLEAN = new Type("Z", BT_BOOLEAN); 111 putIntern(BOOLEAN); 151 * {@code non-null;} instance representing {@code java.lang.Boolean}; the 155 public static final Type BOOLEAN_CLASS = intern("Ljava/lang/Boolean;"); 213 /** {@code non-null;} instance representing {@code boolean[]} */ 214 public static final Type BOOLEAN_ARRAY = BOOLEAN.getArrayType(); 465 public boolean equals(Object other) { 502 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/chromium_org/v8/src/ |
code-stubs.h | [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Element.java | 67 boolean mNormalized; 110 * size of the data. BOOLEAN is a true / false (1,0) 136 BOOLEAN(12, 1), 193 * @return boolean 195 public boolean isComplex() { 301 * Utility function for returning an Element containing a single Boolean. 307 public static Element BOOLEAN(RenderScript rs) { 309 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN); 779 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { 854 boolean norm = false [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Element.java | 71 boolean mNormalized; 118 * size of the data. BOOLEAN is a true / false (1,0) 144 BOOLEAN(12, 1), 195 * @return boolean 197 public boolean isComplex() { 303 * Utility function for returning an Element containing a single Boolean. 309 public static Element BOOLEAN(RenderScript rs) { 311 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN); 726 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { 763 boolean norm = false [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateHandlerTest.java | 100 private static final boolean TEST_FEWER_API_VERSIONS = true; 101 private static final boolean TEST_JUST_ONE_MIN_SDK = false; 102 private static final boolean TEST_JUST_ONE_BUILD_TARGET = true; 103 private static final boolean TEST_JUST_ONE_TARGET_SDK_VERSION = true; 110 private boolean mApiSensitiveTemplate; 135 private boolean isInterestingApiLevel(int api) { 582 assert parameter.type == Parameter.Type.BOOLEAN; 587 boolean value = false; 779 public boolean isEnabled(@NonNull Issue issue) { [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
Descriptors.java | 505 public boolean isExtensionNumber(final int number) { 710 public boolean isRequired() { 715 public boolean isOptional() { 720 public boolean isRepeated() { 725 public boolean isPacked() { 730 public boolean isPackable() { 735 public boolean hasDefaultValue() { return proto.hasDefaultValue(); } 755 public boolean isExtension() { return proto.hasExtendee(); } 852 BOOL (JavaType.BOOLEAN ), [all...] |
/external/ipsec-tools/src/racoon/ |
cfparse.h | 188 BOOLEAN = 404, 353 #define BOOLEAN 404
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
Descriptors.java | 478 public boolean isExtensionNumber(final int number) { 683 public boolean isRequired() { 688 public boolean isOptional() { 693 public boolean isRepeated() { 698 public boolean isPacked() { 703 public boolean isPackable() { 708 public boolean hasDefaultValue() { return proto.hasDefaultValue(); } 728 public boolean isExtension() { return proto.hasExtendee(); } 825 BOOL (JavaType.BOOLEAN ), 867 BOOLEAN(false) [all...] |
/external/v8/src/ |
code-stubs.h | 1030 BOOLEAN, [all...] |
/frameworks/rs/cpp/ |
rsCppStructs.h | 209 sp<const Element> BOOLEAN; 661 static sp<const Element> BOOLEAN(sp<RS> rs); [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
synclink.h | 16 #define BOOLEAN int
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
synclink.h | 16 #define BOOLEAN int
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
synclink.h | 16 #define BOOLEAN int
|
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 113 private boolean mIsRoot = true; 137 private boolean mIsWidgetCollectionChild = false; 164 public boolean equals(Object o) { 208 public boolean onClickHandler(View view, PendingIntent pendingIntent, 813 public SetDrawableParameters(int id, boolean targetBackground, int alpha, 828 boolean hasMode = parcel.readInt() != 0; [all...] |
/external/doclava/src/com/google/doclava/parser/ |
JavaLexer.java | 58 public static final int BOOLEAN=30; [all...] |