HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 76 - 100 of 12738) sorted by null

1 2 34 5 6 7 8 91011>>

  /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();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebViewPrivate.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
67 HRESULT setInViewSourceMode([in] BOOL flag);
71 @abstract Whether or not the WebView is in source-view mode for HTML.
80 HRESULT setFormDelegate([in] IWebFormDelegate* formDelegate);
85 HRESULT setFrameLoadDelegatePrivate([in] IWebFrameLoadDelegatePrivate* frameLoadDelegatePrivate)
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
50 private final SessionInputBuffer in; field in class:IdentityInputStream
54 public IdentityInputStream(final SessionInputBuffer in) {
56 if (in == null) {
59 this.in = in;
63 if (!this.closed && this.in.isDataAvailable(10)) {
78 return this.in.read();
86 return this.in.read(b, off, len)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
ZeroBytePadding.java 35 * add the pad bytes to the passed in block, returning the
39 byte[] in,
42 int added = (in.length - inOff);
44 while (inOff < in.length)
46 in[inOff] = (byte) 0;
54 * return the number of pad bytes present in the block.
56 public int padCount(byte[] in)
59 int count = in.length;
63 if (in[count - 1] != 0)
71 return in.length - count
    [all...]
  /external/mesa3d/src/glsl/tests/
qualifier-06.glsl 1 /* FAIL - in only allowed in parameter list in GLSL 1.10 */
4 in vec4 foo;
  /external/tcpdump/tests/
alltests.sh 3 for i in *.sh
  /external/valgrind/main/exp-sgcheck/tests/
is_arch_supported 12 case `uname -i` in
  /external/valgrind/main/memcheck/tests/amd64-linux/
int3-amd64.stdout.exp 2 in int_handler, RIP is ...
  /external/valgrind/main/memcheck/tests/
leak-0.stderr.exp 1 leaked: 0 bytes in 0 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 1 blocks
4 suppressed: 0 bytes in 0 blocks
leak-cases-summary.stderr.exp 1 leaked: 80 bytes in 5 blocks
2 dubious: 96 bytes in 6 blocks
3 reachable: 64 bytes in 4 blocks
4 suppressed: 0 bytes in 0 blocks
long_namespace_xml.stdout.exp 1 I'm in an asininely long namespace!
wrap1.stdout.exp 3 in actual
  /external/valgrind/main/memcheck/tests/x86-linux/
int3-x86.stdout.exp 2 in int_handler, EIP is ...
  /external/webkit/Source/WebCore/bindings/scripts/test/
TestMediaQueryListListener.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
30 void method(in MediaQueryListListener listener);
  /external/webkit/Source/WebCore/dom/
CustomEvent.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
29 // Introduced in DOM Level 3:
34 void initCustomEvent(in DOMString typeArg,
35 in boolean canBubbleArg,
36 in boolean cancelableArg,
    [all...]
MessagePort.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
34 // We need to have something as an ObjC binding, because MessagePort is used in MessageEvent, which already has one,
35 // but we don't want to actually expose the API while it is in flux.
37 [Custom] void postMessage(in DOMString message, in [Optional] Array messagePorts
    [all...]
NamedNodeMap.idl 10 * This library is distributed in the hope that it will be useful,
30 Node getNamedItem(in DOMString name);
32 Node setNamedItem(in Node node)
35 Node removeNamedItem(in DOMString name)
38 Node item(in unsigned long index);
43 // Introduced in DOM Level 2:
45 [OldStyleObjC] Node getNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
46 in DOMString localName)
50 Node setNamedItemNS(in Node node)
53 [OldStyleObjC] Node removeNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
    [all...]
PopStateEvent.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
31 void initPopStateEvent(in DOMString typeArg,
32 in boolean canBubbleArg,
33 in boolean cancelableArg,
34 in SerializedScriptValue stateArg)
    [all...]
  /external/webkit/Source/WebCore/html/
DataGridColumnList.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 DataGridColumn item(in [IsIndex] unsigned long index);
39 DataGridColumn add(in DOMString id, in DOMString label, in DOMString type, in boolean primary, in unsigned short sortable)
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLContextEvent.idl 4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 [StrictTypeChecking] void initEvent(in DOMString eventTypeArg,
32 in boolean canBubbleArg,
33 in boolean cancelableArg,
34 in DOMString statusMessageArg)
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBKeyRange.idl 4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 [ClassMethod] IDBKeyRange only(in IDBKey value);
38 [ClassMethod] IDBKeyRange lowerBound(in IDBKey bound, in [Optional] boolean open);
39 [ClassMethod] IDBKeyRange upperBound(in IDBKey bound, in [Optional] boolean open)
    [all...]
SQLTransaction.idl 4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 [Custom] void executeSql(in DOMString sqlStatement, in ObjectArray arguments, in SQLStatementCallback callback, in SQLStatementErrorCallback errorCallback)
    [all...]
  /external/webkit/Source/WebCore/webaudio/
AudioPannerNode.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 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
40 void setPosition(in float x, in float y, in float z);
41 void setOrientation(in float x, in float y, in float z)
    [all...]

Completed in 473 milliseconds

1 2 34 5 6 7 8 91011>>