Searched defs:NULL (Results 1 - 14 of 14) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMStringPool.java63 public static final int NULL=-1; field in class:DTMStringPool
89 m_hashStart[i]=NULL;
100 if(i==NULL) return null;
107 if(s==null) return NULL;
115 while(hashcandidate!=NULL)
128 m_hashChain.addElement(NULL); // Initialize to no-following-same-hash
129 if(hashlast==NULL) // First for this hash
/dalvik/libcore/include/
H A DUniquePtr.h20 #include <cstdlib> // For NULL.
53 explicit UniquePtr(T* ptr = NULL) : mPtr(ptr) { argument
69 mPtr = NULL;
76 void reset(T* ptr = NULL) { argument
101 explicit UniquePtr(T* ptr = NULL) : mPtr(ptr) { argument
115 mPtr = NULL;
119 void reset(T* ptr = NULL) { argument
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONStringer.java107 NULL, enum constant in enum:JSONStringer.Scope
245 || value == JSONObject.NULL) {
414 } else if (context != Scope.NULL) {
H A DJSONObject.java29 * JSONArrays}, Strings, Booleans, Integers, Longs, Doubles or {@link #NULL}.
52 * coerced, the sentinel value {@link JSONObject#NULL} is coerced to the
68 * JSONObject#NULL}. In particular, calling {@code put(name, null)} removes the
69 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
70 * entry whose value is {@code JSONObject.NULL}.
97 public static final Object NULL = new Object() { field in class:JSONObject
248 * Integer, Long, Double, {@link #NULL}, or {@code null}. May not be
286 * Integer, Long, Double, {@link #NULL} or null. May not be {@link
331 * a mapping whose value is {@link #NULL}.
335 return value == null || value == NULL;
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERTags.java9 public static final int NULL = 0x05; field in interface:DERTags
/dalvik/libcore/sql/src/main/java/java/sql/
H A DTypes.java125 * The type code that identifies the SQL type {@code NULL}.
127 public static final int NULL = 0; field in class:Types
/dalvik/vm/
H A DProperties.c34 if (gDvm.propList == NULL)
52 gDvm.propList = NULL;
68 if (equals == NULL || equals == mangle) {
84 * Returns NULL and throws an exception if not found.
92 if (put == NULL) {
109 if (value == NULL) {
116 if (keyStr == NULL || valueStr == NULL) {
125 dvmReleaseTrackedAlloc((Object*) keyStr, NULL);
126 dvmReleaseTrackedAlloc((Object*) valueStr, NULL);
273 dvmCallMethod(dvmThreadSelf(), getProp, NULL, &val, keyObj); local
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DPlatformAddress.java40 * NULL is the canonical address with address value zero.
42 public static final PlatformAddress NULL = new PlatformAddress(0, 0); field in class:PlatformAddress
104 return this == NULL;
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DSelectorTest.java73 NULL, TIMEOUT, NOW enum constant in enum:SelectorTest.SelectType
210 count = blockingSelect(SelectType.NULL, 0);
299 assert_select_OP_ACCEPT(SelectType.NULL, 0);
300 assert_select_OP_CONNECT(SelectType.NULL, 0);
301 assert_select_OP_READ(SelectType.NULL, 0);
302 assert_select_OP_WRITE(SelectType.NULL, 0);
315 assert_select_SelectorClosed(SelectType.NULL, 0);
422 selectOnce(SelectType.NULL, 0);
439 selectOnce(SelectType.NULL, 0);
728 case NULL
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJDKKeyStore.java64 static final int NULL = 0; field in class:JDKKeyStore
725 while (type > NULL)
817 dOut.write(NULL);
H A DJDKPKCS12KeyStore.java96 static final int NULL = 0; field in class:JDKPKCS12KeyStore
/dalvik/libcore/luni/src/main/native/
H A Dhycomp.h258 #if !defined(NULL)
260 #define NULL (0) macro
262 #define NULL ((void *)0) macro
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java84 public static final int NULL = -1; field in interface:DTM
230 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
244 * or DTM.NULL to indicate none exists.
253 * or DTM.NULL to indicate none exists.
269 * <code>nodeName</code>) or <code>DTM.NULL</code> if there is no such
279 * @return Handle of first attribute, or DTM.NULL to indicate none exists.
293 * or DTM.NULL to indicate none exists.
301 * or DTM.NULL to indicate none exists.
312 * or DTM.NULL to indicate none exists.
323 * or DTM.NULL t
[all...]
/dalvik/vm/oo/
H A DClass.c228 fiddle = dvmLinearAlloc(NULL, 3200-28);
229 dvmLinearReadOnly(NULL, fiddle);
232 fiddle = dvmLinearAlloc(NULL, 3200-24);
233 dvmLinearReadOnly(NULL, fiddle);
236 fiddle = dvmLinearAlloc(NULL, 3200-20);
237 dvmLinearReadOnly(NULL, fiddle);
240 fiddle = dvmLinearAlloc(NULL, 3200-16);
241 dvmLinearReadOnly(NULL, fiddle);
244 fiddle = dvmLinearAlloc(NULL, 3200-12);
245 dvmLinearReadOnly(NULL, fiddl
4636 dvmCallMethod(dvmThreadSelf(), getSysMeth, NULL, &result); local
[all...]

Completed in 545 milliseconds