HomeSort by relevance Sort by last modified time
    Searched defs:ne (Results 1 - 25 of 32) sorted by null

1 2

  /cts/tests/tests/os/src/android/os/cts/
BadParcelableExceptionTest.java 42 BadParcelableException ne = null; local
46 ne = new BadParcelableException("BadParcelableException");
47 throw ne;
49 assertSame(ne, e);
60 ne = new BadParcelableException(new Exception());
61 throw ne;
63 assertSame(ne, e);
DeadObjectExceptionTest.java 33 DeadObjectException ne = null; local
37 ne = new DeadObjectException();
38 throw ne;
40 assertSame(ne, e);
ParcelFormatExceptionTest.java 42 ParcelFormatException ne = null; local
46 ne = new ParcelFormatException();
47 throw ne;
49 assertSame(ne, e);
60 ne = new ParcelFormatException("ParcelFormatException");
61 throw ne;
63 assertSame(ne, e);
  /cts/tests/tests/view/src/android/view/cts/
InflateExceptionTest.java 54 InflateException ne = null; local
58 ne = new InflateException();
59 throw ne;
61 assertSame(ne, e);
75 ne = new InflateException(detailMessage, throwable);
76 throw ne;
78 assertSame(ne, e);
89 ne = new InflateException(detailMessage);
90 throw ne;
92 assertSame(ne, e)
    [all...]
SurfaceHolder_BadSurfaceTypeExceptionTest.java 42 BadSurfaceTypeException ne = null; local
46 ne = new BadSurfaceTypeException();
47 throw ne;
49 assertSame(ne, e);
61 ne = new BadSurfaceTypeException(name);
62 throw ne;
64 assertSame(ne, e);
  /cts/tests/tests/content/src/android/content/res/cts/
Resources_NotFoundExceptionTest.java 43 NotFoundException ne = null; local
47 ne = new NotFoundException();
48 throw ne;
51 assertSame(ne, e);
65 ne = new NotFoundException(MESSAGE);
66 throw ne;
69 assertSame(ne, e);
  /external/openssl/crypto/x509/
x509_obj.c 68 X509_NAME_ENTRY *ne; local
105 ne=sk_X509_NAME_ENTRY_value(a->entries,i);
106 n=OBJ_obj2nid(ne->object);
109 i2t_ASN1_OBJECT(tmp_buf,sizeof(tmp_buf),ne->object);
114 type=ne->value->type;
115 num=ne->value->length;
116 q=ne->value->data;
178 q=ne->value->data;
x509name.c 112 X509_NAME_ENTRY *ne; local
122 ne=sk_X509_NAME_ENTRY_value(sk,lastpos);
123 if (OBJ_cmp(ne->object,obj) == 0)
177 X509_NAME_ENTRY *ne; local
179 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len);
180 if(!ne) return 0;
181 ret = X509_NAME_add_entry(name, ne, loc, set);
182 X509_NAME_ENTRY_free(ne);
189 X509_NAME_ENTRY *ne; local
191 ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len)
201 X509_NAME_ENTRY *ne; local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
canittst.cpp 261 const UHashElement *ne = NULL; local
264 ne = col->nextElement(el);
266 while (ne != NULL) {
268 UnicodeString *item = (UnicodeString *)(ne->value.pointer);
270 ne = col->nextElement(el);
  /external/icu4c/test/intltest/
canittst.cpp 265 const UHashElement *ne = NULL; local
268 ne = col->nextElement(el);
270 while (ne != NULL) {
272 UnicodeString *item = (UnicodeString *)(ne->value.pointer);
274 ne = col->nextElement(el);
  /external/openssl/crypto/x509v3/
v3_alt.c 347 X509_NAME_ENTRY *ne; local
364 ne = X509_NAME_get_entry(nm, i);
365 email = M_ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne));
369 X509_NAME_ENTRY_free(ne);
v3_crld.c 591 X509_NAME_ENTRY *ne; local
600 ne = sk_X509_NAME_ENTRY_value(frag, i);
601 if (!X509_NAME_add_entry(dpn->dpname, ne, -1, i ? 0 : 1))
v3_utl.c 520 X509_NAME_ENTRY *ne; local
529 ne = X509_NAME_get_entry(name, i);
530 email = X509_NAME_ENTRY_get_data(ne);
  /external/chromium/third_party/icu/source/common/
caniter.cpp 292 const UHashElement *ne = NULL; local
317 ne = subpermute.nextElement(el);
318 while (ne != NULL) {
319 UnicodeString *permRes = (UnicodeString *)(ne->value.pointer);
326 chStr->append(*permRes); //*((UnicodeString *)(ne->value.pointer));
329 ne = subpermute.nextElement(el);
357 const UHashElement *ne = NULL; local
360 ne = basic.nextElement(el);
362 while (ne != NULL) {
364 UnicodeString item = *((UnicodeString *)(ne->value.pointer))
462 const UHashElement *ne = remainder.nextElement(el); local
    [all...]
locmap.c 394 static const ILcidPosixElement ne[] = { variable
395 {0x61, "ne"},
656 ILCID_POSIX_MAP(ne), /* ne Nepali 0x61 */
  /external/icu4c/common/
caniter.cpp 294 const UHashElement *ne = NULL; local
319 ne = subpermute.nextElement(el);
320 while (ne != NULL) {
321 UnicodeString *permRes = (UnicodeString *)(ne->value.pointer);
328 chStr->append(*permRes); //*((UnicodeString *)(ne->value.pointer));
331 ne = subpermute.nextElement(el);
359 const UHashElement *ne = NULL; local
362 ne = basic.nextElement(el);
364 while (ne != NULL) {
366 UnicodeString item = *((UnicodeString *)(ne->value.pointer))
464 const UHashElement *ne = remainder.nextElement(el); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
CommandQueue.java 103 NotificationQueueEntry ne = new NotificationQueueEntry(); local
104 ne.key = key;
105 ne.notification = notification;
106 mHandler.obtainMessage(MSG_ADD_NOTIFICATION, 0, 0, ne).sendToTarget();
112 NotificationQueueEntry ne = new NotificationQueueEntry(); local
113 ne.key = key;
114 ne.notification = notification;
115 mHandler.obtainMessage(MSG_UPDATE_NOTIFICATION, 0, 0, ne).sendToTarget();
177 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj; local
178 mCallbacks.addNotification(ne.key, ne.notification)
182 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj; local
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.cpp 397 const namespace_entry& ne = namespaces.itemAt(i); local
398 if (ne.uri == str) {
399 str = ne.prefix;
    [all...]
  /external/v8/src/arm/
builtins-arm.cc 309 __ b(ne, &argc_one_or_more);
330 __ b(ne, &argc_two_or_more);
334 __ b(ne, call_generic_code);
426 __ Assert(ne, "Unexpected initial map for Array function");
461 __ Assert(ne, "Unexpected initial map for Array function");
492 __ b(ne, &non_function_call);
548 __ b(ne, &rt_call);
867 __ b(ne, &loop);
1050 RelocInfo::CODE_TARGET, ne); local
    [all...]
assembler-arm.h 256 ne = 1 << 28, // Z clear not equal. enumerator in enum:v8::internal::Condition
    [all...]
  /frameworks/base/tools/aidl/
generate_java.cpp 176 NewExpression* ne = new NewExpression(NAMES.Find(proxyType)); local
177 ne->arguments.push_back(obj);
178 m->statements->Add(new ReturnStatement(ne));
  /external/chromium/third_party/icu/source/test/cintltst/
crestst.c 74 /* "NE" or "ne" means "does not exist" */
81 { "ne", U_USING_DEFAULT_WARNING, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } }
295 actual_bundle = 0; /* ne -> default */
469 UResourceBundle *idna_rules, *casing, *te_IN, *ne, *item; local
577 * verify that ures_open("ne") finds the root bundle but
578 * ures_openDirect("ne") does not
581 ne=ures_open("testdata", "ne", &errorCode);
583 log_data_err("ures_open(\"ne\") failed (expected to get root): %s\n", u_errorName(errorCode))
    [all...]
  /external/icu4c/test/cintltst/
crestst.c 74 /* "NE" or "ne" means "does not exist" */
81 { "ne", U_USING_DEFAULT_WARNING, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } }
298 actual_bundle = 0; /* ne -> default */
472 UResourceBundle *idna_rules, *casing, *te_IN, *ne, *item; local
580 * verify that ures_open("ne") finds the root bundle but
581 * ures_openDirect("ne") does not
584 ne=ures_open("testdata", "ne", &errorCode);
586 log_data_err("ures_open(\"ne\") failed (expected to get root): %s\n", u_errorName(errorCode))
    [all...]
  /sdk/emulator/gps/
gps_qemu.c 684 int ne, nevents; local
693 for (ne = 0; ne < nevents; ne++) {
694 if ((events[ne].events & (EPOLLERR|EPOLLHUP)) != 0) {
698 if ((events[ne].events & EPOLLIN) != 0) {
699 int fd = events[ne].data.fd;
  /external/openssl/apps/
ca.c 1691 X509_NAME_ENTRY *ne; local
2257 X509_NAME_ENTRY *ne=NULL; local
    [all...]

Completed in 1585 milliseconds

1 2