HomeSort by relevance Sort by last modified time
    Searched defs:BOOL (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/tools/gyp/test/win/linker-flags/
no-default-libs.cc 9 typedef short BOOL;
12 BOOL CopyFileW(const wchar_t*, const wchar_t*, BOOL);
  /external/clang/test/CodeGenObjC/Inputs/
literal-support.h 4 typedef unsigned char BOOL;
21 + (NSNumber *)numberWithBool:(BOOL)value;
  /external/clang/test/CodeGenObjCXX/Inputs/
literal-support.h 4 typedef unsigned char BOOL;
21 + (NSNumber *)numberWithBool:(BOOL)value;
  /external/clang/test/Analysis/
bool-assignment.c 4 // Test C++'s bool and C's _Bool.
6 // casts to bool. Arguably, however, these conversions are okay; the result
10 bool constant = 2; // no-warning
12 bool x = y; // no-warning
16 bool x = y; // no-warning
19 bool x = y; // no-warning
23 bool x = 0; // no-warning
35 // Test Objective-C's BOOL
37 typedef signed char BOOL;
40 BOOL constant = 2; // expected-warning {{Assignment of a non-Boolean value}
    [all...]
null-deref-ps.c 255 typedef int BOOL, *PBOOL, *LPBOOL;
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 6 typedef signed char BOOL;
11 @protocol NSObject - (BOOL)isEqual:(id)object; @end
  /external/chromium_org/third_party/npapi/npspy/include/
xp.h 124 #ifndef BOOL
125 #define BOOL bool
129 #ifndef bool
130 #define bool unsigned char macro
159 BOOL XP_IsFile(char * szFileName);
  /external/chromium_org/base/process/
memory_unittest.cc 33 typedef BOOL (WINAPI* HeapQueryFn) \
  /external/clang/test/CodeGen/
convertvector.c 12 #define BOOL bool
14 #define BOOL _Bool
17 typedef BOOL vector8bool __attribute__((__ext_vector_type__(8)));
  /external/clang/test/ARCMT/
Common.h 15 typedef int BOOL;
31 - (BOOL)isEqual:(id)object;
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 12 typedef signed char BOOL;
45 - (BOOL)isEqual:(id)object;
91 - (id)initWithCharactersNoCopy:(unichar *)characters length:(NSUInteger)length freeWhenDone:(BOOL)freeBuffer;
94 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding freeWhenDone:(BOOL)freeBuffer;
105 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
107 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
  /external/deqp/framework/randomshaders/
rsgVariableType.cpp 59 bool VariableType::operator!= (const VariableType& other) const
76 bool VariableType::operator== (const VariableType& other) const
245 case 1: str << Token::BOOL; break;
rsgToken.hpp 70 BOOL,
132 Token (bool value);
137 inline bool operator== (Type type) const { return m_type == type; }
138 inline bool operator!= (Type type) const { return m_type != type; }
140 bool operator== (const Token& other) const;
141 bool operator!= (const Token& other) const;
150 bool getBool (void) const;
159 bool boolValue;
188 inline Token::Token (bool value)
194 inline bool Token::operator== (const Token& other) cons
    [all...]
  /external/libpng/contrib/pngminus/
png2pnm.c 23 #ifndef BOOL
24 #define BOOL unsigned char
27 #define TRUE (BOOL) 1
30 #define FALSE (BOOL) 0
55 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha);
66 BOOL raw = TRUE;
67 BOOL alpha = FALSE;
189 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha
    [all...]
pnm2png.c 23 #ifndef BOOL
24 #define BOOL unsigned char
27 #define TRUE (BOOL) 1
30 #define FALSE (BOOL) 0
53 BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace, BOOL alpha);
67 BOOL interlace = FALSE;
68 BOOL alpha = FALSE;
187 BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace, BOOL alpha
    [all...]
  /external/chromium_org/dbus/
message.h 40 CHROME_DBUS_EXPORT bool IsDBusTypeUnixFdSupported();
68 BOOL = DBUS_TYPE_BOOLEAN,
96 bool SetDestination(const std::string& destination);
97 bool SetPath(const ObjectPath& path);
98 bool SetInterface(const std::string& interface);
99 bool SetMember(const std::string& member);
100 bool SetErrorName(const std::string& error_name);
101 bool SetSender(const std::string& sender);
274 void AppendBool(bool value);
329 bool AppendProtoAsArrayOfBytes(const google::protobuf::MessageLite& protobuf)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
flags.h 35 // Note: Because in C++ non-bool values are silently converted into
36 // bool values ('bool b = "false";' results in b == true!), we pass
38 // In particular, it prevents the (not uncommon!) bug where a bool
64 bool b;
74 enum Type { BOOL, INT, FLOAT, STRING };
89 bool* bool_variable() const {
90 assert(type_ == BOOL);
110 bool bool_default() const {
111 assert(type_ == BOOL);
    [all...]
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports_windows.py 12 from ctypes.wintypes import BOOL
79 SetupDiDestroyDeviceInfoList.restype = BOOL
83 SetupDiClassGuidsFromName.restype = BOOL
87 SetupDiEnumDeviceInfo.restype = BOOL
96 SetupDiGetDeviceRegistryProperty.restype = BOOL
100 SetupDiGetDeviceInstanceId.restype = BOOL
  /external/e2fsprogs/lib/ss/
ss_internal.h 25 typedef char BOOL;
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 80 BOOL = Kind('b')
107 BOOL,
334 return kind.spec == BOOL.spec
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
win32.py 3 from ctypes.wintypes import BOOL
41 CreateEventA.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCSTR]
50 CreateEventW.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCWSTR]
82 GetOverlappedResult.restype = BOOL
83 GetOverlappedResult.argtypes = [HANDLE, LPOVERLAPPED, LPDWORD, BOOL]
86 ResetEvent.restype = BOOL
92 WriteFile.restype = BOOL
98 ReadFile.restype = BOOL
    [all...]
  /external/libpcap/
pcap-dos.h 17 typedef int BOOL;
  /external/opencv/cxcore/include/
cxcore.h 56 typedef int BOOL;
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 

Completed in 1232 milliseconds