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

1 2

  /cts/tests/tests/os/src/android/os/cts/
BadParcelableExceptionTest.java 23 BadParcelableException ne = null; local
27 ne = new BadParcelableException("BadParcelableException");
28 throw ne;
30 assertSame(ne, e);
41 ne = new BadParcelableException(new Exception());
42 throw ne;
44 assertSame(ne, e);
DeadObjectExceptionTest.java 23 DeadObjectException ne = null; local
27 ne = new DeadObjectException();
28 throw ne;
30 assertSame(ne, e);
ParcelFormatExceptionTest.java 23 ParcelFormatException ne = null; local
27 ne = new ParcelFormatException();
28 throw ne;
30 assertSame(ne, e);
41 ne = new ParcelFormatException("ParcelFormatException");
42 throw ne;
44 assertSame(ne, e);
  /cts/tests/tests/view/src/android/view/cts/
InflateExceptionTest.java 23 InflateException ne = null; local
27 ne = new InflateException();
28 throw ne;
30 assertSame(ne, e);
44 ne = new InflateException(detailMessage, throwable);
45 throw ne;
47 assertSame(ne, e);
58 ne = new InflateException(detailMessage);
59 throw ne;
61 assertSame(ne, e)
    [all...]
SurfaceHolder_BadSurfaceTypeExceptionTest.java 23 BadSurfaceTypeException ne = null; local
27 ne = new BadSurfaceTypeException();
28 throw ne;
30 assertSame(ne, e);
42 ne = new BadSurfaceTypeException(name);
43 throw ne;
45 assertSame(ne, e);
  /cts/tests/tests/content/src/android/content/res/cts/
Resources_NotFoundExceptionTest.java 26 NotFoundException ne = null; local
30 ne = new NotFoundException();
31 throw ne;
34 assertSame(ne, e);
48 ne = new NotFoundException(MESSAGE);
49 throw ne;
52 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/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/icu4c/common/
caniter.cpp 296 const UHashElement *ne = NULL; local
321 ne = subpermute.nextElement(el);
322 while (ne != NULL) {
323 UnicodeString *permRes = (UnicodeString *)(ne->value.pointer);
330 chStr->append(*permRes); //*((UnicodeString *)(ne->value.pointer));
333 ne = subpermute.nextElement(el);
361 const UHashElement *ne = NULL; local
364 ne = basic.nextElement(el);
366 while (ne != NULL) {
368 UnicodeString item = *((UnicodeString *)(ne->value.pointer))
467 const UHashElement *ne = remainder.nextElement(el); local
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.cpp 404 const namespace_entry& ne = namespaces.itemAt(i); local
405 if (ne.uri == str) {
406 str = ne.prefix;
    [all...]
  /external/dhcpcd/
configure.c 115 char **ne, *eq; local
120 ne = *env;
125 if (strncmp(ne[j] + strlen(prefix) + 1,
128 free(ne[j]);
129 ne[j] = make_var(prefix, config[i]);
135 ne = xrealloc(ne, sizeof(char *) * (j + 1));
136 ne[j - 1] = make_var(prefix, config[i]);
140 *env = ne;
  /external/libsepol/src/
conditional.c 346 cond_expr_t *ne, *e; local
359 ne = NULL;
364 ne = e;
368 if (ne) {
369 ne->next = NULL;
370 } else { /* ne should never be NULL */
  /external/llvm/include/llvm/CodeGen/PBQP/
Graph.h 132 EdgeEntry &ne = getEdge(edgeItr); local
133 NodeEntry &n1 = getNode(ne.getNode1());
134 NodeEntry &n2 = getNode(ne.getNode2());
136 assert((n1.getCosts().getLength() == ne.getCosts().getRows()) &&
137 (n2.getCosts().getLength() == ne.getCosts().getCols()) &&
139 ne.setNode1AEItr(n1.addEdge(edgeItr));
140 ne.setNode2AEItr(n2.addEdge(edgeItr));
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 139 NewExpression* ne = new NewExpression(NAMES.Find(proxyType)); local
140 ne->arguments.push_back(obj);
141 m->statements->Add(new ReturnStatement(ne));
  /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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
CommandQueue.java 126 NotificationQueueEntry ne = new NotificationQueueEntry(); local
127 ne.key = key;
128 ne.notification = notification;
129 mHandler.obtainMessage(MSG_ADD_NOTIFICATION, 0, 0, ne).sendToTarget();
135 NotificationQueueEntry ne = new NotificationQueueEntry(); local
136 ne.key = key;
137 ne.notification = notification;
138 mHandler.obtainMessage(MSG_UPDATE_NOTIFICATION, 0, 0, ne).sendToTarget();
266 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj; local
267 mCallbacks.addNotification(ne.key, ne.notification)
271 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj; local
    [all...]
  /device/generic/goldfish/gps/
gps_qemu.c 698 int ne, nevents; local
707 for (ne = 0; ne < nevents; ne++) {
708 if ((events[ne].events & (EPOLLERR|EPOLLHUP)) != 0) {
712 if ((events[ne].events & EPOLLIN) != 0) {
713 int fd = events[ne].data.fd;
  /external/openssl/apps/
ca.c 1715 X509_NAME_ENTRY *ne; local
2282 X509_NAME_ENTRY *ne=NULL; local
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupport_wrapPregenerated.c 108 const char* ne = nb; local
109 while (!equiv && *ne) {
110 for (nb = ne; *ne; ++ne) {
111 if (*ne == '|') break;
113 equiv = SWIG_TypeNameComp(nb, ne, tb, te) == 0;
114 if (*ne) ++ne;
  /external/opencv/cvaux/include/
cvaux.h 321 int* ne; member in struct:CvCliqueFinder
    [all...]
  /external/v8/src/arm/
constants-arm.h 123 ne = 1 << 28, // Z clear Not equal. enumerator in enum:v8::internal::Condition
149 return static_cast<Condition>(cond ^ ne);

Completed in 1966 milliseconds

1 2