HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 51 - 75 of 690) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieSpec.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
62 this.attribHandlerMap = new HashMap<String, CookieAttributeHandler>(10);
73 this.attribHandlerMap.put(name, handler);
85 return this.attribHandlerMap.get(name);
107 return this.attribHandlerMap.values();
  /external/apache-http/src/org/apache/http/impl/io/
HttpRequestParser.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
62 this.requestFactory = requestFactory;
63 this.lineBuf = new CharArrayBuffer(128);
70 this.lineBuf.clear();
71 int i = sessionBuffer.readLine(this.lineBuf);
75 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
76 RequestLine requestline = this.lineParser.parseRequestLine(this.lineBuf, cursor)
    [all...]
HttpResponseParser.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
62 this.responseFactory = responseFactory;
63 this.lineBuf = new CharArrayBuffer(128);
70 this.lineBuf.clear();
71 int i = sessionBuffer.readLine(this.lineBuf);
76 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
77 StatusLine statusline = lineParser.parseStatusLine(this.lineBuf, cursor)
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
52 this(null);
57 this.parentContext = parentContext;
65 if (this.map != null) {
66 obj = this.map.get(id);
68 if (obj == null && this.parentContext != null) {
69 obj = this.parentContext.getAttribute(id)
    [all...]
BasicHttpProcessor.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
68 if (this.requestInterceptors == null) {
69 this.requestInterceptors = new ArrayList();
71 this.requestInterceptors.add(itcp);
84 if (this.requestInterceptors == null) {
88 this.requestInterceptors = new ArrayList();
90 this.requestInterceptors.add(index, itcp)
    [all...]
DefaultedHttpContext.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
54 this.local = local;
55 this.defaults = defaults;
59 Object obj = this.local.getAttribute(id);
61 return this.defaults.getAttribute(id);
68 return this.local.removeAttribute(id);
72 this.local.setAttribute(id, obj)
    [all...]
  /external/blktrace/btt/
devmap.c 6 * This program is free software; you can redistribute it and/or modify
11 * This program is distributed in the hope that it will be useful,
17 * along with this program; if not, write to the Free Software
50 char this[128]; local
53 sprintf(this, "%u,%u", MAJOR(device), MINOR(device));
57 if (!strcmp(this, dmp->devno))
dip_rb.c 6 * This program is free software; you can redistribute it and/or modify
11 * This program is distributed in the hope that it will be useful,
17 * along with this program; if not, write to the Free Software
68 void (*fnc)(struct io *iop, struct io *this),
72 struct io *this = rb_entry(n, struct io, rb_node); local
74 __u64 this_s = BIT_START(this), this_e = BIT_END(this);
77 if (fnc) fnc(iop, this);
79 list_add_tail(&this->f_head, head);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERSet.java 26 this.addObject(obj);
35 this(v, true);
46 this.addObject(a[i]);
49 this.sort();
61 this.addObject(v.get(i));
66 this.sort();
74 * be used for structured types, this varies slightly from the
85 Enumeration e = this.getObjects();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
X500NameBuilder.java 15 this.template = template;
20 this.addRDN(oid, template.stringToValue(oid, value));
22 return this;
29 return this;
36 return this;
67 return this;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509ExtensionsGenerator.java 44 this.addExtension(oid, critical, value.getDERObject().getEncoded(ASN1Encodable.DER));
75 * Return true if there are no extension present in this generator.
  /external/jmdns/src/javax/jmdns/impl/
NetworkTopologyEventImpl.java 34 this._inetAddress = inetAddress;
39 this._inetAddress = inetAddress;
48 return (this.getSource() instanceof JmDNS ? (JmDNS) getSource() : null);
63 buf.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this) + " ");
65 buf.append(this.getInetAddress());
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
ServiceInfoResolver.java 28 this._info = info;
29 info.setDns(this.getDns());
30 this.getDns().addListener(info, DNSQuestion.newQuestion(info.getQualifiedName(), DNSRecordType.TYPE_ANY, DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE));
39 return "ServiceInfoResolver(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
51 this.getDns().removeListener(_info);
65 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifiedName(), DNSRecordType.TYPE_SRV, DNSRecordClass.CLASS_IN), now);
66 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifiedName(), DNSRecordType.TYPE_TXT, DNSRecordClass.C (…)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Transform.java 10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
17 * may be used to endorse or promote products derived from this software
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
56 this.translation.set(translation);
57 this.rot.set(rot);
61 this(translation, rot);
62 this.scale.set(scale);
66 this(translation, Quaternion.IDENTITY)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridSerializationTest.java 45 this.flyCam.setMoveSpeed(100f);
47 this.stateManager.attach(state);
49 this.terrain= (TerrainGrid) assetManager.loadModel("TerrainGrid/TerrainGrid.j3o");
51 this.rootNode.attachChild(this.terrain);
53 TerrainLodControl control = new TerrainLodControl(this.terrain, getCamera());
55 this.terrain.addControl(control);
60 this.getCamera().setLocation(new Vector3f(0, 256, 0));
62 this.viewPort.setBackgroundColor(new ColorRGBA(0.7f, 0.8f, 1f, 1f));
101 this.initKeys()
    [all...]
TerrainGridTest.java 55 this.flyCam.setMoveSpeed(100f);
57 this.stateManager.attach(state);
60 this.mat_terrain = new Material(this.assetManager, "Common/MatDefs/Terrain/HeightBasedTerrain.j3md");
73 Texture grass = this.assetManager.loadTexture("Textures/Terrain/splat/grass.jpg");
75 this.mat_terrain.setTexture("region1ColorMap", grass);
76 this.mat_terrain.setVector3("region1", new Vector3f(88, 200, this.grassScale));
79 Texture dirt = this.assetManager.loadTexture("Textures/Terrain/splat/dirt.jpg");
81 this.mat_terrain.setTexture("region2ColorMap", dirt)
    [all...]
TerrainGridTileLoaderTest.java 53 this.flyCam.setMoveSpeed(100f);
55 this.stateManager.attach(state);
58 this.mat_terrain = new Material(this.assetManager, "Common/MatDefs/Terrain/HeightBasedTerrain.j3md");
71 Texture grass = this.assetManager.loadTexture("Textures/Terrain/splat/grass.jpg");
73 this.mat_terrain.setTexture("region1ColorMap", grass);
74 this.mat_terrain.setVector3("region1", new Vector3f(88, 200, this.grassScale));
77 Texture dirt = this.assetManager.loadTexture("Textures/Terrain/splat/dirt.jpg");
79 this.mat_terrain.setTexture("region2ColorMap", dirt)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
77 this.lexer.SPorHT();
78 this.lexer.match(TokenTypes.ID);
81 this.lexer.match('/');
82 this.lexer.match(TokenTypes.ID);
85 this.lexer.SPorHT();
91 this.lexer.match(',')
    [all...]
AlertInfoParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
84 this.lexer.SPorHT();
85 if (this.lexer.lookAhead(0) == '<') {
86 this.lexer.match('<');
87 urlParser = new URLParser((Lexer) this.lexer);
90 this.lexer.match('>');
92 /* This is non standard for Polycom support.
    [all...]
AllowEventsParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
77 this.lexer.SPorHT();
78 this.lexer.match(TokenTypes.ID);
83 this.lexer.SPorHT();
85 this.lexer.match(',');
86 this.lexer.SPorHT();
89 this.lexer.match(TokenTypes.ID)
    [all...]
AllowParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
76 this.lexer.SPorHT();
77 this.lexer.match(TokenTypes.ID);
82 this.lexer.SPorHT();
84 this.lexer.match(',');
85 this.lexer.SPorHT();
88 this.lexer.match(TokenTypes.ID)
    [all...]
AuthenticationInfoParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
76 this.lexer.SPorHT();
80 this.lexer.SPorHT();
82 this.lexer.match(',');
83 this.lexer.SPorHT();
87 this.lexer.SPorHT();
89 this.lexer.SPorHT()
    [all...]
CallIDParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
66 this.lexer.match(TokenTypes.CALL_ID);
67 this.lexer.SPorHT();
68 this.lexer.match(':');
69 this.lexer.SPorHT();
73 this.lexer.SPorHT();
103 * CVS: If this change addresses one or more issues
    [all...]
CallInfoParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
76 this.lexer.SPorHT();
77 this.lexer.match('<');
78 URLParser urlParser=new URLParser((Lexer)this.lexer);
81 this.lexer.match('>');
82 this.lexer.SPorHT();
88 this.lexer.match(',')
    [all...]
ContactParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement.
51 this.lexer = lexer;
63 this.lexer.match('*');
72 this.lexer.SPorHT();
75 this.lexer.match(',');
76 this.lexer.SPorHT();

Completed in 275 milliseconds

1 23 4 5 6 7 8 91011>>