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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/html/
HTMLAllCollection.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 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
35 [Custom] Node item(in unsigned long index);
36 [Custom] Node namedItem(in DOMString name);
39 NodeList tags(in DOMString name);
  /external/webkit/Source/WebCore/plugins/
DOMPluginArray.idl 10 This library is distributed in the hope that it will be useful,
28 DOMPlugin item(in unsigned long index);
29 DOMPlugin namedItem(in DOMString name);
30 void refresh(in boolean reload);
  /external/webkit/Source/WebCore/storage/
StorageInfo.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 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
35 [CallWith=ScriptExecutionContext] void queryUsageAndQuota(in unsigned short storageType, in [Callback, Optional] StorageInfoUsageCallback usageCallback, in [Callback, Optional] StorageInfoErrorCallback errorCallback);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHTMLRepresentation.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
49 HRESULT supportedMIMETypes([in, out] BSTR* types, [in, out] int* cTypes);
54 HRESULT supportedNonImageMIMETypes([in, out] BSTR* types, [in, out] int* cTypes)
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
shellsort.cpp 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
87 ; Declare functions defined elsewhere and referenced in this module
92 ; Declare variables used in this module but defined elsewhere
100 void shellsort(Int32 in[], Int32 n)
119 v = in[i-1];
121 while (in[j-inc-1] > v)
123 in[j-1] = in[j-inc-1];
130 in[j-1] = v
    [all...]
  /external/webkit/Source/WebCore/css/
WebKitCSSMatrix.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 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
28 // Introduced in DOM Level ?:
61 void setMatrixValue(in DOMString string) raises (DOMException);
64 [Immutable] WebKitCSSMatrix multiply(in WebKitCSSMatrix secondMatrix);
71 [Immutable] WebKitCSSMatrix translate(in double x, in double y, in double z)
    [all...]
  /frameworks/base/core/java/android/content/
IContentService.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
33 void registerContentObserver(in Uri uri, boolean notifyForDescendentsn,
37 void notifyChange(in Uri uri, IContentObserver observer,
40 void requestSync(in Account account, String authority, in Bundle extras);
41 void cancelSync(in Account account, String authority);
48 boolean getSyncAutomatically(in Account account, String providerName);
56 void setSyncAutomatically(in Account account, String providerName, boolean sync);
61 * @return the frequency of the periodic sync in seconds. If 0 then no periodic sync
    [all...]
  /libcore/json/src/main/java/org/json/
JSONTokener.java 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
57 * designed for inheritance and should not be subclassed. In particular,
65 private final String in; field in class:JSONTokener
74 * @param in JSON encoded string. Null is not permitted and will yield a
78 public JSONTokener(String in) {
80 if (in != null && in.startsWith("\ufeff")) {
81 in = in.substring(1)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Base64.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 * In violation of the RFC, this encoder doesn't wrap lines at 76 columns.
35 public static byte[] decode(byte[] in) {
36 return decode(in, in.length);
39 public static byte[] decode(byte[] in, int len) {
54 chr = in[len-1];
66 // index in the output array
68 // index in the input arra
    [all...]
  /external/webkit/Source/WebCore/workers/
WorkerContext.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
50 [Custom] void importScripts(/*[Variadic] in DOMString urls */);
53 [EnabledAtRuntime, RequiresAllArguments=Raise] Database openDatabase(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback cr (…)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
Digest.java 16 * return the size, in bytes, of the digest produced by this message digest.
18 * @return the size, in bytes, of the digest produced by this message digest.
25 * @param in the input byte to be entered.
27 public void update(byte in);
32 * @param in the byte array containing the data.
36 public void update(byte[] in, int inOff, int len);
Wrapper.java 14 public byte[] wrap(byte[] in, int inOff, int inLen);
16 public byte[] unwrap(byte[] in, int inOff, int inLen)
  /external/clang/utils/ABITest/
summarize.sh 10 for i in $(seq 0 $1); do
  /external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/
der_decode_ia5_string.c 4 * algorithms in a highly modular and flexible manner.
23 @param in The DER encoded IA5 STRING
26 @param outlen [in/out] The number of octets stored
29 int der_decode_ia5_string(const unsigned char *in, unsigned long inlen,
35 LTC_ARGCHK(in != NULL);
45 if ((in[0] & 0x1F) != 0x16) {
51 if (in[x] & 0x80) {
52 /* valid # of bytes in length are 1,2,3 */
53 y = in[x] & 0x7F;
58 /* read the length in */
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/octet/
der_decode_octet_string.c 4 * algorithms in a highly modular and flexible manner.
23 @param in The DER encoded OCTET STRING
26 @param outlen [in/out] The number of octets stored
29 int der_decode_octet_string(const unsigned char *in, unsigned long inlen,
34 LTC_ARGCHK(in != NULL);
44 if ((in[0] & 0x1F) != 0x04) {
50 if (in[x] & 0x80) {
51 /* valid # of bytes in length are 1,2,3 */
52 y = in[x] & 0x7F;
57 /* read the length in */
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/
der_decode_printable_string.c 4 * algorithms in a highly modular and flexible manner.
23 @param in The DER encoded printable STRING
26 @param outlen [in/out] The number of octets stored
29 int der_decode_printable_string(const unsigned char *in, unsigned long inlen,
35 LTC_ARGCHK(in != NULL);
45 if ((in[0] & 0x1F) != 0x13) {
51 if (in[x] & 0x80) {
52 /* valid # of bytes in length are 1,2,3 */
53 y = in[x] & 0x7F;
58 /* read the length in */
    [all...]
  /external/e2fsprogs/lib/uuid/
parse.c 7 * Redistribution and use in source and binary forms, with or without
11 * notice, and the entire permission notice in its entirety,
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
23 * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
42 int uuid_parse(const char *in, uuid_t uu)
49 if (strlen(in) != 36)
51 for (i=0, cp = in; i <= 36; i++,cp++)
    [all...]
  /external/quake/quake/src/QW/
fixskins.sh 2 for x in *; do
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
OdexDependencies.java 6 * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43 public OdexDependencies (Input in) {
44 modificationTime = in.readInt();
45 crc = in.readInt();
46 dalvikBuild = in.readInt()
    [all...]
  /external/valgrind/main/memcheck/tests/
wrap7.stdout.exp 3 in actual-so
  /external/webkit/Source/WebCore/dom/
StringCallback.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
35 boolean handleEvent(in DOMString data);
  /external/webkit/Source/WebCore/fileapi/
DirectoryEntrySync.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] FileEntrySync getFile(in [ConvertUndefinedOrNullToNullString] DOMString path, in WebKitFlags flags) raises (FileException);
40 [Custom] DirectoryEntrySync getDirectory(in [ConvertUndefinedOrNullToNullString] DOMString path, in WebKitFlags flags) raises (FileException)
    [all...]
EntriesCallback.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
36 boolean handleEvent(in EntryArray entries);
EntryCallback.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
36 boolean handleEvent(in Entry entry);
ErrorCallback.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
36 boolean handleEvent(in FileError error);

Completed in 1628 milliseconds

1 2 3 4 5 6 7 891011>>