HomeSort by relevance Sort by last modified time
    Searched defs:null (Results 176 - 200 of 950) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tests/tests/telecom/src/android/telecom/cts/
IncomingCallTest.java 45 setupConnectionService(null, FLAG_REGISTER | FLAG_ENABLE);
46 addAndVerifyNewIncomingCall(createTestNumber(), null); local
57 setupConnectionService(null, FLAG_REGISTER | FLAG_ENABLE);
59 addAndVerifyNewIncomingCall(testNumber, null);
98 setupConnectionService(null, FLAG_REGISTER);
102 addAndVerifyNewIncomingCall(createTestNumber(), null); local
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/playback/
WatchNextAdapter.java 39 if (entity == null) {
69 null, local
70 null); local
98 if (movie == null || movie.getWatchNextId() < 1L) {
108 null,
109 null);
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServer.java 75 sslContext.init(kmf.getKeyManagers(), null, null); local
156 if (sss != null) {
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader4.java 53 null,
54 null,
68 if(savedInstanceState != null && savedInstanceState.containsKey("lastIndexItem")){
92 menu.add(0, 0, R.string.menu_option_start, null);
93 menu.add(0, 1, R.string.menu_option_stop, null);
94 menu.add(0, 2, R.string.menu_option_add, null);
95 menu.add(0, 3, R.string.menu_option_delete, null);
96 menu.add(0, 4, R.string.menu_option_update, null);
114 showAlert(null, "You clicked 'start'!", "ok", null, false, null)
133 getContentResolver().delete(RssContentProvider.CONTENT_URI.addId(itemID), null); local
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
SignatureSourcer.java 73 * signature. Initially null.
79 * signature. Initially null.
85 * of <em>this</em> signature. Initially empty but not null.
117 * Will be non-null if a return type was processed
145 * Will be non-null if a super class was processed
184 assert mSuperClass == null; local
206 assert mReturnType == null; local
  /external/annotation-tools/scene-lib/src/annotations/
Annotation.java 39 assert fieldValues != null; local
40 assert fieldValues.keySet() != null;
41 assert def != null; local
42 assert def.fieldTypes != null; local
43 assert def.fieldTypes.keySet() != null;
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorKey.java 105 if (null == attrDef)
111 + " element!", null); local
121 XSLTErrorResources.ER_INVALID_KEY_CALL, null), null); local
138 if (null != defVal)
152 attrDef.getName() }), null); local
  /external/autotest/frontend/client/src/autotest/common/
JsonRpcProxy.java 46 assert defaultBaseUrl != null; local
78 if (params != null) {
92 if (error == null) {
94 callback.onError(null);
97 else if (error.isObject() != null) {
  /external/autotest/frontend/client/src/autotest/common/ui/
TableActionsPanel.java 65 assert csvListener != null; local
  /external/boringssl/src/crypto/pkcs8/
p5_pbev2.c 124 return NULL;
155 EVP_CipherInit_ex(ctx, cipher, NULL /* engine */, key, iv, enc);
231 if (cipher == NULL) {
283 // hmacWithSHA1 has a NULL parameter.
284 CBS null; local
285 if (!CBS_get_asn1(&alg_id, &null, CBS_ASN1_NULL) ||
286 CBS_len(&null) != 0 ||
  /external/clang/test/SemaCXX/
nullptr.cpp 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify -std=c++11 -ffreestanding -Wno-null-conversion %s
13 nullptr_t f(nullptr_t null)
16 null = nullptr;
18 p = null;
20 pi = null;
21 null = 0;
23 pm = null;
25 pf = null;
27 pmf = null;
34 (void)(null == nullptr)
186 constexpr int null() { return 0; } function in namespace:null_pointer_constant
    [all...]
  /external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/
ProducerFactoryTest.java 175 new SimpleProducerModule_StrFactory(MoreExecutors.directExecutor(), null); local
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseUiDevice.java 57 POWER_ON.perform(getContext().getDriver().getInjector(), null); local
93 if (screenshot == null) {
96 BufferedOutputStream bos = null;
105 if (bos != null) {
  /external/elfutils/libebl/
eblwstrtab.c 80 struct Ebl_WStrent null; member in struct:Ebl_WStrtab
101 if (ret != NULL)
106 ret->null.len = 1;
107 ret->null.string = L"";
122 if (newmem == NULL)
139 while (mb != NULL)
168 return NULL;
177 newstr->next = NULL;
178 newstr->left = NULL;
179 newstr->right = NULL;
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapAsMapGetTester.java 77 assertTrue(result.add(null));
78 assertTrue(multimap().containsEntry(sampleKeys().e0, null)); local
85 assertFalse(result.remove(null));
93 result.add(null);
MultimapEntriesTester.java 54 Helpers.mapEntry((K) null, getValueForNullKey()));
59 assertFalse(multimap().entries().contains(Helpers.mapEntry(null, sampleValues().e0)));
67 Helpers.mapEntry(getKeyForNullValue(), (V) null));
73 Helpers.mapEntry(sampleKeys().e0, null))); local
MultimapPutIterableTester.java 84 assertTrue(multimap().putAll(sampleKeys().e0, Lists.newArrayList(sampleValues().e3, null))); local
85 assertGet(sampleKeys().e0, sampleValues().e0, sampleValues().e3, null); local
90 assertTrue(multimap().putAll(sampleKeys().e3, Lists.newArrayList(sampleValues().e3, null))); local
91 assertGet(sampleKeys().e3, sampleValues().e3, null); local
96 multimap().putAll(sampleKeys().e1, Lists.newArrayList((V) null));
107 multimap().putAll(sampleKeys().e3, Lists.newArrayList(sampleValues().e3, null)); local
115 // Be extra thorough in case internal state was corrupted by the expected null.
129 multimap().putAll(sampleKeys().e3, Lists.newArrayList(null, sampleValues().e3));
135 * In principle, a Multimap implementation could add e3 first before failing on the null. But
140 // Be extra thorough in case internal state was corrupted by the expected null
    [all...]
MultimapRemoveEntryTester.java 68 assertTrue(multimap().remove(null, getValueForNullKey()));
70 expectMissing(Helpers.mapEntry((K) null, getValueForNullKey()));
79 assertTrue(multimap().remove(getKeyForNullValue(), null)); local
81 expectMissing(Helpers.mapEntry(getKeyForNullValue(), (V) null));
87 assertFalse(multimap().remove(null, sampleValues().e0));
93 assertFalse(multimap().remove(sampleKeys().e0, null)); local
100 multimap().remove(sampleKeys().e0, null); local
111 multimap().remove(null, sampleValues().e0);
172 Collection<V> collection = null;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapEntrySetTester.java 77 .entrySet().contains(Helpers.mapEntry(null, samples.e0.getValue())));
85 .entrySet().contains(Helpers.mapEntry(null, getValueForNullKey())));
91 .entrySet().contains(Helpers.mapEntry(samples.e0.getKey(), null))); local
99 .entrySet().contains(Helpers.mapEntry(getKeyForNullValue(), null))); local
MapEqualsTester.java 62 entries.add(entry(null, samples.e3.getValue()));
66 + " even if some keys are null.",
73 entries.add(entry(null, samples.e3.getValue()));
77 "Two Maps should not be equal if exactly one of them contains a null "
86 entries.add(entry(samples.e3.getKey(), null)); local
90 + " even if some values are null.",
97 entries.add(entry(samples.e3.getKey(), null)); local
101 "Two Maps should not be equal if exactly one of them contains a null "
  /external/icu/android_icu4j/src/main/java/android/icu/number/
CompactNotation.java 43 compactCustomData = null;
48 compactStyle = null;
75 if (notation.compactStyle != null) {
80 if (buildReference != null) {
86 precomputedMods = null;
108 assert micros.rounding != null; local
126 if (patternString == null) {
129 } else if (precomputedMods != null) {
ScientificNotation.java 140 precomputedMods = null;
147 assert micros.rounding != null; local
165 if (precomputedMods != null && exponent >= -12 && exponent <= 12) {
168 } else if (precomputedMods != null) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestMultipleParagraphs.java 97 bidi.setPara(text, Bidi.LTR, null);
125 bidi.setPara(src, Bidi.LTR, null);
147 bidi.setPara(src, paraLevels[k], null);
180 bidi.setPara(src, Bidi.LEVEL_DEFAULT_LTR, null);
210 bidi.setPara(src, Bidi.RTL, null);
264 bidi.setPara(src, Bidi.RTL, null);
324 bidi.setPara(src, Bidi.LEVEL_DEFAULT_RTL, null);
341 Bidi.LEVEL_DEFAULT_RTL, null); local
362 bidi.setPara(src, Bidi.RTL, null);
395 bidi.setPara(src, gotLevel, null);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
MutablePatternModifierTest.java 37 null);
39 mod.setNumberProperties(false, null);
45 mod.setNumberProperties(true, null);
54 mod.setNumberProperties(false, null);
60 mod.setNumberProperties(true, null);
73 mod.setSymbols(DecimalFormatSymbols.getInstance(ULocale.ENGLISH), null, UnitWidth.SHORT, null); local
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationTailoring.java 36 if(baseSettings != null) {
38 assert(baseSettings.readOnly().reorderTable == null);
47 if(ownedData == null) {
56 assert rules == null && rulesResource == null; local
61 assert rules == null && rulesResource == null; local
65 if (rules != null) {
68 if (rulesResource != null) {
105 // The locale is null (C++: bogus) when built from rules or constructed from a binary blob
    [all...]

Completed in 2957 milliseconds

1 2 3 4 5 6 78 91011>>