Home
last modified time | relevance | path

Searched refs:Boolean (Results 1 – 25 of 114) sorted by relevance

12345

/llvm-project/clang/lib/AST/Interp/
H A DBoolean.h
/llvm-project/clang/test/Analysis/
H A Dbool-assignment.c40 BOOL constant = 2; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_initialization()
42 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_initialization()
47 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_initialization()
54 BOOL x = y; // expected-warning{{Assignment of a non-Boolean value}} in test_BOOL_initialization()
58 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_initialization()
67 x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_assignment()
71 x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_assignment()
78 // Test MacTypes.h's Boolean
80 typedef unsigned char Boolean; typedef
83 Boolean constan in test_Boolean_initialization()
[all...]
H A DCFNumber.c16 typedef unsigned char Boolean; typedef
18 Boolean CFNumberGetValue(CFNumberRef number, CFNumberType theType, void *valuePtr);
H A Dcfref_PR2519.c5 typedef unsigned char Boolean; typedef
27 … center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverImmediatel…
H A Dcfref_rdar6080742.c10 typedef unsigned char Boolean; typedef
34 Boolean DebugDisplayOSStatusMsg(OSStatus status, const char *statusStr, const char *fileNam…
H A Duninit-vals.c79 typedef unsigned char Boolean; typedef
86 extern Boolean CFNumberGetValue(CFNumberRef number, CFNumberType theType, void *valuePtr);
H A Dmisc-ps-64.m10 typedef unsigned char Boolean; typedef
13 extern Boolean CFDictionaryGetValueIfPresent(CFDictionaryRef theDict, const void *key, const void *…
/llvm-project/lldb/source/Interpreter/
H A DInterpreterProperties.td4 def ExpandRegexAliases: Property<"expand-regex-aliases", "Boolean">,
8 def PromptOnQuit: Property<"prompt-on-quit", "Boolean">,
12 def SaveTranscript: Property<"save-transcript", "Boolean">,
16 def SaveSessionOnQuit: Property<"save-session-on-quit", "Boolean">,
20 def OpenTranscriptInEditor: Property<"open-transcript-in-editor", "Boolean">,
27 def StopCmdSourceOnError: Property<"stop-command-source-on-error", "Boolean">,
31 def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">,
35 def EchoCommands: Property<"echo-commands", "Boolean">,
39 def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">,
43 def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">,
[all...]
/llvm-project/lldb/source/Target/
H A DTargetProperties.td4 def InjectLocalVars : Property<"inject-local-vars", "Boolean">,
7 def UseDIL : Property<"use-DIL", "Boolean">,
17 def MoveToNearestCode: Property<"move-to-nearest-code", "Boolean">,
43 def EnableSynthetic: Property<"enable-synthetic-value", "Boolean">,
46 def SkipPrologue: Property<"skip-prologue", "Boolean">,
55 def AutoSourceMapRelative: Property<"auto-source-map-relative", "Boolean">,
67 def AutoImportClangModules: Property<"auto-import-clang-modules", "Boolean">,
79 def AutoApplyFixIts: Property<"auto-apply-fixits", "Boolean">,
85 def NotifyAboutFixIts: Property<"notify-about-fixits", "Boolean">,
91 def ShowHexVariableValuesWithLeadingZeroes: Property<"show-hex-variable-values-with-leading-zeroes", "Boolean">,
[all...]
/llvm-project/clang/test/Sema/
H A Dblock-return.c57 typedef char Boolean;
63 Boolean (^isEqual)(const CFBasicHash *, uintptr_t stack_value_or_key1, uintptr_t stack_value_or_key2, Boolean is_key);
69 Boolean (*value_equal)(uintptr_t, uintptr_t) = 0; in foo3()
71 cb.isEqual = ^(const CFBasicHash *table, uintptr_t stack_value_or_key1, uintptr_t stack_value_or_key2, Boolean is_key) { in foo3()
72 return (Boolean)(uintptr_t)INVOKE_CALLBACK2(value_equal, (uintptr_t)stack_value_or_key1, (uintptr_t)stack_value_or_key2); in foo3()
56 typedef char Boolean; global() typedef
H A Dimplicit-decl.c11 typedef unsigned char Boolean; typedef
33 Boolean _CFCalendarDecomposeAbsoluteTimeV(const char *componentDesc, int32_t **vector, int32_t coun… in _CFCalendarDecomposeAbsoluteTimeV()
/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td52 CmdLineOption<Boolean,
136 CmdLineOption<Boolean,
159 CmdLineOption<Boolean,
165 CmdLineOption<Boolean,
171 CmdLineOption<Boolean,
177 CmdLineOption<Boolean,
182 CmdLineOption<Boolean,
188 CmdLineOption<Boolean,
194 CmdLineOption<Boolean,
199 CmdLineOption<Boolean,
[all...]
/llvm-project/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVLogicalOps.td55 Result Type must be a scalar or vector of Boolean type.
81 Result Type must be a scalar or vector of Boolean type.
107 Result Type must be a scalar or vector of Boolean type.
133 Result Type must be a scalar or vector of Boolean type.
159 Result Type must be a scalar or vector of Boolean type.
182 Result Type must be a scalar or vector of Boolean type.
205 Result Type must be a scalar or vector of Boolean type.
231 Result Type must be a scalar or vector of Boolean type.
257 Result Type must be a scalar or vector of Boolean type.
283 Result Type must be a scalar or vector of Boolean typ
[all...]
/llvm-project/lldb/tools/debugserver/source/
H A DJSONGenerator.h32 class Boolean; variable
41 typedef std::shared_ptr<Boolean> BooleanSP;
96 Boolean *GetAsBoolean() { in GetAsBoolean()
98 return (Boolean *)this; in GetAsBoolean()
189 class Boolean : public Object {
191 Boolean(bool b = false) : Object(Type::eTypeBoolean), m_value(b) {} in Object()
193 virtual ~Boolean() {} in ~Boolean()
290 AddItem(key, ObjectSP(new Boolean(value))); in AddBooleanItem()
/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h61 class Boolean; variable
71 typedef std::shared_ptr<Boolean> BooleanSP;
141 Boolean *GetAsBoolean() { in GetAsBoolean()
143 ? static_cast<Boolean *>(this) in GetAsBoolean()
148 Boolean *b = GetAsBoolean();
286 AddItem(std::make_shared<Boolean>(value)); in AddBooleanItem()
347 class Boolean : public Object {
349 Boolean(bool b = false)
352 ~Boolean() override = default;
427 Boolean *result_ptr = value_sp->GetAsBoolean(); in GetValueForKeyAsBoolean()
[all …]
/llvm-project/lldb/source/Core/
H A DCoreProperties.td4 def EnableExternalLookup: Property<"enable-external-lookup", "Boolean">,
8 def EnableBackgroundLookup: Property<"enable-background-lookup", "Boolean">,
25 def EnableLLDBIndexCache: Property<"enable-lldb-index-cache", "Boolean">,
45 def LoadSymbolOnDemand: Property<"load-on-demand", "Boolean">,
52 def AutoConfirm: Property<"auto-confirm", "Boolean">,
64 def NotiftVoid: Property<"notify-void", "Boolean">,
111 def HighlightSource: Property<"highlight-source", "Boolean">,
151 def UseExternalEditor: Property<"use-external-editor", "Boolean">,
159 def UseColor: Property<"use-color", "Boolean">,
163 def ShowProgress: Property<"show-progress", "Boolean">,
[all...]
/llvm-project/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp180 msgpack::Type::Boolean)) in verifyKernelArgs()
183 msgpack::Type::Boolean)) in verifyKernelArgs()
186 msgpack::Type::Boolean)) in verifyKernelArgs()
189 msgpack::Type::Boolean)) in verifyKernelArgs()
263 msgpack::Type::Boolean)) in verifyKernel()
H A DMsgPackDocumentYAML.cpp44 case msgpack::Type::Boolean: in toString()
133 case msgpack::Type::Boolean: in getYAMLTag()
193 case Type::Boolean: in mustQuote()
/llvm-project/llvm/include/llvm/Support/
H A DConvertUTF.h131 typedef unsigned char Boolean; /* 0 or 1 */ typedef
196 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd);
198 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd);
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Dmagic-numbers.rst123 Boolean value indicating whether to accept all powers-of-two integer values
134 Boolean value indicating whether to accept all floating point values without
139 Boolean value indicating whether to accept magic numbers as bit field widths
145 Boolean value indicating whether to accept magic numbers in ``typedef`` or
150 Boolean value indicating whether to accept magic numbers in user-defined
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteProperties.td16 def UseSVR4: Property<"use-libraries-svr4", "Boolean">,
20 def UseGPacketForReading: Property<"use-g-packet-for-reading", "Boolean">,
/llvm-project/clang-tools-extra/clang-tidy/misc/
H A DNonPrivateMemberVariablesInClassesCheck.cpp34 bool, Boolean) { in AST_POLYMORPHIC_MATCHER_P() argument
35 return Boolean; in AST_POLYMORPHIC_MATCHER_P()
/llvm-project/clang/test/SemaObjC/
H A Dobjc-cf-audited-warning.m11 typedef unsigned char Boolean; typedef
17 …sentation(CFAllocatorRef allocator, const UInt8 *buffer, CFIndex bufLen, Boolean isDirectory); // …
/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h263 VariantValue(bool Boolean);
280 void setBoolean(bool Boolean);
345 bool Boolean; member
/llvm-project/lldb/source/Commands/
H A DOptions.td78 Arg<"Boolean">,
96 Arg<"Boolean">,
189 Arg<"Boolean">, Desc<"Set the breakpoint on exception throW.">;
191 Arg<"Boolean">, Desc<"Set the breakpoint on exception catcH.">;
198 Arg<"Boolean">, Groups<[1,3,4,5,6,7,8,12]>,
210 Groups<[1,9,12]>, Arg<"Boolean">,
258 Arg<"Boolean">, Desc<"Determines whether the breakpoint will show up in "
261 Arg<"Boolean">, Desc<"Determines whether the breakpoint can be disabled by "
264 Arg<"Boolean">, Desc<"Determines whether the breakpoint can be deleted by "
289 Arg<"Boolean">, Des
[all...]

12345