HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 876 - 900 of 19630) sorted by null

<<31323334353637383940>>

  /external/jmonkeyengine/engine/src/core/com/jme3/material/
TechniqueDef.java 120 * @param name The name of the technique, should be set to <code>null</code>
124 this.name = name == null ? "Default" : name;
250 if (defineParams == null)
251 return null;
269 if (defineParams == null)
300 if (presetDefines == null)
307 * Returns the name of the fragment shader used by the technique, or null
318 * Returns the name of the vertex shader used by the technique, or null
344 if (worldBinds == null){
368 oc.write(name, "name", null);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
DefineList.java 44 private String compiled = null;
59 oc.write(keys, "keys", null);
60 oc.write(vals, "vals", null);
63 oc.write(compiled, "compiled", null);
69 String[] keys = ic.readStringArray("keys", null);
70 String[] vals = ic.readStringArray("vals", null);
75 compiled = ic.readString("compiled", null);
86 //compiled = null;
91 // compiled = null;
96 if (val == null){
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ADefCommand.java 60 if(this._position_ != null)
62 this._position_.parent(null);
65 if(node != null)
67 if(node.parent() != null)
89 if(e.parent() != null)
109 if(e.parent() != null)
125 if(this._command_ != null)
127 this._command_.parent(null);
130 if(node != null)
132 if(node.parent() != null)
    [all...]
  /external/openssh/regress/
agent.sh 6 SSH_AUTH_SOCK=/nonexistent ${SSHADD} -l > /dev/null 2>&1
12 eval `${SSHAGENT} -s` > /dev/null
17 ${SSHADD} -l > /dev/null 2>&1
31 ${SSHADD} $OBJ/$t-agent > /dev/null 2>&1
36 ${SSHADD} -l > /dev/null 2>&1
41 ${SSHADD} -L > /dev/null 2>&1
56 ${SSH} -A -$p -F $OBJ/ssh_proxy somehost ${SSHADD} -l > /dev/null 2>&1
68 ${SSHADD} -D > /dev/null 2>&1
74 ${SSHAGENT} -k > /dev/null
  /external/replicaisland/src/com/replica/replicaisland/
DoorAnimationComponent.java 55 mSprite = null;
57 mChannel = null;
58 mSolidSurface = null;
60 mCloseSound = null;
61 mOpenSound = null;
65 if (mSprite != null) {
74 if (mSolidSurface != null) {
86 if (mSolidSurface != null) {
95 if (mOpenSound != null) {
97 if (sound != null) {
    [all...]
SpriteComponent.java 66 mRenderComponent = null;
67 mCollisionComponent = null;
68 mCurrentAnimation = null;
87 if (currentAnimation == null && currentAnimIndex != -1) {
89 if (currentAnimation == null) {
102 if (currentFrame != null) {
105 if (render != null) {
107 if (mVisible && currentFrame.texture != null && factory != null) {
119 render.setDrawable(null);
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDataItem.java 40 private EncodedField[] staticFields = null;
42 private EncodedField[] instanceFields = null;
44 private EncodedMethod[] directMethods = null;
46 private EncodedMethod[] virtualMethods = null;
87 EncodedField[] staticFieldsArray = null;
88 EncodedField[] instanceFieldsArray = null;
89 EncodedMethod[] directMethodsArray = null;
90 EncodedMethod[] virtualMethodsArray = null;
92 if (staticFields != null && staticFields.size() > 0) {
107 if (instanceFields != null && instanceFields.size() > 0)
    [all...]
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 61 if (server1 != null) count++;
62 if (server2 != null) count++;
63 if (server3 != null) count++;
71 if (server1 != null) mXtraServers[count++] = server1;
72 if (server2 != null) mXtraServers[count++] = server2;
73 if (server3 != null) mXtraServers[count++] = server3;
84 boolean useProxy = (proxyHost != null && proxyPort != -1);
85 byte[] result = null;
88 if (mXtraServers == null) {
89 return null;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
LruCache.java 53 * if (cache.get(key) == null) {
58 * <p>This class does not allow null to be used as a key or value. A return
59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
112 * head of the queue. This returns null if a value is not cached and cannot
116 if (key == null) {
117 throw new NullPointerException("key == null");
123 if (mapValue != null) {
138 if (createdValue == null) {
139 return null;
146 if (mapValue != null) {
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingDeque.java 80 * The item, or null if this node has been removed.
88 * - null, meaning there is no predecessor
96 * - null, meaning there is no successor
107 * Invariant: (first == null && last == null) ||
108 * (first.prev == null && first.item != null)
114 * Invariant: (first == null && last == null) ||
115 * (last.next == null && last.item != null
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
XmlStringFileHelper.java 62 * @return The value string if the ID is defined, null otherwise.
77 * @return The map of string IDs => values defined in the given file. Cached. Never null.
81 if (cache == null) {
93 * The returned set is always non null. It is empty if the file does not exist.
102 if (resource != null && resource.exists() && resource.getType() == IResource.FILE) {
103 IStructuredModel smodel = null;
109 if (smodel == null) {
121 Node root = findChild(doc, null, SdkConstants.TAG_RESOURCES);
122 if (root != null) {
123 for (Node strNode = findChild(root, null,
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AppendTrack.java 46 if (stsd == null) {
61 if (aseResult != null) {
79 return null;
84 return null;
89 return null;
94 return null;
99 return null;
104 return null;
109 return null;
114 return null;
    [all...]
  /frameworks/base/core/java/android/view/
ViewTreeObserver.java 90 * the view tree transitions from touch mode to non-touch mode, oldFocus is null.
92 * null. When focus changes in non-touch mode (without transition from or to
93 * touch mode) either oldFocus or newFocus can be null.
263 if (o == null || getClass() != o.getClass()) return false;
314 if (observer.mOnWindowAttachListeners != null) {
315 if (mOnWindowAttachListeners != null) {
322 if (observer.mOnWindowFocusListeners != null) {
323 if (mOnWindowFocusListeners != null) {
330 if (observer.mOnGlobalFocusListeners != null) {
331 if (mOnGlobalFocusListeners != null) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 112 Cursor cursor = null;
117 new String[] { Contacts._ID, Contacts.LOOKUP_KEY }, null, null, null);
119 if (cursor != null && cursor.moveToFirst()) {
128 return null;
130 if (cursor != null) {
148 // before continuing. Null URIs should still be allowed so that the list can be
161 if (mHandler == null) {
199 if (mFilter == null && filter == null)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ReverseGeocoder.java 103 if (addr1 == null)
105 if (addr2 == null)
107 if (addr1 == null || addr2 == null) {
108 return null;
115 Location location = null;
119 location = (provider != null) ? locationManager.getLastKnownLocation(provider) : null;
120 if (location != null)
126 if (location != null) {
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
Settings.java 230 if(p != null) {
240 if(p != null) {
248 if (s == null) {
250 return null;
256 // s, which is currently null
267 if(p == null) {
273 if (dp == null) {
274 if((p.pkg != null) && (p.pkg.applicationInfo != null)) {
292 if(p == null) {
2458 packageSetting.setEnabled(Integer.parseInt(enabledStr), 0 \/* userId *\/, null); local
    [all...]
  /art/test/021-string2/src/junit/framework/
Assert.java 27 assertTrue(null, condition);
41 assertFalse(null, condition);
53 fail(null);
60 if (expected == null && actual == null)
62 if (expected != null && expected.equals(actual))
71 assertEquals(null, expected, actual);
77 if (expected == null && actual == null)
79 if (expected != null && expected.equals(actual)
    [all...]
  /art/test/082-inline-execute/src/junit/framework/
Assert.java 27 assertTrue(null, condition);
41 assertFalse(null, condition);
53 fail(null);
60 if (expected == null && actual == null)
62 if (expected != null && expected.equals(actual))
71 assertEquals(null, expected, actual);
77 if (expected == null && actual == null)
79 if (expected != null && expected.equals(actual)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsProvider2_AccountRemovalTest.java 72 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
73 mAccountManager.addAccountExplicitly(ACCT_2, null, null);
77 mAccountManager.removeAccount(ACCT_2, null, null);
80 mAccountManager.removeAccount(ACCT_1, null, null);
85 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorTreeAdapterTest.java 71 mParent = (ViewGroup) layoutInflater.inflate(R.layout.cursoradapter_host, null);
75 mResourceCursorTreeAdapter = new MockResourceCursorTreeAdapter(mContext, null,
84 new MockResourceCursorTreeAdapter(mContext, null, mCollapsedGroupLayout,
87 new MockResourceCursorTreeAdapter(mContext, null, mCollapsedGroupLayout,
90 new MockResourceCursorTreeAdapter(mContext, null, -1, -1);
92 new MockResourceCursorTreeAdapter(mContext, null, -1, -1, -1);
94 new MockResourceCursorTreeAdapter(mContext, null, -1, -1, -1, -1);
99 mResourceCursorTreeAdapter = new MockResourceCursorTreeAdapter(mContext, null,
102 View result = mResourceCursorTreeAdapter.newChildView(null, null, true, mParent)
    [all...]
  /dalvik/tests/021-string2/src/junit/framework/
Assert.java 27 assertTrue(null, condition);
41 assertFalse(null, condition);
53 fail(null);
60 if (expected == null && actual == null)
62 if (expected != null && expected.equals(actual))
71 assertEquals(null, expected, actual);
77 if (expected == null && actual == null)
79 if (expected != null && expected.equals(actual)
    [all...]
  /dalvik/tests/082-inline-execute/src/junit/framework/
Assert.java 27 assertTrue(null, condition);
41 assertFalse(null, condition);
53 fail(null);
60 if (expected == null && actual == null)
62 if (expected != null && expected.equals(actual))
71 assertEquals(null, expected, actual);
77 if (expected == null && actual == null)
79 if (expected != null && expected.equals(actual)
    [all...]
  /development/samples/NotePad/src/com/example/android/notepad/
TitleEditor.java 88 null, // No selection criteria are used, so no where columns are needed.
89 null, // No where columns are used, so no where values are needed.
90 null // No sort order is needed.
108 // Cursor object is not null. If it is *empty*, then mCursor.getCount() == 0.
109 if (mCursor != null) {
136 // Cursor object is not null. If it is *empty*, then mCursor.getCount() == 0.
138 if (mCursor != null) {
157 null, // No selection criteria is used, so no "where" columns are needed.
158 null // No "where" columns are used, so no "where" values are needed.
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
TestSuiteAdapter.java 55 currentRule = null;
68 if(fileName == null) throw new IllegalArgumentException("null");
73 if(line == null) throw new IllegalArgumentException("null");
79 if(text == null) throw new IllegalArgumentException("null");
89 if(ast == null) throw new IllegalArgumentException("null");
94 if(text == null) throw new IllegalArgumentException("null")
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSemanticsMessage.java 47 this(msgID,g,offendingToken,null,null);
55 this(msgID,g,offendingToken,arg,null);
72 if ( offendingToken!=null ) {
76 if ( g!=null ) {
80 if ( arg!=null ) {
83 if ( arg2!=null ) {

Completed in 900 milliseconds

<<31323334353637383940>>