HomeSort by relevance Sort by last modified time
    Searched defs:nv (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/nist-sip/java/gov/nist/javax/sip/address/
TelephoneNumber.java 156 NameValue nv = new NameValue(POSTDIAL, p); local
157 parameters.set(nv);
165 NameValue nv = new NameValue(name, value); local
166 parameters.set(nv);
234 NameValue nv = new NameValue(name, value); local
235 this.parameters.set(nv);
SipUri.java 553 NameValue nv = new NameValue(name, value); local
554 uriParms.set(nv);
588 NameValue nv = new NameValue(name, value); local
589 uriParms.set(nv);
878 NameValue nv = new NameValue(name, value); local
879 qheaders.set(nv);
979 NameValue nv = new NameValue("ttl", Integer.valueOf(ttl)); local
980 uriParms.set(nv);
1001 NameValue nv = new NameValue(TRANSPORT, transport.toLowerCase()); local
1002 uriParms.set(nv);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 106 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); local
107 if (nv == null) {
108 nv = new NameValue(name, value);
126 nv.setQuotedValue();
134 super.setParameter(nv);
136 nv.setValueAsObject(value);
259 NameValue nv = new NameValue(ParameterNames.URI, uri); local
260 nv.setQuotedValue();
261 super.parameters.set(nv);
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 328 char **nv; local
334 nv = frame->syn_reply.nv;
341 nv = frame->headers.nv;
360 http_create_response(proxy, nv);
368 http_create_response(proxy, nv);
842 spdy_request(const char **nv,
892 ret = spdylay_submit_request(connection->session, 0, nv, &post_data, proxy);
895 ret = spdylay_submit_request(connection->session, 0, nv, NULL, proxy)
    [all...]
mhd2spdy_structures.h 140 const char **nv; member in struct:SPDY_Headers
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 103 public void set(NameValue nv) {
104 this.nameValueMap.put(nv.getName().toLowerCase(), nv); local
152 Collection nv = this.getNameValue(name.toLowerCase()); local
153 if (nv != null)
154 return nv;
NameValueList.java 123 public void set(NameValue nv) {
124 this.hmap.put(nv.getName().toLowerCase(), nv); local
173 NameValue nv = this.getNameValue(name.toLowerCase()); local
174 if (nv != null)
175 return nv.getValueAsObject();
  /libcore/ojluni/src/main/java/sun/net/www/
MessageHeader.java 349 String[] nv = new String[nkeys + 4]; local
353 System.arraycopy(values, 0, nv, 0, nkeys);
355 values = nv;
  /external/curl/src/
tool_setopt.c 43 #define NV(e) {#e, e}
48 NV(CURLPROXY_HTTP),
49 NV(CURLPROXY_HTTP_1_0),
50 NV(CURLPROXY_HTTPS),
51 NV(CURLPROXY_SOCKS4),
52 NV(CURLPROXY_SOCKS5),
53 NV(CURLPROXY_SOCKS4A),
54 NV(CURLPROXY_SOCKS5_HOSTNAME),
59 NV(CURLPROXY_SOCKS4),
60 NV(CURLPROXY_SOCKS5)
278 const NameValue *nv = NULL; local
313 const NameValue *nv = NULL; local
356 const NameValueUnsigned *nv = NULL; local
624 const NameValue *nv = NULL; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 137 Node *nv, *nw; local
146 nv = ei.getNode();
147 v = nv->tag;
173 nv = &BasicBlock::get(vert[v])->dom;
174 if (nw->getGraph() && !nv->getGraph()) {
176 nw->attach(nv, Graph::Edge::TREE);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.c 141 nouveau_transfer_staging(struct nouveau_context *nv,
147 if (!nv->push_data)
156 nouveau_mm_allocate(nv->screen->mm_GART, size, &tx->bo, &tx->offset);
171 nouveau_transfer_read(struct nouveau_context *nv, struct nouveau_transfer *tx)
177 NOUVEAU_DRV_STAT(nv->screen, buf_read_bytes_staging_vid, size);
179 nv->copy_data(nv, tx->bo, tx->offset, NOUVEAU_BO_GART,
182 if (nouveau_bo_wait(tx->bo, NOUVEAU_BO_RD, nv->client))
192 nouveau_transfer_write(struct nouveau_context *nv, struct nouveau_transfer *tx,
206 NOUVEAU_DRV_STAT(nv->screen, buf_write_bytes_staging_vid, size)
382 struct nouveau_context *nv = nouveau_context(pipe); local
535 struct nouveau_context *nv = nouveau_context(pipe); local
847 struct nouveau_context *nv = nouveau_context(pipe); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 479 NameValueList nv = null; local
487 nv = tel_parameters();
488 tn.setParameters(nv);
503 NameValueList nv = null; local
515 nv = tel_parameters();
516 tn.setParameters(nv);
538 NameValue nv; local
544 nv = phone_context();
549 nv = new NameValue( pname, value, false );
551 nv = new NameValue( pname, "", true );// flag para
    [all...]
  /external/skia/samplecode/
SamplePatch.cpp 81 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv,
85 const int BR = TR + nv;
89 SkScalar v = SkIntToScalar(iv) / nv;
100 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0;
102 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0;
110 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
112 if (nu < 1 || nv < 1) {
116 int i, npts = (nu + nv) * 2;
120 SkPoint* edge2 = edge1 + nv;
125 eval_patch_edge(fPts + 3, edge1, nv);
252 const int nv = 10; variable
    [all...]
  /external/skqp/samplecode/
SamplePatch.cpp 81 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv,
85 const int BR = TR + nv;
89 SkScalar v = SkIntToScalar(iv) / nv;
100 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0;
102 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0;
110 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
112 if (nu < 1 || nv < 1) {
116 int i, npts = (nu + nv) * 2;
120 SkPoint* edge2 = edge1 + nv;
125 eval_patch_edge(fPts + 3, edge1, nv);
252 const int nv = 10; variable
    [all...]
  /art/test/ti-stress/
stress.cc 479 jobject nv = new_value.l; local
480 if (nv == nullptr) {
483 jclass nv_klass = env->GetObjectClass(nv);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 66 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null; local
67 return nv;
95 final NodeVector nv = getVector(); local
96 return (nv != null);
119 NodeVector nv = getVector(); local
120 if (nv != null) {
553 final NodeVector nv; local
555 nv = (NodeVector) vec.clone();
562 newCache.setVector(nv);
565 vec = nv;
597 NodeVector nv = cache.getVector(); local
    [all...]
  /external/flac/libFLAC/
metadata_object.c 1337 const size_t nv = strlen(field_value); local
1362 const size_t nv = entry.length-nn-1; \/* -1 for the '=' *\/ local
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_new_connection.c 193 static void check_gzip(struct Request *req, char **nv)
197 for(i = 0; nv[i]; i += 2) {
198 if(strcmp("content-encoding", nv[i]) == 0) {
199 gzip = strcmp("gzip", nv[i+1]) == 0;
311 char **nv; local
317 nv = frame->syn_stream.nv;
326 for(i = 0; nv[i]; i += 2) {
327 spdylay_printf(" %s: %s\n", nv[i], nv[i+1])
339 char **nv; local
598 const char *nv[15]; local
    [all...]
test_notls.c 172 static void check_gzip(struct Request *req, char **nv)
176 for(i = 0; nv[i]; i += 2) {
177 if(strcmp("content-encoding", nv[i]) == 0) {
178 gzip = strcmp("gzip", nv[i+1]) == 0;
308 char **nv; local
314 nv = frame->syn_stream.nv;
323 for(i = 0; nv[i]; i += 2) {
324 printf(" %s: %s\n", nv[i], nv[i+1])
336 char **nv; local
550 const char *nv[15]; local
    [all...]
test_request_response.c 175 static void check_gzip(struct Request *req, char **nv)
179 for(i = 0; nv[i]; i += 2) {
180 if(strcmp("content-encoding", nv[i]) == 0) {
181 gzip = strcmp("gzip", nv[i+1]) == 0;
293 char **nv; local
299 nv = frame->syn_stream.nv;
308 for(i = 0; nv[i]; i += 2) {
309 printf(" %s: %s\n", nv[i], nv[i+1])
321 char **nv; local
586 const char *nv[15]; local
    [all...]
  /external/opencv/cxcore/src/
cxsvd.cpp 248 int nv = n; local
331 update_v = vT && n1 > n - nv;
433 for( i = n1; i < nv; i++, vT += ldvT )
442 int lh = nv - i;
643 int nv = n; local
729 update_v = vT && n1 > n - nv;
830 for( i = n1; i < nv; i++, vT += ldvT )
839 int lh = nv - i;
    [all...]
  /external/syslinux/com32/cmenu/libmenu/
menu.c 984 int ans, i, nv; local
986 nv = calc_visible(menu, 0);
987 if (nv <= menu->menuheight)
1000 int ans, i, nv; local
1002 nv = calc_visible(menu, 0);
1003 if (nv <= menu->menuheight)
1007 nv = calc_visible(menu, curr); // Already nv of them are visible
1009 for (i = 0; i < menu->menuheight - nv; i++)
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
opc2c.c 766 int nv = opcodes[i]->nvaries++; local
767 if (nv)
770 (nv + 1) * sizeof (VaryRef));
773 (VaryRef *) malloc ((nv + 1) * sizeof (VaryRef));
775 opcodes[i]->vary[nv].varyno = v;
776 opcodes[i]->vary[nv].byte = j;
777 opcodes[i]->vary[nv].shift = 8 - b - vary[v]->nlen;
779 vary[v]->name, opcodes[i]->vary[nv].shift);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lparser.c 1140 struct LHS_assign nv; local
1141 nv.prev = lh;
1142 suffixedexp(ls, &nv.v);
1143 if (nv.v.k != VINDEXED)
1144 check_conflict(ls, lh, &nv.v);
1147 assignment(ls, &nv, nvars+1);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterTest.java 2382 double nv = UCharacter.getUnicodeNumericValue(c); local
    [all...]

Completed in 2833 milliseconds

12 3 4