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

<<81828384858687888990>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAST.java 70 public DFA lookaheadDFA = null;
73 public NFAState NFAStartState = null;
79 public NFAState NFATreeDownState = null;
85 public NFAState followingNFAState = null;
88 protected IntSet setValue = null;
173 if ( token!=null ) {
196 * or null if invalid option.
199 if ( blockOptions == null ) {
206 if ( terminalOptions == null ) {
218 return null;
    [all...]
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
MacSpiTest.java 67 mSpi.engineInit(null, null);
72 mSpi.engineInit(sks, null);
90 mSpi1.engineInit(null, null);
94 mSpi1.engineInit(sks, null);
106 mSpi2.engineInit(null, null);
107 mSpi2.engineInit(sks, null);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 41 attribute = new MyAttribute(null);
42 assertEquals("Attribute has wrong name", null, attribute.getExposedName());
62 attribute = new MyAttribute(null);
63 assertFalse(attribute.equals(new MyAttribute(null)));
72 ObjectOutputStream out = null;
73 ObjectInputStream in = null;
84 // a subclass instance with null name
85 attribute = new MyAttribute(null);
109 if (out != null)
111 if (in != null)
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 89 String uritext = null;
90 if (uri != null) {
93 if (uritext == null || uritext.length() == 0) {
111 this.releaseTrigger = null;
126 this.connRequest = null;
154 if (localRequest != null) {
157 if (localTrigger != null) {
175 clone.releaseTrigger = null;
176 clone.connRequest = null;
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
XalanTransformState.java 40 Node m_node = null;
41 ElemTemplateElement m_currentElement = null;
42 ElemTemplate m_currentTemplate = null;
43 ElemTemplate m_matchedTemplate = null;
44 int m_currentNodeHandle = DTM.NULL;
45 Node m_currentNode = null;
46 int m_matchedNode = DTM.NULL;
47 DTMIterator m_contextNodeList = null;
49 TransformerImpl m_transformer = null;
62 if ((transformer != null) && (transformer instanceof TransformerImpl))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncId.java 60 if (null != refval)
62 String ref = null;
73 if ((null != usedrefs) && usedrefs.contains(ref))
75 ref = null;
82 if (DTM.NULL != node)
85 if ((null != ref) && (hasMore || mayBeMore))
87 if (null == usedrefs)
113 if (DTM.NULL == docContext)
114 error(xctxt, XPATHErrorResources.ER_CONTEXT_HAS_NO_OWNERDOC, null);
124 StringVector usedrefs = null;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
UnionPattern.java 62 if(null != m_patterns)
83 if(null != patterns)
120 XObject bestScore = null;
129 if (null == bestScore)
136 if (null == bestScore)
178 if(null != m_patterns)
198 if(null != m_patterns)
201 if((null == up.m_patterns) || (up.m_patterns.length != n))
210 else if(up.m_patterns != null)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
V2Form.java 32 else if (obj != null)
37 return null;
43 this(issuerName, null, null);
50 this(issuerName, baseCertificateID, null);
57 this(issuerName, null, objectDigestInfo);
140 if (issuerName != null)
145 if (baseCertificateID != null)
150 if (objectDigestInfo != null)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DHDomainParameters.java 27 if (obj == null || obj instanceof DHDomainParameters)
44 if (p == null)
46 throw new IllegalArgumentException("'p' cannot be null");
48 if (g == null)
50 throw new IllegalArgumentException("'g' cannot be null");
52 if (q == null)
54 throw new IllegalArgumentException("'q' cannot be null");
78 if (next != null && next instanceof ASN1Integer)
84 if (next != null)
92 return e.hasMoreElements() ? (ASN1Encodable)e.nextElement() : null;
    [all...]
  /external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/
ShellManager.java 46 assert window != null; local
74 * @return The currently visible shell view or null if one is not showing.
91 assert mContentViewRenderView != null; local
94 Shell shellView = (Shell) inflater.inflate(R.layout.shell_view, null);
97 if (mActiveShell != null) closeShell(mActiveShell);
104 if (contentView != null) {
115 if (shellView == mActiveShell) mActiveShell = null;
117 if (contentView != null) contentView.onHide();
118 shellView.setContentViewRenderView(null);
119 shellView.setWindow(null);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeIdsSection.java 33 * {@code non-null;} map from types to {@link TypeIdItem} instances
40 * @param file {@code non-null;} file that this instance is part of
57 if (cst == null) {
58 throw new NullPointerException("cst == null");
66 if (result == null) {
76 * @param out {@code non-null;} where to write
100 * @param type {@code non-null;} the type to intern
101 * @return {@code non-null;} the interned reference
104 if (type == null) {
105 throw new NullPointerException("type == null");
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
ArrayMemberValue.java 38 type = null;
39 values = null;
50 values = null;
56 if (values == null)
62 if (type == null) {
64 if (clazz == null || size > 0)
79 if (type == null)
89 * @return null if the type is not specified.
107 if (elements != null && elements.length > 0)
116 if (values != null) {
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderHelper.java 88 if (text != null) {
105 if (data == null) {
106 return null;
110 if (v != null) {
127 if (data == null) {
128 return null;
132 if (v != null) {
148 * @return loaded properties or null if they are not available
153 Properties properties = null;
155 if (id != null) {
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
BlenderTrack.java 29 * Constructs the object using spatial track (bone track is null).
39 * Constructs the object using bone track (spatial track is null).
52 return boneTrack != null ? boneTrack : spatialTrack;
59 if (boneTrack != null) {
69 if (boneTrack != null) {
79 if (boneTrack != null) {
89 if (boneTrack != null) {
109 if (boneTrack != null) {
127 if (boneTrack != null) {
136 return spatialTrack == null ? boneTrack.getLength() : spatialTrack
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 47 * Returns a media type for {@code string}, or null if {@code string} is not a
52 if (!typeSubtype.lookingAt()) return null;
56 String charset = null;
60 if (!parameter.lookingAt()) return null; // This is not a well-formed media type.
63 if (name == null || !name.equalsIgnoreCase("charset")) continue;
64 if (charset != null) throw new IllegalArgumentException("Multiple charsets: " + string);
65 charset = parameter.group(2) != null
90 * Returns the charset of this media type, or null if this media type doesn't
94 return charset != null ? Charset.forName(charset) : null;
    [all...]
  /external/proguard/src/proguard/
DataEntryWriterFactory.java 48 DataEntryWriter writer = null;
87 (filter != null ||
88 jarFilter != null ||
89 warFilter != null ||
90 earFilter != null ||
91 zipFilter != null ? " (filtered)" : ""));
106 writer = filter != null?
114 return alternativeWriter != null ?
135 DataEntryWriter filteredJarWriter = jarFilter != null?
  /external/proguard/src/proguard/util/
ClassNameParser.java 100 new VariableStringMatcher(null,
114 new VariableStringMatcher(null,
128 new VariableStringMatcher(null,
143 null,
169 null,
174 null,
179 null,
182 new VariableStringMatcher(null,
187 null,
  /external/smack/src/org/jivesoftware/smackx/packet/
Time.java 52 * if (result != null && result.getType() == IQ.Type.RESULT) {
68 private String utc = null;
69 private String tz = null;
70 private String display = null;
95 * Returns the local time or <tt>null</tt> if the time hasn't been set.
100 if (utc == null) {
101 return null;
103 Date date = null;
186 if (utc != null) {
189 if (tz != null) {
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Section.java 53 protected HashMap<T,T> uniqueItems = null;
94 assert item != null; local
117 assert item!=null; local
132 //readItems() expects that the list will already be the correct size, so add null items
136 items.add(null);
180 if (item == null) {
181 return null;
184 if (internedItem == null) {
193 * Returns the interned item that is equivalent to the given item, or null
195 * @return the interned item that is equivalent to the given item, or null
210 assert item != null; local
    [all...]
  /external/strace/linux/
ioctlent.sh 54 (cd "$dir" && grep "$regexp" "$@" /dev/null 2>/dev/null) |
96 (cd $dir && grep $regexp $files 2>/dev/null) | \
119 line=$( (cd $dir && grep -h $regexp 2>/dev/null $files) | grep -v '\<_IO')
125 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
131 ${CPP:-cpp} -P $(grep -l $base $files 2>/dev/null) | sed '/^$/d' | \
150 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
  /frameworks/base/core/java/android/app/
Service.java 295 super(null);
339 * delivered to the service, it will be called with a null intent
356 * call with a null Intent because it will not be re-started if there
381 * call with a null Intent because it will will only be re-started if
435 * as given. This may be null if the service is being restarted after
473 * Return the communication channel to the service. May return null if
555 if (mActivityManager == null) {
587 if (mActivityManager == null) {
661 new ComponentName(this, mClassName), mToken, 0, null,
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 58 if (context == null) {
131 if (iGatt == null) return connectedDevices;
176 if (iGatt == null) return devices;
197 if (context == null || callback == null) {
198 throw new IllegalArgumentException("null parameter: " + context + " " + callback);
207 if (iGatt == null) {
209 return null;
213 return regStatus? mGattServer : null;
216 return null;
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 67 if (bindArgs != null && bindArgs.length > mNumParameters) {
75 if (bindArgs != null) {
79 mBindArgs = null;
124 * Bind a NULL value to this statement. The value remains bound until
127 * @param index The 1-based index to the parameter to bind null to
130 bind(index, null);
160 * @param value The value to bind, must not be null
163 if (value == null) {
164 throw new IllegalArgumentException("the bind value at index " + index + " is null");
174 * @param value The value to bind, must not be null
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 155 * @param title Title for the bookmark. Can be null or empty string.
156 * @param url Url for the bookmark. Can be null or empty string.
240 Bookmarks.IS_FOLDER + " = 0", null, null);
254 new String[] { Combined.URL }, null, null,
274 StringBuilder whereClause = null;
298 whereClause.toString(), null, null);
314 Cursor c = null;
327 values, null, null); local
411 null, null); local
    [all...]
  /frameworks/base/core/java/android/util/
ReflectiveProperty.java 53 mGetter = propertyHolder.getMethod(getterName, (Class<?>[])null);
58 mGetter = propertyHolder.getMethod(getterName, (Class<?>[])null);
116 if (mSetter != null) {
124 } else if (mField != null) {
137 if (mGetter != null) {
139 return (V) mGetter.invoke(object, (Object[])null);
145 } else if (mField != null) {
152 // Should not get here: there should always be a non-null getter or field
161 return (mSetter == null && mField == null);
    [all...]

Completed in 828 milliseconds

<<81828384858687888990>>