HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 26 - 50 of 24315) sorted by null

12 3 4 5 6 7 8 91011>>

  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader.java 65 menu.add(0, 0, "Start RSS Service", null);
66 menu.add(0, 1, "Stop RSS Service", null);
67 menu.add(0, 2, "Add New Feed", null);
68 menu.add(0, 3, "Delete Feed", null);
69 menu.add(0, 4, "Update All Feeds", null);
85 showAlert(null, "You clicked 'start'!", "ok", null, false, null);
88 showAlert(null, "You clicked stop!", "ok", null, false, null)
    [all...]
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioCodecTest.java 34 assertEquals(AudioCodec.PCMU, 0, "PCMU/8000", null);
35 assertEquals(AudioCodec.PCMA, 8, "PCMA/8000", null);
36 assertEquals(AudioCodec.GSM, 3, "GSM/8000", null);
37 assertEquals(AudioCodec.GSM_EFR, -1, "GSM-EFR/8000", null);
38 assertEquals(AudioCodec.AMR, -1, "AMR/8000", null);
45 assertNull(AudioCodec.getCodec(128, "PCMU/8000", null));
46 assertNull(AudioCodec.getCodec(-1, "PCMU/8000", null));
47 assertNull(AudioCodec.getCodec(96, null, null));
50 assertEquals(AudioCodec.getCodec(0, null, null), 0, "PCMU/8000", null)
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionLexer.java 49 null, "','", "'default'", "'='", "'('", "')'", "'.'", "'['", "']'", "'+'",
54 "'this'", null, null, null, null, null, null, "'null'"
57 null, null, null, null, null, null, null, null, null, null, null, null,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
ConfigMatchTest.java 92 null, // country code
93 null, // network code
94 null, // language
95 null, // region
96 null, // smallest width dp
97 null, // width dp
98 null, // height dp
99 null, // screen size
100 null, // screen ratio
101 null, // screen orientatio
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
UriUtils.java 29 /** Checks whether two URI are equal, taking care of the case where either is null. */
31 if (uri1 == null && uri2 == null) {
34 if (uri1 == null || uri2 == null) {
40 /** Parses a string into a URI and returns null if the given string is null. */
42 if (uriString == null) {
43 return null;
48 /** Converts a URI into a string, returns null if the given URI is null. *
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
SelectionBuilderTest.java 28 assertEquals(null, new SelectionBuilder(null).build());
29 assertEquals(null, new SelectionBuilder("").build());
30 assertEquals(null, new SelectionBuilder("").addClause(null).build());
31 assertEquals(null, new SelectionBuilder(null).addClause("").build());
32 assertEquals(null, new SelectionBuilder(null).addClause("").addClause(null).build())
    [all...]
  /external/jdiff/src/jdiff/
APIDiff.java 17 public List packagesAdded = null; // PackageAPI[]
19 public List packagesRemoved = null; // PackageAPI[]
21 public List packagesChanged = null; // PackageDiff[]
33 oldAPIName_ = null;
34 newAPIName_ = null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 56 assertTrue(info.isValid("", null, null));
57 assertTrue(info.isValid("a b c", null, null));
58 assertTrue(info.isValid("@android foo bar", null, null));
63 assertTrue(info.isValid("", null, null));
64 assertTrue(info.isValid("a b c", null, null));
85 assertTrue(info.isValid(Integer.toString(Integer.MAX_VALUE), null, null)); local
104 assertTrue(info.isValid(Integer.toString(Integer.MAX_VALUE), null, null)); local
    [all...]
  /frameworks/base/docs/html/
gms_navtree_data.js 2 [ [ "com.google.android.gms", "reference/com/google/android/gms/package-summary.html", [ [ "Classes", null, [ [ "R", "reference/com/google/android/gms/R.html", null, null ], [ "R.attr", "reference/com/google/android/gms/R.attr.html", null, null ], [ "R.color", "reference/com/google/android/gms/R.color.html", null, null ], [ "R.drawable", "reference/com/google/android/gms/R.drawable.html", null, null ], [ "R.id", "reference/com/google/android/gms/R.id.html", null, null ], [ "R.integer", "reference/com/google/android/gms/R.integer.html", null, null ], [ "R.raw" (…)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
Loader.java 51 URL url =null;
53 while (url==null && loader!=null )
56 loader=(url==null&&checkParents)?loader.getParent():null;
59 loader=loadClass==null?null:loadClass.getClassLoader();
60 while (url==null && loader!=null )
63 loader=(url==null&&checkParents)?loader.getParent():null
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/null/
native_null.c 30 * For NULL window system,
37 #include "null/null_sw_winsys.h"
58 struct null_display *null = null_display(ndpy); local
62 configs = MALLOC(sizeof(*configs) * null->num_configs);
64 for (i = 0; i < null->num_configs; i++)
65 configs[i] = &null->configs[i];
67 *num_configs = null->num_configs;
83 struct null_display *null = null_display(ndpy); local
85 FREE(null->configs);
86 ndpy_uninit(&null->base)
99 struct null_display *null = null_display(ndpy); local
125 struct null_display *null = null_display(ndpy); local
150 struct null_display *null; local
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_object/d/
T_iget_object_1.java 20 public Object i1 = null;
21 protected Object p1 = null;
22 private Object pvt1 = null;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_object/d/
T_sget_object_1.java 20 public static Object i1 = null;
21 protected static Object p1 = null;
22 private static Object pvt1 = null;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 51 this.ruleMemo = null;
66 this.token = null;
89 this.text = null;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
VectorialPointValuePair.java 47 this.point = (point == null) ? null : point.clone();
48 this.value = (value == null) ? null : value.clone();
61 ((point == null) ? null : point.clone()) :
64 ((value == null) ? null : value.clone()) :
72 return (point == null) ? null : point.clone()
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.java 54 private Map map = null;
57 this(null);
66 if (id == null) {
67 throw new IllegalArgumentException("Id may not be null");
69 Object obj = null;
70 if (this.map != null) {
73 if (obj == null && this.parentContext != null) {
80 if (id == null) {
81 throw new IllegalArgumentException("Id may not be null");
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedWatch.emf.properties 25 //*[name()='entry'][1]/*/*[name()='build']/@href;null;null;\
26 //*[name()='entry'][1]/*/*[name()='build']/*[name()='releases']/*[@os='linux'][@ws='gtk'][@type='SDK']/text();null;null;\
27 //*[name()='entry'][1]/*/*[name()='build']/@type;null;null;\
47 # If you do NOT want to pass arguments to your executable, use the word "null" instead. This will NOT be passed to your script.
72 # simply pass in the executable as "null" to prevent any shell execution from occurring. For example:
74 # feedWatchActions=//*[name() = 'entry'][1]/*[name() = 'updated']/text(); null; null
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
TestUtils.java 45 null, null, null, null, null, null);
50 ImmutableSet.copyOf(interfaces), null, null, null, null, null, null)
    [all...]
  /art/test/800-smali/src/
Main.java 53 new Object[]{123}, null, 123));
55 testCases.add(new TestCase("b/17790197", "B17790197", "getInt", null, null, 100));
56 testCases.add(new TestCase("b/17978759", "B17978759", "test", null, new VerifyError(),
57 null));
59 new Object[]{100}, null, 100));
60 testCases.add(new TestCase("negLong", "negLong", "negLong", null, null, 122142L));
61 testCases.add(new TestCase("sameFieldNames", "sameFieldNames", "getInt", null, null, 7))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/drawable/
DrawableDescriptors.java 52 if (mDescriptor == null) {
71 if (nameToDescriptor == null) {
79 if (descriptor == null) {
91 "animation-list", "Animation List", "AnimationDrawable", null, //$NON-NLS-1$ //$NON-NLS-3$
95 xmlns, null, true /*mandatory*/);
100 "animated-rotate", "Animated Rotate", "AnimatedRotateDrawable", null, //$NON-NLS-1$ //$NON-NLS-3$
102 null, // tooltip
103 null, // sdk_url
104 xmlns, null, true);
108 "bitmap", "BitMap", "BitmapDrawable", null, //$NON-NLS-1$ //$NON-NLS-3
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSemanticPredicates.java 55 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false);
66 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false)
    [all...]
  /art/test/477-checker-bound-type/src/
Main.java 23 if (a != null) {
26 return null;
36 return null;
43 if (a == null) {
46 return null;
56 return null;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
CapabilitiesNewTest.java 48 {"canRedefineClasses", null},
49 {"canAddMethod", null},
50 {"canUnrestrictedlyRedefineClasses", null},
51 {"canPopFrames", null},
53 {"canGetSourceDebugExtension", null},
54 {"canRequestVMDeathEvent", null},
55 {"canSetDefaultStratum", null},
57 {"canRequestMonitorEvents", null},
59 {"canUseSourceNameFilters", null},
60 {"canGetConstantPool", null},
    [all...]
  /external/proguard/src/proguard/util/
ObjectUtil.java 31 * @param object1 the first object, may be null.
32 * @param object2 the second object, may be null.
37 return object1 == null ?
38 object2 == null :
44 * Returns the hash code of the given object, or 0 if it is null.
45 * @param object the object, may be null.
50 return object == null ? 0 : object.hashCode();
56 * @param object1 the first object, may be null.
57 * @param object2 the second object, may be null.
63 return object1 == null
    [all...]
  /frameworks/data-binding/library/src/main/java/android/databinding/
BaseObservable.java 31 if (mCallbacks == null) {
39 if (mCallbacks != null) {
48 if (mCallbacks != null) {
49 mCallbacks.notifyCallbacks(this, 0, null);
61 if (mCallbacks != null) {
62 mCallbacks.notifyCallbacks(this, fieldId, null);

Completed in 987 milliseconds

12 3 4 5 6 7 8 91011>>