HomeSort by relevance Sort by last modified time
    Searched defs:Boolean (Results 76 - 100 of 158) sorted by null

1 2 34 5 6 7

  /external/testng/src/main/java/org/testng/
Assert.java 40 static public void assertTrue(boolean condition, String message) {
42 failNotEquals(condition, Boolean.TRUE, message);
51 static public void assertTrue(boolean condition) {
61 static public void assertFalse(boolean condition, String message) {
63 failNotEquals(condition, Boolean.FALSE, message); // TESTNG-81
72 static public void assertFalse(boolean condition) {
304 static public void assertEquals(boolean actual, boolean expected, String message) {
305 assertEquals( Boolean.valueOf(actual), Boolean.valueOf(expected), message)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_iter.py 335 class Boolean:
340 bTrue = Boolean(1)
341 bFalse = Boolean(0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
macsupport.py 13 Boolean = Type("Boolean", "b")
  /external/python/cpython2/Lib/test/
test_iter.py 347 class Boolean:
352 bTrue = Boolean(1)
353 bFalse = Boolean(0)
  /external/python/cpython2/Tools/bgen/bgen/
macsupport.py 13 Boolean = Type("Boolean", "b")
  /external/python/cpython3/Lib/test/
test_iter.py 416 class Boolean:
421 bTrue = Boolean(True)
422 bFalse = Boolean(False)
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNetworkHistory.java 53 private static final boolean DBG = true;
54 private static final boolean VDBG = true;
200 + Boolean.toString(config.selfAdded) + NL);
202 + Boolean.toString(config.didSelfAdd) + NL);
206 + Boolean.toString(config.validatedInternetAccess) + NL);
208 Boolean.toString(config.noInternetAccessExpected) + NL);
210 + Boolean.toString(config.ephemeral) + NL);
212 + Boolean.toString(config.meteredHint) + NL);
216 + Boolean.toString(config.useExternalScores) + NL);
245 out.writeUTF(SHARED_KEY + SEPARATOR + Boolean.toString(config.shared) + NL)
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutDialogFragment.java 248 boolean checked = (position == mCheckedItem);
257 String label, boolean checked) {
272 String label, String collection, boolean checked) {
290 private static boolean isTwoLine(View view) {
291 return view.getTag() == Boolean.TRUE;
294 private static void setTwoLine(View view, boolean twoLine) {
295 view.setTag(Boolean.valueOf(twoLine));
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_iter.py 335 class Boolean:
340 bTrue = Boolean(1)
341 bFalse = Boolean(0)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_iter.py 335 class Boolean:
340 bTrue = Boolean(1)
341 bFalse = Boolean(0)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_iter.py 335 class Boolean:
340 bTrue = Boolean(1)
341 bFalse = Boolean(0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_iter.py 335 class Boolean:
340 bTrue = Boolean(1)
341 bFalse = Boolean(0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
xmlrpclib.py 22 # 2000-11-28 fl Changed boolean to check the truth value of its argument
91 # TODO: sort out True/False/boolean issues for Python 2.3
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
130 boolean Convert any Python value to an XML-RPC boolean
285 # Wrapper for XML-RPC boolean values. Use the xmlrpclib.True and
286 # xmlrpclib.False constants, or the xmlrpclib.boolean() function, to
287 # generate boolean XML-RPC values.
343 def boolean(value, _truefalse=(False, True)): function
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 168 Type *Boolean;
291 Boolean = Type::getInt1Ty(Context);
294 BoolUndef = UndefValue::get(Boolean);
535 PhiInserter.Initialize(Boolean, "");
  /external/python/cpython2/Lib/
xmlrpclib.py 22 # 2000-11-28 fl Changed boolean to check the truth value of its argument
92 # TODO: sort out True/False/boolean issues for Python 2.3
112 Boolean boolean wrapper to generate a "boolean" XML-RPC value
131 boolean Convert any Python value to an XML-RPC boolean
286 # Wrapper for XML-RPC boolean values. Use the xmlrpclib.True and
287 # xmlrpclib.False constants, or the xmlrpclib.boolean() function, to
288 # generate boolean XML-RPC values
344 def boolean(value, _truefalse=(False, True)): function
    [all...]
  /external/testng/src/main/java/org/testng/xml/
TestNGContentHandler.java 68 private boolean m_enabledTest;
72 private boolean m_loadClasses;
73 private boolean m_validate = false;
74 private boolean m_hasWarn = false;
76 public TestNGContentHandler(String fileName, boolean loadClasses) {
124 private void xmlSuiteFile(boolean start, Attributes attributes) {
139 private void xmlSuite(boolean start, Attributes attributes) {
157 m_currentSuite.setJUnit(Boolean.valueOf(jUnit));
184 m_currentSuite.setGroupByInstances(Boolean.valueOf(groupByInstances));
188 m_currentSuite.setSkipFailedInvocationCounts(Boolean.valueOf(skip))
    [all...]
  /external/wpa_supplicant_8/src/common/
defs.h 18 typedef enum { FALSE = 0, TRUE = 1 } Boolean;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndattrib.h 123 WINBOOL Boolean;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
xmlrpclib.py 22 # 2000-11-28 fl Changed boolean to check the truth value of its argument
91 # TODO: sort out True/False/boolean issues for Python 2.3
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
130 boolean Convert any Python value to an XML-RPC boolean
285 # Wrapper for XML-RPC boolean values. Use the xmlrpclib.True and
286 # xmlrpclib.False constants, or the xmlrpclib.boolean() function, to
287 # generate boolean XML-RPC values
343 def boolean(value, _truefalse=(False, True)): function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
xmlrpclib.py 22 # 2000-11-28 fl Changed boolean to check the truth value of its argument
91 # TODO: sort out True/False/boolean issues for Python 2.3
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
130 boolean Convert any Python value to an XML-RPC boolean
285 # Wrapper for XML-RPC boolean values. Use the xmlrpclib.True and
286 # xmlrpclib.False constants, or the xmlrpclib.boolean() function, to
287 # generate boolean XML-RPC values
343 def boolean(value, _truefalse=(False, True)): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 22 # 2000-11-28 fl Changed boolean to check the truth value of its argument
91 # TODO: sort out True/False/boolean issues for Python 2.3
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
130 boolean Convert any Python value to an XML-RPC boolean
285 # Wrapper for XML-RPC boolean values. Use the xmlrpclib.True and
286 # xmlrpclib.False constants, or the xmlrpclib.boolean() function, to
287 # generate boolean XML-RPC values
343 def boolean(value, _truefalse=(False, True)): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 22 # 2000-11-28 fl Changed boolean to check the truth value of its argument
91 # TODO: sort out True/False/boolean issues for Python 2.3
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
130 boolean Convert any Python value to an XML-RPC boolean
285 # Wrapper for XML-RPC boolean values. Use the xmlrpclib.True and
286 # xmlrpclib.False constants, or the xmlrpclib.boolean() function, to
287 # generate boolean XML-RPC values
343 def boolean(value, _truefalse=(False, True)): function
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 93 * (see {@link #match(ContentResolver, Intent, boolean, String)} for more details
282 private boolean mHasPartialTypes = false;
539 public final void setAutoVerify(boolean autoVerify) {
549 * @see #setAutoVerify(boolean)
553 public final boolean getAutoVerify() {
572 public final boolean handleAllWebDataURI() {
593 public final boolean handlesWebUris(boolean onlyWebSchemes) {
606 final boolean isWebScheme =
639 * @see #setAutoVerify(boolean)
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
BrightnessTracker.java 88 static final boolean DEBUG = false;
127 private boolean mEventsDirty;
129 private volatile boolean mWriteBrightnessTrackerStateScheduled;
143 private boolean mSensorRegistered;
156 private boolean mStarted;
242 public ParceledListSlice<BrightnessChangeEvent> getEvents(int userId, boolean includePackage) {
248 Map<Integer, Boolean> toRedact = new HashMap<>();
253 boolean redact = (!includePackage) || profileId != userId;
258 Boolean redact = toRedact.get(events[i].userId);
279 public void notifyBrightnessChanged(float brightness, boolean userInitiated
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
PpsMoParser.java 273 public abstract boolean isLeaf();
297 public boolean isLeaf() {
323 public boolean isLeaf() {
784 Pair<Long, Boolean> homeOI = parseHomeOIInstance(child);
801 * @return Pair<Long, Boolean> containing a HomeOI and a HomeOIRequired flag
804 private static Pair<Long, Boolean> parseHomeOIInstance(PPSNode node) throws ParsingException {
810 Boolean required = null;
821 required = Boolean.valueOf(getPpsNodeValue(child));
834 return new Pair<Long, Boolean>(oi, required);
    [all...]

Completed in 661 milliseconds

1 2 34 5 6 7