HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 1001 - 1025 of 32842) sorted by null

<<41424344454647484950>>

  /external/tcpdump/tests/
lmp-v.sh 14 elif grep '^CC = .*gcc' ../Makefile >/dev/null
nflog-e.sh 5 if grep '^#define HAVE_PCAP_NFLOG_H 1$' ../config.h >/dev/null
  /external/testng/src/main/java/org/testng/collections/
CollectionUtils.java 11 return c != null && ! c.isEmpty();
15 return c != null && ! c.isEmpty();
  /external/testng/src/main/java/org/testng/internal/
InstanceInfo.java 6 private Class m_instanceClass = null;
7 private Object m_instance = null;
  /external/testng/src/test/java/test/factory/
VerifyFactoryTest.java 11 assert null != numbers.get(42)
13 assert null != numbers.get(43)
VerifyFactoryWithInstanceInfoTest.java 11 assert null != numbers.get(42)
13 assert null != numbers.get(43)
  /external/testng/src/test/java/test/sample/
JUnitSample2.java 13 private String m_field = null;
29 assert null != m_field : "setUp() wasn't run";
  /external/testng/src/test/java/test/tmp/p1/
ContainerTest.java 12 assertNotNull(null);
17 assertNotNull(null);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParameterAsserts.java 35 * @throws XMPException Array name is null or empty
39 if (arrayName == null || arrayName.length() == 0)
49 * @throws XMPException Property name is null or empty
53 if (propName == null || propName.length() == 0)
63 * @throws XMPException Schema is null or empty
67 if (schemaNS == null || schemaNS.length() == 0)
77 * @throws XMPException Prefix is null or empty
81 if (prefix == null || prefix.length() == 0)
91 * @throws XMPException Specific language is null or empty
95 if (specificLang == null || specificLang.length() == 0
    [all...]
  /frameworks/base/core/java/android/app/
SynchronousUserSwitchObserver.java 38 if (reply != null) {
39 reply.sendResult(null);
  /frameworks/base/core/java/android/net/
RouteInfo.java 39 * If this is {@code null} it indicates a default route of the address family (IPv4 or IPv6)
41 * <li>a gateway {@link InetAddress} indicating the next hop to use. If this is {@code null} it
45 * Either the destination or the gateway may be {@code null}, but not both. If the
88 * If destination is null, then gateway must be specified and the
94 * destination and gateway may not both be null.
114 // - Even when the gateway is null, we store a non-null gateway here.
122 if (destination == null) {
123 if (gateway != null) {
135 // TODO: set mGateway to null if there is no gateway. This is more correct, saves space, an
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
NfcFCardEmulation.java 67 if (adapter == null) throw new NullPointerException("NfcAdapter is null");
69 if (context == null) {
70 Log.e(TAG, "NfcAdapter context is null.");
75 if (pm == null) {
91 if (manager == null) {
94 if (service == null) {
111 * {@link #unregisterSystemCodeForService(ComponentName)}, "null" is returned.
117 if (service == null) {
118 throw new NullPointerException("service is null");
    [all...]
  /frameworks/base/core/java/android/view/
FrameStats.java 50 return mFramesPresentedTimeNano != null
92 if (mFramesPresentedTimeNano == null) {
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransportService.java 24 private static LocalTransport sTransport = null;
28 if (sTransport == null) {
  /frameworks/base/core/java/com/android/internal/os/
SomeArgs.java 67 args.mNext = null;
106 arg1 = null;
107 arg2 = null;
108 arg3 = null;
109 arg4 = null;
110 arg5 = null;
111 arg6 = null;
112 arg7 = null;
  /frameworks/base/core/tests/coretests/src/android/print/mockservice/
StubbablePrinterDiscoverySession.java 36 if (mCallbacks != null) {
47 if (mCallbacks != null) {
54 if (mCallbacks != null) {
61 if (mCallbacks != null) {
68 if (mCallbacks != null) {
77 if (mCallbacks != null) {
84 if (mCallbacks != null) {
91 if (mCallbacks != null) {
  /frameworks/base/keystore/java/android/security/
KeyChainException.java 49 * the cause of this exception, may be {@code null}.
60 * the cause of this exception, may be {@code null}.
63 super((cause == null ? null : cause.toString()), cause);
  /frameworks/base/media/java/android/media/midi/
MidiSender.java 31 if (receiver == null) {
32 throw new NullPointerException("receiver null in MidiSender.connect");
43 if (receiver == null) {
44 throw new NullPointerException("receiver null in MidiSender.disconnect");
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StreamPort.java 34 if (mFrame != null) {
36 mFrame = null;
55 if (mFrame != null) {
58 } else if (mFrame != null) {
70 if (mFrame == null) {
79 mFrame = null;
86 return mFrame != null;
96 if (mFrame != null) {
  /frameworks/base/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/mockservice/
StubbablePrinterDiscoverySession.java 36 if (mCallbacks != null) {
47 if (mCallbacks != null) {
54 if (mCallbacks != null) {
61 if (mCallbacks != null) {
68 if (mCallbacks != null) {
77 if (mCallbacks != null) {
84 if (mCallbacks != null) {
91 if (mCallbacks != null) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothManager.java 24 * the Bluetooth API. Note that {@link #getInstance} will return null
51 if (sInstance == null) {
53 if (adapter == null) {
54 return null;
59 if (onInitCallback != null) {
91 return mForegroundActivity != null;
95 if (context != null) {
96 Log.d(TAG, "setting foreground activity to non-null context");
99 if (mForegroundActivity != null) {
100 Log.d(TAG, "setting foreground activity to null");
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowList.java 32 return size() > 0 ? get(size() - 1) : null;
36 return size() > 0 ? get(0) : null;
  /frameworks/base/test-runner/src/android/test/
ActivityInstrumentationTestCase2.java 51 Intent mActivityIntent = null;
98 if (a == null) {
103 if (mActivityIntent == null) {
104 a = launchActivity(targetPackage, mActivityClass, null);
127 * All other fields are null or empty.
129 * @param i The Intent to start the Activity with, or null to reset to the default Intent.
157 mActivityIntent = null;
164 if (a != null) {
166 setActivity(null);
185 Method method = getClass().getMethod(getName(), (Class[]) null);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphInputSource.java 13 private Frame mFrame = null;
27 if (mFrame != null) {
30 if (frame == null) {
31 throw new RuntimeException("Attempting to assign null-frame!");
38 if (mFrame != null) {
41 mFrame = null;
47 if (mFrame != null) {
49 mFrame = null;
55 return super.canSchedule() && mFrame != null;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
CameraTestThread.java 34 private Looper mLooper = null;
35 private Handler mHandler = null;
42 if (mLooper != null || mHandler !=null) {
73 if (mLooper == null || mHandler == null) {
81 mLooper = null;
82 mHandler = null;

Completed in 483 milliseconds

<<41424344454647484950>>