/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 51 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a> 67 this.attribHandlerMap = new HashMap<String, CookieAttributeHandler>(10); 78 this.attribHandlerMap.put(name, handler); 90 return this.attribHandlerMap.get(name); 112 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 49 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a> 68 this.requestFactory = requestFactory; 69 this.lineBuf = new CharArrayBuffer(128); 76 this.lineBuf.clear(); 77 int i = sessionBuffer.readLine(this.lineBuf); 81 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length()) [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 49 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a> 68 this.responseFactory = responseFactory; 69 this.lineBuf = new CharArrayBuffer(128); 76 this.lineBuf.clear(); 77 int i = sessionBuffer.readLine(this.lineBuf); 82 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length()) [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 47 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a> 57 this(null); 62 this.parentContext = parentContext; 70 if (this.map != null) { 71 obj = this.map.get(id); 73 if (obj == null && this.parentContext != null) [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 56 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a> 73 if (this.requestInterceptors == null) { 74 this.requestInterceptors = new ArrayList(); 76 this.requestInterceptors.add(itcp); 89 if (this.requestInterceptors == null) { 93 this.requestInterceptors = new ArrayList() [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 45 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a> 59 this.local = local; 60 this.defaults = defaults; 64 Object obj = this.local.getAttribute(id); 66 return this.defaults.getAttribute(id); 73 return this.local.removeAttribute(id) [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/bcprov/src/main/java/org/bouncycastle/asn1/x500/ |
X500NameBuilder.java | 16 this(BCStyle.INSTANCE); 21 this.template = template; 26 this.addRDN(oid, template.stringToValue(oid, value)); 28 return this; 35 return this; 42 return this; 73 return this;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
ExtensionsGenerator.java | 43 this.addExtension(oid, critical, value.toASN1Primitive().getEncoded(ASN1Encoding.DER)); 69 * Return true if there are no extension present in this generator.
|
X509ExtensionsGenerator.java | 45 this.addExtension(oid, critical, value.toASN1Primitive().getEncoded(ASN1Encoding.DER)); 76 * Return true if there are no extension present in this generator.
|
/external/chromium-trace/trace-viewer/hooks/ |
pre_push | 3 # Use of this source code is governed by a BSD-style license that can be 13 import posix # No way to do this on Windows, just give up there. namespace 42 'This is almost certainly a bad idea.\n')
|
/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/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
UnixFakeFileSystem.java | 5 * you may not use this file except in compliance with the License.
42 this.setDirectoryListingFormatter(new UnixDirectoryListingFormatter());
81 * @return true if the specified path component is a root for this filesystem
|
/external/mockito/src/org/mockito/internal/verification/ |
VerificationDataImpl.java | 3 * This program is made available under the terms of the MIT License. 22 this.invocations = invocations;
23 this.wanted = wanted;
24 this.assertWantedIsVerifiable();
|
/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...] |