Searched refs:bool (Results 1 - 25 of 220) sorted by relevance

123456789

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
H A DSoftReferenceTest.java23 static Boolean bool; field in class:SoftReferenceTest
26 bool = null;
35 bool = new Boolean(true);
36 SoftReference sr = new SoftReference(bool, rq);
42 new SoftReference(bool, null);
53 bool = new Boolean(true);
54 SoftReference sr = new SoftReference(bool);
63 bool = new Boolean(false);
64 SoftReference sr = new SoftReference(bool);
65 assertTrue("Same object not returned.", bool
[all...]
H A DWeakReferenceTest.java24 static Boolean bool; field in class:WeakReferenceTest
27 bool = null;
36 bool = new Boolean(true);
38 WeakReference wr = new WeakReference(bool, rq);
42 // need a reference to bool so the jit does not optimize it away
43 assertTrue("should always pass", bool.booleanValue());
47 new WeakReference(bool, null);
58 bool = new Boolean(true);
59 WeakReference wr = new WeakReference(bool);
65 // need a reference to bool s
[all...]
H A DPhantomReferenceTest.java24 static Boolean bool; field in class:PhantomReferenceTest
27 bool = null;
35 bool = new Boolean(false);
36 PhantomReference pr = new PhantomReference(bool, rq);
46 bool = new Boolean(true);
47 PhantomReference pr = new PhantomReference(bool, rq);
52 // need a reference to bool so the jit does not optimize it away
53 assertTrue("should always pass", bool.booleanValue());
57 new PhantomReference(bool, null);
/external/chromium_org/ppapi/api/
H A Dpp_bool.idl13 * The standard bool type is not available to pre-C99 compilers, and is not
24 * Converts a C++ "bool" type to a PP_Bool.
26 * @param[in] b A C++ "bool" type.
30 inline PP_Bool PP_FromBool(bool b) {
35 * Converts a PP_Bool to a C++ "bool" type.
39 * @return A C++ "bool" type.
41 inline bool PP_ToBool(PP_Bool b) {
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DAnd.java50 if (expr1.bool())
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
69 public boolean bool(XPathContext xctxt) method in class:And
72 return (m_left.bool(xctxt) && m_right.bool(xctxt));
H A DOr.java50 if (!expr1.bool())
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
69 public boolean bool(XPathContext xctxt) method in class:Or
72 return (m_left.bool(xctxt) || m_right.bool(xctxt));
H A DBool.java50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
62 public boolean bool(XPathContext xctxt) method in class:Bool
65 return m_right.bool(xctxt);
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/
H A DNSScrollerImpDetails.mm34 bool isScrollbarOverlayAPIAvailable()
36 static bool apiAvailable;
37 static bool shouldInitialize = true;
H A DScrollbarThemeMacOverlayAPI.mm50 static bool supportsExpandedScrollbars()
53 static bool globalSupportsExpandedScrollbars = [NSClassFromString(@"NSScrollerImp") instancesRespondToSelector:@selector(setExpanded:)];
61 bool isHorizontal = scrollbar->orientation() == HorizontalScrollbar;
132 bool ScrollbarThemeMacOverlayAPI::usesOverlayScrollbars() const
158 bool ScrollbarThemeMacOverlayAPI::hasThumb(ScrollbarThemeClient* scrollbar)
168 IntRect ScrollbarThemeMacOverlayAPI::backButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool painting)
174 IntRect ScrollbarThemeMacOverlayAPI::forwardButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool painting)
180 IntRect ScrollbarThemeMacOverlayAPI::trackRect(ScrollbarThemeClient* scrollbar, bool painting)
/external/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.ml17 external write_bitcode_file : Llvm.llmodule -> string -> bool
20 external write_bitcode_to_fd : ?unbuffered:bool -> Llvm.llmodule
21 -> Unix.file_descr -> bool
H A Dllvm_bitwriter.mli17 external write_bitcode_file : Llvm.llmodule -> string -> bool
23 external write_bitcode_to_fd : ?unbuffered:bool -> Llvm.llmodule
24 -> Unix.file_descr -> bool
30 val output_bitcode : ?unbuffered:bool -> out_channel -> Llvm.llmodule -> bool
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBooleanStatic.java62 return m_val == obj2.bool();
H A DXBoolean.java112 public boolean bool() method in class:XBoolean
160 return m_val == obj2.bool();
H A DXNull.java80 public boolean bool() method in class:XNull
/external/chromium_org/third_party/libphonenumber/src/resources/
H A Dphonemetadata.proto87 optional bool national_prefix_optional_when_formatting = 6;
206 optional bool same_mobile_and_fixed_line_pattern = 18 [default=false];
248 optional bool main_country_for_code = 22 [default=false];
265 optional bool leading_zero_possible = 26 [default=false];
H A Dphonenumber.proto59 optional bool italian_leading_zero = 4;
/external/stlport/stlport/
H A Dlocale83 inline bool isspace (_CharT c, const locale& loc)
87 inline bool isprint (_CharT c, const locale& loc)
91 inline bool iscntrl (_CharT c, const locale& loc)
95 inline bool isupper (_CharT c, const locale& loc)
99 inline bool islower (_CharT c, const locale& loc)
103 inline bool isalpha (_CharT c, const locale& loc)
107 inline bool isdigit (_CharT c, const locale& loc)
111 inline bool ispunct (_CharT c, const locale& loc)
115 inline bool isxdigit (_CharT c, const locale& loc)
119 inline bool isalnu
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncBoolean.java45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncNot.java45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
H A DSAXUtil.java102 public static boolean parseBool(String bool, boolean def) throws SAXException{ argument
103 if (bool == null || bool.equals(""))
106 return Boolean.valueOf(bool);
109 // throw new SAXException("Expected a boolean, got'"+bool+"'");
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
H A DColorMac.mm36 static bool useOldAquaFocusRingColor;
43 void setUsesTestModeFocusRingColor(bool newValue)
48 bool usesTestModeFocusRingColor()
/external/chromium_org/third_party/skia/src/views/mac/
H A DSkOSWindow_Mac.mm37 bool SkOSWindow::onEvent(const SkEvent& evt) {
51 bool SkOSWindow::onDispatchClick(int x, int y, Click::State state, void* owner,
68 bool SkOSWindow::attach(SkBackEndTypes attachType, int sampleCount, AttachmentInfo* info) {
/external/skia/src/views/mac/
H A DSkOSWindow_Mac.mm37 bool SkOSWindow::onEvent(const SkEvent& evt) {
51 bool SkOSWindow::onDispatchClick(int x, int y, Click::State state, void* owner,
68 bool SkOSWindow::attach(SkBackEndTypes attachType, int sampleCount, AttachmentInfo* info) {
/external/chromium_org/tools/perf/benchmarks/
H A Djsgamebench.py21 return bool(tab.EvaluateJavaScript(js_is_done))
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
H A DCollisionShapeFactory.java84 Boolean bool = spatial.getUserData(UserData.JME_PHYSICSIGNORE);
85 if (bool != null && bool.booleanValue()) {
96 Boolean bool = spatial.getUserData(UserData.JME_PHYSICSIGNORE);
97 if (bool != null && bool.booleanValue()) {
106 Boolean bool = spatial.getUserData(UserData.JME_PHYSICSIGNORE);
107 if (bool != null && bool.booleanValue()) {

Completed in 1486 milliseconds

123456789