/frameworks/base/core/java/android/bluetooth/ |
IBluetoothHeadset.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 28 boolean connect(in BluetoothDevice device); 29 boolean disconnect(in BluetoothDevice device); 31 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); 32 int getConnectionState(in BluetoothDevice device); 33 boolean setPriority(in BluetoothDevice device, int priority); 34 int getPriority(in BluetoothDevice device); 35 boolean startVoiceRecognition(in BluetoothDevice device); 36 boolean stopVoiceRecognition(in BluetoothDevice device) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ISms.aidl | 5 ** you may not use this file except in compliance with the License. 10 ** Unless required by applicable law or agreed to in writing, software 56 in byte[] pdu); 67 boolean copyMessageToIccEf(int status, in byte[] pdu, in byte[] smsc); 87 * which cause smaller number of SMS to be sent in checking period. 90 * raw pdu of the status report is in the extended data ("pdu"). 92 void sendData(in String destAddr, in String scAddr, in int destPort [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/ |
TBCPadding.java | 39 * add the pad bytes to the passed in block, returning the 43 * passed to it inside in. i.e. if inOff is zero, indicating the 44 * entire block is to be overwritten with padding the value of in 49 byte[] in, 52 int count = in.length - inOff; 57 code = (byte)((in[inOff - 1] & 0x01) == 0 ? 0xff : 0x00); 61 code = (byte)((in[in.length - 1] & 0x01) == 0 ? 0xff : 0x00); 64 while (inOff < in.length) 66 in[inOff] = code [all...] |
/libcore/luni/src/main/java/java/io/ |
FilterReader.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 35 protected Reader in; field in class:FilterReader 38 * Constructs a new FilterReader on the Reader {@code in}. 40 * @param in 43 protected FilterReader(Reader in) { 44 super(in); 45 this.in = in; 57 in.close() [all...] |
FilterInputStream.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 35 protected volatile InputStream in; field in class:FilterInputStream 43 * overridden. Subclasses should check for null in their constructors. 45 * @param in the input stream to filter reads on. 47 protected FilterInputStream(InputStream in) { 48 this.in = in; 53 return in.available(); 64 in.close() [all...] |
/external/webkit/Source/WebCore/fileapi/ |
DirectoryEntry.idl | 4 * Redistribution and use in source and binary forms, with or without 10 * * Redistributions in binary form must reproduce the above 12 * in the documentation and/or other materials provided with the 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 39 [Custom] void getFile(in [ConvertUndefinedOrNullToNullString] DOMString path, in [Optional] WebKitFlags flags, in [Optional, Callback] EntryCallback successCallback, in [Optional, Callback] ErrorCallback errorCallback) [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Interp.h | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local 54 tmpf[0] = in[0] * ciTable[off + 40]; 55 tmpf[0] += in[1] * ciTable[off]; 56 tmpf[0] += in[2] * ciTable[40 - off]; 57 tmpf[0] += in[3] * ciTable[80 - off]; 58 in += img->pitch; 59 tmpf[1] = in[0] * ciTable[off + 40]; 60 tmpf[1] += in[1] * ciTable[off] [all...] |
MatrixUtils.h | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 63 static void convert9to33(double out[3][3], double in[9]) { 64 out[0][0] = in[0]; 65 out[0][1] = in[1]; 66 out[0][2] = in[2]; 68 out[1][0] = in[3]; 69 out[1][1] = in[4]; 70 out[1][2] = in[5]; 72 out[2][0] = in[6] [all...] |
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebMutableURLRequest.idl | 4 * Redistribution and use in source and binary forms, with or without 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 46 HRESULT addValue([in] BSTR value, [in] BSTR field); 51 HRESULT setAllHTTPHeaderFields([in] IPropertyBag* headerFields); 56 HRESULT setCachePolicy([in] WebURLRequestCachePolicy policy) [all...] |
IWebUIDelegatePrivate.idl | 4 * Redistribution and use in source and binary forms, with or without 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 55 HRESULT webViewScrolled([in] IWebView* sender); 56 HRESULT webViewAddMessageToConsole([in] IWebView* sender, [in] BSTR message, [in] int lineNumber, [in] BSTR url, [in] BOOL isError) [all...] |
/external/v8/test/mjsunit/ |
in.js | 2 // Redistribution and use in source and binary forms, with or without 8 // * Redistributions in binary form must reproduce the above 10 // disclaimer in the documentation and/or other materials provided 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 32 assertFalse(0 in o); 33 assertFalse('x' in o); 34 assertFalse('y' in o); 35 assertTrue('toString' in o, "toString") [all...] |
/external/zlib/examples/ |
gzjoin.c | 7 warranty. In no event will the author be held liable for any damages 16 in a product, an acknowledgment in the product documentation would be 38 decompress all of the input data in order to find the bits in the compressed 47 compressed data in order to connect the streams. The output gzip file 64 /* exit with an error (return a value to allow use in an expression) */ 74 #define CHUNK 32768 /* must be a power of two and fit in unsigned */ 86 local void bclose(bin *in) 88 if (in != NULL) 101 bin *in; local 284 bin *in; \/* buffered input file *\/ local [all...] |
/external/valgrind/main/memcheck/tests/ |
wrap4.stdout.exp | 2 in wrapper1-pre: fact(5) 3 in wrapper2-pre: fact(4) 4 in wrapper1-pre: fact(3) 5 in wrapper2-pre: fact(2) 6 in wrapper1-pre: fact(1) 7 in wrapper2-pre: fact(0) 8 in wrapper2-post: fact(0) = 1 9 in wrapper1-post: fact(1) = 1 10 in wrapper2-post: fact(2) = 2 11 in wrapper1-post: fact(3) = [all...] |
wrap2.stdout.exp | 2 in wrapper1-pre: fact(5) 3 in wrapper1-pre: fact(4) 4 in wrapper1-pre: fact(3) 5 in wrapper1-pre: fact(2) 6 in wrapper1-pre: fact(1) 7 in wrapper1-pre: fact(0) 8 in wrapper1-post: fact(0) = 1 9 in wrapper1-post: fact(1) = 1 10 in wrapper1-post: fact(2) = 2 11 in wrapper1-post: fact(3) = [all...] |
wrap3.stdout.exp | 2 in wrapper1-pre: fact(5) 3 in wrapper2-pre: fact(4) 4 in wrapper1-pre: fact(3) 5 in wrapper2-pre: fact(2) 6 in wrapper1-pre: fact(1) 7 in wrapper2-pre: fact(0) 8 in wrapper2-post: fact(0) = 1 9 in wrapper1-post: fact(1) = 1 10 in wrapper2-post: fact(2) = 2 11 in wrapper1-post: fact(3) = [all...] |
/external/webkit/Source/WebCore/dom/ |
DeviceOrientationEvent.idl | 4 * Redistribution and use in source and binary forms, with or without 9 * * Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 34 [Custom] void initDeviceOrientationEvent(in DOMString type, in boolean bubbles, in boolean cancelable, in double alpha, in double beta, in double gamma) [all...] |
ErrorEvent.idl | 4 * Redistribution and use in source and binary forms, with or without 10 * * Redistributions in binary form must reproduce the above 12 * in the documentation and/or other materials provided with the 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 42 void initErrorEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString messageArg, in DOMString filenameArg, in unsigned long linenoArg) [all...] |
ProgressEvent.idl | 4 * Redistribution and use in source and binary forms, with or without 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 33 void initProgressEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, 34 in boolean lengthComputableArg, in unsigned long long loadedArg, in unsigned long long totalArg) [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/ |
CloseShieldInputStream.java | 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
24 * This class is typically used in cases where an input stream needs to be
37 * @param in underlying input stream
39 public CloseShieldInputStream(InputStream in) {
40 super(in);
49 in = new ClosedInputStream();
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/ |
EOLConvertingInputStream.java | 7 * "License"); you may not use this file except in compliance *
12 * Unless required by applicable law or agreed to in writing, *
42 private PushbackInputStream in = null;
field in class:EOLConvertingInputStream 48 * instance converting bytes in the given <code>InputStream</code>.
51 * @param in the <code>InputStream</code> to read from.
53 public EOLConvertingInputStream(InputStream in) {
54 this(in, CONVERT_BOTH);
58 * instance converting bytes in the given <code>InputStream</code>.
60 * @param in the <code>InputStream</code> to read from.
64 public EOLConvertingInputStream(InputStream in, int flags) { [all...] |
/external/v8/src/ |
dateparser-inl.h | 2 // Redistribution and use in source and binary forms, with or without 8 // * Redistributions in binary form must reproduce the above 10 // disclaimer in the documentation and/or other materials provided 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 41 InputReader<Char> in(unicode_cache, str); 46 while (!in.IsEnd()) { 47 if (in.IsAsciiDigit()) { 49 int n = in.ReadUnsignedNumber() [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorFrontendHost.idl | 6 * Redistribution and use in source and binary forms, with or without 12 * * Redistributions in binary form must reproduce the above 14 * in the documentation and/or other materials provided with the 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 39 void inspectedURLChanged(in DOMString newURL); 43 void setAttachedWindowHeight(in unsigned long height); 44 void moveWindowBy(in float x, in float y) [all...] |
/external/webkit/Source/WebCore/xml/ |
XPathExpression.idl | 10 * This library is distributed in the hope that it will be useful, 27 [OldStyleObjC] XPathResult evaluate(in Node contextNode, 28 in unsigned short type, 29 in XPathResult inResult)
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLBufferedInput.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 33 private ByteBuffer in; field in class:SSLBufferedInput 45 protected void setSourceBuffer(ByteBuffer in) { 47 this.in = in; 52 // in assumption that the buffer has been set 53 return in.remaining(); 64 * Reads the following byte value. If there are no bytes in the source 71 bytik = in.get() & 0x00FF [all...] |
SSLStreamedInput.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 29 private InputStream in; field in class:SSLStreamedInput 31 public SSLStreamedInput(InputStream in) { 32 this.in = in; 37 return in.available(); 50 int res = in.read();
|