HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 1 - 25 of 12740) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/tests/
qualifier-02.glsl 1 /* FAIL - in only allowed in parameter list in GLSL 1.10 */
2 in foo;
  /bionic/libm/src/
s_scalbln.c 5 * 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 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 int in; local
38 in = (int)n;
39 if (in != n) {
41 in = INT_MAX
51 int in; local
66 int in; local
    [all...]
  /external/webkit/Source/WebCore/webaudio/
AudioListener.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
34 attribute float speedOfSound; // in meters / second (default 343.3)
36 void setPosition(in float x, in float y, in float z)
    [all...]
  /external/bluetooth/bluez/src/
genbuiltin 3 for i in $*
11 for i in $*
  /frameworks/base/core/java/com/android/internal/widget/
ILockSettings.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
21 void setBoolean(in String key, in boolean value, in int userId);
22 void setLong(in String key, in long value, in int userId);
23 void setString(in String key, in String value, in int userId)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_sequence_free.c 4 * algorithms in a highly modular and flexible manner.
22 @param in The list to free
24 void der_sequence_free(ltc_asn1_list *in)
29 while (in->prev != NULL || in->parent != NULL) {
30 if (in->parent != NULL) {
31 in = in->parent;
33 in = in->prev
    [all...]
  /external/valgrind/main/none/tests/amd64/
smc1.stdout.exp 0 in p 0
2 in q 1
3 in p 2
4 in q 3
5 in p 4
6 in q 5
7 in p 6
8 in q 7
9 in p 8
10 in q
    [all...]
  /external/valgrind/main/none/tests/x86/
smc1.stdout.exp 0 in p 0
2 in q 1
3 in p 2
4 in q 3
5 in p 4
6 in q 5
7 in p 6
8 in q 7
9 in p 8
10 in q
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
EventSendingController.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 ITS CONTRIBUTORS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29 void mouseDown(in long buttonNumber, in object modifierArray);
30 void mouseUp(in long buttonNumber, in object modifierArray)
    [all...]
  /frameworks/base/core/java/android/speech/tts/
ITextToSpeechService.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
36 * @param queueMode Determines what to do to requests already in the queue.
39 int speak(in IBinder callingInstance, in String text, in int queueMode, in Bundle params);
50 int synthesizeToFile(in IBinder callingInstance, in String text,
51 in String filename, in Bundle params)
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathElement.idl 5 * 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 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 SVGPoint getPointAtLength(in float distance);
39 unsigned long getPathSegAtLength(in float distance);
43 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(in float x,
44 in float y)
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFrameLoadDelegate.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
66 HRESULT didStartProvisionalLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
75 HRESULT didReceiveServerRedirectForProvisionalLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame)
    [all...]
IWebResourceLoadDelegate.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
78 HRESULT identifierForInitialRequest([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebDataSource* dataSource, [in] unsigned long identifier)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/boolean/
der_decode_boolean.c 4 * algorithms in a highly modular and flexible manner.
23 @param in The destination for the DER encoded BOOLEAN
28 int der_decode_boolean(const unsigned char *in, unsigned long inlen,
31 LTC_ARGCHK(in != NULL);
34 if (inlen != 3 || in[0] != 0x01 || in[1] != 0x01 || (in[2] != 0x00 && in[2] != 0xFF)) {
38 *out = (in[2]==0xFF) ? 1 : 0;
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.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
38 void scale(in float sx, in float sy);
39 void rotate(in float angle);
40 void translate(in float tx, in float ty)
    [all...]
  /external/webkit/Source/WebCore/dom/
TouchEvent.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 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
39 void initTouchEvent(in TouchList touches,
40 in TouchList targetTouches,
41 in TouchList changedTouches,
42 in DOMString type
    [all...]
KeyboardEvent.idl 10 * This library is distributed in the hope that it will be useful,
23 // Introduced in DOM Level 3:
43 boolean getModifierState(in DOMString keyIdentifierArg);
46 // FIXME: this does not match the version in the DOM spec.
47 void initKeyboardEvent(in DOMString type,
48 in boolean canBubble,
49 in boolean cancelable,
50 in DOMWindow view,
51 in DOMString keyIdentifier,
52 in unsigned long keyLocation
    [all...]
WheelEvent.idl 10 * This library is distributed in the hope that it will be useful,
48 void initWheelEvent(in long wheelDeltaX,
49 in long wheelDeltaY,
50 in DOMWindow view,
51 in long screenX,
52 in long screenY,
53 in long clientX,
54 in long clientY,
55 in boolean ctrlKey,
56 in boolean altKey
    [all...]
BeforeLoadEvent.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 initBeforeLoadEvent(in DOMString type,
31 in boolean canBubble,
32 in boolean cancelable,
33 in DOMString url)
    [all...]
MessageEvent.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
40 [Custom] void initMessageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in SerializedScriptValue dataArg, in DOMString originArg, in DOMString lastEventIdArg, in DOMWindow s (…)
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathEvaluator.idl 9 * This library is distributed in the hope that it will be useful,
22 XPathExpression createExpression(in DOMString expression,
23 in XPathNSResolver resolver)
26 XPathNSResolver createNSResolver(in Node nodeResolver);
28 XPathResult evaluate(in DOMString expression,
29 in Node contextNode,
30 in XPathNSResolver resolver,
31 in unsigned short type,
32 in XPathResult inResult)
  /frameworks/base/core/java/android/speech/
IRecognitionListener.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 onReadyForSpeech(in Bundle params);
41 * The sound level in the audio stream has changed.
45 void onRmsChanged(in float rmsdB);
52 void onBufferReceived(in byte[] buffer);
62 * @param error code is defined in {@link SpeechRecognizer}
64 void onError(in int error);
71 void onResults(in Bundle results);
78 void onPartialResults(in Bundle results)
    [all...]
  /external/clang/test/Misc/
warn-in-system-header.c 3 #include <warn-in-system-header.h>
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_os2ip.c 4 * algorithms in a highly modular and flexible manner.
22 @param in The binary string to read
26 int pkcs_1_os2ip(void *n, unsigned char *in, unsigned long inlen)
28 return mp_read_unsigned_bin(n, in, inlen);
  /external/valgrind/main/memcheck/tests/
wrap8.stdout.exp 2 in wrapper1-pre: fact(15)
3 in wrapper2-pre: fact(14)
4 in wrapper1-pre: fact(13)
5 in wrapper2-pre: fact(12)
6 in wrapper1-pre: fact(11)
7 in wrapper2-pre: fact(10)
8 in wrapper1-pre: fact(9)
9 in wrapper2-pre: fact(8)
10 in wrapper1-pre: fact(7)
11 in wrapper2-pre: fact(6
    [all...]

Completed in 2006 milliseconds

1 2 3 4 5 6 7 8 91011>>