Searched defs:true (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/external/kernel-headers/original/linux/
H A Dstddef.h17 true = 1 enumerator in enum:__anon7135
/external/webkit/Source/JavaScriptCore/os-win32/
H A Dstdbool.h32 #define true 1 macro
40 CASSERT(true, true_is_true)
/external/bison/lib/
H A Dstdbool_.h30 - <stdbool.h> must be #included before 'bool', 'false', 'true'
35 - Programs should not undefine the macros bool, true, and false,
46 to 'true', and zero gets converted to 'false'. This doesn't work
56 /* BeOS <sys/socket.h> already #defines false 0, true 1. We use the same
61 # undef true macro
64 /* For the sake of symbolic names in gdb, we define true and false as
67 typedef enum { false = 0, true = 1 } _Bool;
100 enum { false = 0, true = 1 }; enumerator in enum:__anon322
104 typedef enum { _Bool_must_promote_to_int = -1, false = 0, true = 1 } _Bool; enumerator in enum:__anon323
112 #define true macro
[all...]
/external/clang/lib/include/
H A Dstdbool.h29 /* Don't define bool, true, and false in C++, except as a GNU extension. */
32 #define true 1 macro
35 /* Define _Bool, bool, false, true as a GNU extension. */
39 #define true true macro
/external/clang/test/CXX/except/except.spec/
H A Dp3.cpp48 // noexcept(true) is compatible with noexcept
50 extern void (*r11)() noexcept(true); variable
60 // noexcept(false) is incompatible with noexcept(true)
61 extern void (*r14)() noexcept(true); // expected-note {{previous declaration}} variable
85 // noexcept(true) is compatible with dynamic specs that don't throw
87 extern void (*r19)() noexcept(true); variable
94 extern void (*r21)() noexcept(true); // expected-error {{does not match}} variable
H A Dp5-pointers.cpp37 void s11() noexcept(true); variable
/external/junit/src/org/junit/experimental/theories/
H A DTheory.java11 boolean nullsAccepted() default true; field in interface:Theory
/external/llvm/lib/Target/CellSPU/
H A DSPUInstrBuilder.h34 bool mem = true) {
33 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, bool mem = true) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrBuilder.h34 bool mem = true) {
33 addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, bool mem = true) argument
/external/mesa3d/include/c99/
H A Dstdbool.h34 #define true 1 macro
/external/clang/lib/Headers/
H A Dstdbool.h29 /* Don't define bool, true, and false in C++, except as a GNU extension. */
32 #define true 1 macro
35 /* Define _Bool, bool, false, true as a GNU extension. */
39 #define true true macro
/external/chromium/chrome/browser/ui/gtk/
H A Dview_id_util_browsertest.cc48 CheckViewID(static_cast<ViewID>(i), true); local
55 CheckViewID(VIEW_ID_TAB_0, true);
61 CheckViewID(VIEW_ID_TAB_0, true);
62 CheckViewID(VIEW_ID_TAB_1, true);
/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp32 /// FunctionExtractorPass - If deleteFn is true, this pass deletes as the
36 explicit GVExtractorPass(std::vector<GlobalValue*>& GVs, bool deleteS = true) argument
82 return true;
/external/webkit/Source/WebCore/bridge/
H A Dnptypes.h44 * true/false macros are available.
67 #define true 1 macro
86 #define true 1 macro
115 #define true 1 macro
/external/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp65 C->PrintJob(llvm::errs(), C->getJobs(), "\n", true); local
75 C->PrintJob(OS, C->getJobs(), "; ", true);
/external/chromium/base/test/
H A Dmultiprocess_test.cc54 false, true, &handle); local
/external/chromium/base/threading/
H A Dwatchdog_unittest.cc58 Watchdog watchdog2(TimeDelta::FromMilliseconds(300), "Enabled", true);
69 Watchdog watchdog2(TimeDelta::FromMilliseconds(300), "Enabled", true);
78 WatchdogCounter watchdog(TimeDelta::FromMilliseconds(10), "Enabled", true);
87 WatchdogCounter watchdog(TimeDelta(), "Enabled2", true); local
108 WatchdogCounter watchdog(TimeDelta::FromSeconds(1), "Enabled3", true);
/external/chromium/chrome/browser/tab_contents/
H A Dtab_specific_content_settings_unittest.cc27 settings_changed_ = true;
66 content_settings.SetPopupsBlocked(true);
85 GURL("http://google.com"), "C=D", options, true);
134 GURL("http://google.com"), "C=D", options, true);
151 GURL("http://google.com"), net::CookieList(), true); local
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicTypeInfo.h27 DynamicTypeInfo(QualType WithType, bool CanBeSub = true) argument
37 /// the only type in the lattice), true otherwise.
/external/flac/include/FLAC/
H A Dordinals.h69 #ifdef true
70 #undef true macro
76 #define true 1 macro
/external/llvm/include/llvm/Support/
H A DFileUtilities.h38 /// specified (if deleteIt is true).
46 explicit FileRemover(const Twine& filename, bool deleteIt = true) argument
62 void setFile(const Twine& filename, bool deleteIt = true) { argument
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h42 bool AbortOnFailure = true) {
41 getPointerToNamedFunction(const std::string &Name, bool AbortOnFailure = true) argument
/external/llvm/utils/TableGen/
H A DStringToOffsetTable.h30 unsigned GetOrAddStringOffset(StringRef Str, bool appendZero = true) { argument
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageAllocation.h99 static PageAllocation allocate(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false) argument
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPDFDocumentImage.h54 virtual bool hasSingleSecurityOrigin() const { return true; }
60 virtual void destroyDecodedData(bool /*destroyAll*/ = true) { } argument

Completed in 1083 milliseconds

1234567891011>>