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

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Enumerated.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
63 public Object decode(BerInputStream in) throws IOException {
64 in.readEnumerated();
66 if (in.isVerify) {
69 return getDecodedObject(in);
77 public Object getDecodedObject(BerInputStream in) throws IOException {
78 return Arrays.copyOfRange(in.buffer, in.contentOffset, in.contentOffset + in.length)
    [all...]
ASN1Explicit.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
62 public Object decode(BerInputStream in) throws IOException {
63 if (constrId != in.tag) {
65 in.tagOffset + "]. Expected tag: " + Integer.toHexString(constrId) + ", " +
66 "but encountered tag " + Integer.toHexString(in.tag));
68 in.next();
70 in.content = type.decode(in);
72 if (in.isVerify)
    [all...]
ASN1OctetString.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
61 @Override public Object decode(BerInputStream in) throws IOException {
62 in.readOctetString();
64 if (in.isVerify) {
67 return getDecodedObject(in);
75 @Override public Object getDecodedObject(BerInputStream in) throws IOException {
76 return Arrays.copyOfRange(in.buffer, in.contentOffset, in.contentOffset + in.length)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyInputStream.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
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(bts);
75 return in.read(bts, st, end);
85 return in.skip(ln);
94 return in.available();
102 in.close();
    [all...]
ProxyReader.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
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(chr);
75 return in.read(chr, st, end);
85 return in.skip(ln);
94 return in.ready();
102 in.close();
    [all...]
  /sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
Rect.java 13 public Rect createFromParcel(Parcel in) {
14 return new Rect(in);
25 private Rect(Parcel in) {
26 readFromParcel(in);
36 public void readFromParcel(Parcel in) {
37 left = in.readInt();
38 top = in.readInt();
39 right = in.readInt();
40 bottom = in.readInt();
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.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
33 private InputStream in; field in class:MultiInputStream
48 if (in != null) {
50 in.close();
52 in = null;
63 in = it.next().getInput();
68 if (in == null) {
71 return in.available();
79 if (in == null)
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSheet.idl 10 * This library is distributed in the hope that it will be useful,
23 // Introduced in DOM Level 2:
28 [OldStyleObjC] unsigned long insertRule(in DOMString rule,
29 in unsigned long index)
31 void deleteRule(in unsigned long index)
37 long addRule(in DOMString selector,
38 in DOMString style,
39 in [Optional] unsigned long index)
41 void removeRule(in unsigned long index)
  /external/webkit/Source/WebCore/dom/
Clipboard.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
37 [Custom] void clearData(in [Optional] DOMString type)
39 [Custom] void getData(in DOMString type)
42 [RequiresAllArguments] boolean setData(in DOMString type, in DOMString data)
    [all...]
DeviceMotionEvent.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
35 [Custom] void initDeviceMotionEvent(in DOMString type, in boolean bubbles, in boolean cancelable, in Acceleration acceleration, in Acceleration accelerationIncludingGravity, in RotationRate rotationR (…)
    [all...]
DataTransferItems.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 DataTransferItem item(in unsigned long index) getter;
42 void add(in DOMString data, in DOMString type) raises(DOMException);
OverflowEvent.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
35 void initOverflowEvent(in unsigned short orient,
36 in boolean horizontalOverflow,
37 in boolean verticalOverflow);
  /external/webkit/Source/WebCore/notifications/
Notification.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
50 void addEventListener(in DOMString type,
51 in EventListener listener,
52 in boolean useCapture);
53 void removeEventListener(in DOMString type,
    [all...]
  /external/webkit/Source/WebCore/page/
EventSource.idl 5 * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
13 * in the documentation and/or other materials provided with the
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59 void addEventListener(in DOMString type,
60 in EventListener listener,
61 in boolean useCapture);
62 void removeEventListener(in DOMString type
    [all...]
History.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
42 [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void go(in long distance);
44 [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in optional DOMString url
    [all...]
  /external/webkit/Source/WebCore/xml/
XMLHttpRequestUpload.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
45 void addEventListener(in DOMString type,
46 in EventListener listener,
47 in boolean useCapture);
48 void removeEventListener(in DOMString type,
    [all...]
  /frameworks/base/core/java/android/app/
IBackupAgent.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
23 * Interface presented by applications being asked to participate in the
51 void doBackup(in ParcelFileDescriptor oldState,
52 in ParcelFileDescriptor data,
53 in ParcelFileDescriptor newState,
79 void doRestore(in ParcelFileDescriptor data, int appVersionCode,
80 in ParcelFileDescriptor newState, int token, IBackupManager callbackBinder);
99 void doFullBackup(in ParcelFileDescriptor data, int token, IBackupManager callbackBinder);
116 void doRestoreFile(in ParcelFileDescriptor data, long size
    [all...]
  /frameworks/base/voip/java/android/net/sip/
ISipService.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 void open(in SipProfile localProfile);
29 void open3(in SipProfile localProfile,
30 in PendingIntent incomingCallPendingIntent,
31 in ISipSessionListener listener);
32 void close(in String localProfileUri);
38 ISipSession createSession(in SipProfile localProfile,
39 in ISipSessionListener listener);
  /cts/tests/accessibilityservice/src/android/accessibilityservice/
IAccessibilityServiceDelegateConnection.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
31 void setAccessibilityServiceDelegate(in IBinder binder);
33 List<AccessibilityNodeInfo> findAccessibilityNodeInfosByText(in AccessibilityNodeInfo root,
36 AccessibilityNodeInfo getParent(in AccessibilityNodeInfo child);
38 AccessibilityNodeInfo getChild(in AccessibilityNodeInfo parent, int index);
40 AccessibilityNodeInfo findFocus(in AccessibilityNodeInfo root, int focusType);
42 AccessibilityNodeInfo focusSearch(in AccessibilityNodeInfo current, int direction);
44 boolean performAccessibilityAction(in AccessibilityNodeInfo target, int action,
45 in Bundle arguments)
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/
IAccessibilityServiceDelegateConnection.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
31 void setAccessibilityServiceDelegate(in IBinder binder);
33 List<AccessibilityNodeInfo> findAccessibilityNodeInfosByText(in AccessibilityNodeInfo root,
36 AccessibilityNodeInfo getParent(in AccessibilityNodeInfo child);
38 AccessibilityNodeInfo getChild(in AccessibilityNodeInfo parent, int index);
40 AccessibilityNodeInfo findFocus(in AccessibilityNodeInfo root, int focusType);
42 AccessibilityNodeInfo focusSearch(in AccessibilityNodeInfo current, int direction);
44 boolean performAccessibilityAction(in AccessibilityNodeInfo target, int action,
45 in Bundle arguments)
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGTextContentElement.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
43 float getSubStringLength(in [IsIndex] unsigned long offset,
44 in [IsIndex] unsigned long length)
46 SVGPoint getStartPositionOfChar(in [IsIndex] unsigned long offset)
48 SVGPoint getEndPositionOfChar(in [IsIndex] unsigned long offset
    [all...]
  /external/chromium/testing/gtest/test/
gtest_catch_exceptions_test.py 5 # Redistribution and use in source and binary forms, with or without
11 # * Redistributions in binary form must reproduce the above
13 # in the documentation and/or other materials provided with the
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 SUPPORTS_SEH_EXCEPTIONS = 'ThrowsSehException' in TEST_LIST
78 'in the test fixture\'s constructor'
79 in test_output)
81 'in the test fixture\'s destructor
    [all...]
  /external/gtest/test/
gtest_catch_exceptions_test.py 5 # Redistribution and use in source and binary forms, with or without
11 # * Redistributions in binary form must reproduce the above
13 # in the documentation and/or other materials provided with the
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 SUPPORTS_SEH_EXCEPTIONS = 'ThrowsSehException' in TEST_LIST
78 'in the test fixture\'s constructor'
79 in test_output)
81 'in the test fixture\'s destructor
    [all...]
  /device/moto/stingray/ril/
qbp-dump.sh 13 case $parentExists in
22 case $? in 0) ;; *) echo "Couldn\'t cd to $outDirRoot"; exit 1;; esac
25 for dir in $outDirBranch; do
28 case $? in 0) ;; *) echo "Couldn\'t cd to $dir"; exit 1;; esac
40 case $? in 0) ;; *) echo "qbpfs hello failed"; return;; esac
45 case $maxIndexes in
63 case $maxIndexes in
66 case $lastErrIndex in
74 case $lastErrIndex in
83 case $lastErrIndex in
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileWriterSync.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 void write(in Blob data) raises (FileException);
37 void seek(in long long position) raises (FileException);
38 void truncate(in long long size) raises (FileException);

Completed in 1633 milliseconds

1 2 3 4 5 6 78 91011>>