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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_ntoa.c 3 // found in the LICENSE file.
14 char* inet_ntoa(struct in_addr in) {
17 GetByte(&in, 0), GetByte(&in, 1),
18 GetByte(&in, 2), GetByte(&in, 3));
  /external/chromium_org/ppapi/api/dev/
ppb_file_chooser_dev.idl 3 * found in the LICENSE file.
40 * @param[in] instance A <code>PP_Instance</code> identifying one instance
42 * @param[in] mode A <code>PP_FileChooserMode_Dev</code> value that controls
44 * @param[in] accept_types A comma-separated list of MIME types and file
48 * types and file extensions. If a string in the comma-separated list begins
57 [in] PP_Instance instance,
58 [in] PP_FileChooserMode_Dev mode,
59 [in] PP_Var accept_types);
64 * @param[in] resource A <code>PP_Resource</code> corresponding to a generic
71 [in] PP_Resource resource)
    [all...]
ppb_buffer_dev.idl 3 * found in the LICENSE file.
16 * Allocates a buffer of the given size in bytes. The return value will have
21 [in] PP_Instance instance,
22 [in] uint32_t size_in_bytes);
29 [in] PP_Resource resource);
36 [in] PP_Resource resource,
44 [in] PP_Resource resource);
50 [in] PP_Resource resource);
  /external/chromium_org/ppapi/api/
ppb_var.idl 3 * found in the LICENSE file.
25 * @param[in] var A <code>PP_Var</code> that will have a reference added.
28 void AddRef([in] PP_Var var);
40 * @param[in] var A <code>PP_Var</code> that will have a reference removed.
43 void Release([in] PP_Var var);
47 * encoded in valid UTF-8 and is NOT NULL-terminated, the length must be
48 * specified in <code>len</code>. It is an error if the string is not
63 * @param[in] module A PP_Module uniquely identifying the module or .nexe.
64 * @param[in] data A string
65 * @param[in] len The length of the string
    [all...]
ppb_var_dictionary.idl 3 * found in the LICENSE file.
34 * @param[in] dict A dictionary var.
35 * @param[in] key A string var.
39 * <code>key</code> is not a string var, or it doesn't exist in
42 PP_Var Get([in] PP_Var dict, [in] PP_Var key);
47 * @param[in] dict A dictionary var.
48 * @param[in] key A string var. If this key hasn't existed in
51 * @param[in] value The value to set. The dictionary holds a reference to i
    [all...]
ppb_media_stream_audio_track.idl 3 * found in the LICENSE file.
8 * receiving audio samples from a MediaStream audio track in the browser.
39 * The sample rate of audio data in buffers. The attribute value is a
45 * The sample size of audio data in buffers in bytes. The attribute value is a
51 * The number of channels in audio buffers.
58 * The duration of an audio buffer in milliseconds.
70 * @param[in] resource The <code>PP_Resource</code> to test.
76 PP_Bool IsMediaStreamAudioTrack([in] PP_Resource resource);
97 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audi
    [all...]
ppb_url_request_info.idl 3 * found in the LICENSE file.
103 * no credentials are sent with the request and cookies are ignored in the
162 * and handle URL requests. This API is used in conjunction with
170 * @param[in] instance A <code>PP_Instance</code> identifying one instance
177 [in] PP_Instance instance);
183 * @param[in] resource A <code>PP_Resource</code> corresponding to a
191 [in] PP_Resource resource);
197 * @param[in] request A <code>PP_Resource</code> corresponding to a
199 * @param[in] property A <code>PP_URLRequestProperty</code> identifying the
201 * @param[in] value A <code>PP_Var</code> containing the property value
    [all...]
ppb_compositor.idl 3 * found in the LICENSE file.
19 * This interface is still in development (Dev API status) and may change,
73 * @param[in] resource The <code>PP_Resource</code> to test.
78 PP_Bool IsCompositor([in] PP_Resource resource);
83 * @param[in] instance A <code>PP_Instance</code> identifying one instance
89 PP_Resource Create([in] PP_Instance instance);
101 * param[in] compositor A <code>PP_Resource</code> corresponding to
107 PP_Resource AddLayer([in] PP_Resource compositor);
112 * param[in] compositor A <code>PP_Resource</code> corresponding to
114 * @param[in] cc A <code>PP_CompletionCallback</code> to be called whe
    [all...]
ppb_message_loop.idl 3 * found in the LICENSE file.
23 * suddenly see their PP_Resource handles become invalid. In this case, calls
64 * Some special threads created by the system can not have message loops. In
75 * It is legal to create threads in your plugin without message loops, but
76 * PPAPI calls will fail unless explicitly noted in the documentation.
81 * from those calls will be queued in the message loop and never run. The same
97 * loop (via PostQuit with should_destroy = PP_TRUE). In this case, any
98 * tasks in the message queue will be lost.
103 * PP_FALSE. In this case, the system will assume the message loop will be
176 int32_t AttachToCurrentThread([in] PP_Resource message_loop)
    [all...]
ppb_messaging.idl 3 * found in the LICENSE file.
30 * @param[in] instance A <code>PP_Instance</code> identifying one instance
32 * @param[in] message A <code>PP_Var</code> containing the data to be sent to
43 * Listeners for message events in JavaScript code will receive an object
46 * data in the received <code>MessageEvent</code>.
86 void PostMessage([in] PP_Instance instance, [in] PP_Var message);
98 * RegisterMessageHandler will return PP_ERROR_WRONG_THREAD in that case.
100 * the browser will not be able to call functions in the plugin's message
107 * will cause the current MessageHandler to be unregistered and replaced. In
    [all...]
  /external/chromium_org/ppapi/api/private/
ppb_tcp_server_socket_private.idl 3 * found in the LICENSE file.
23 PP_Resource Create([in] PP_Instance instance);
28 PP_Bool IsTCPServerSocket([in] PP_Resource resource);
35 * accept incoming connections or in the case of failure. Returns
37 * PP_ERROR_FAILED in the case of Listen failure. Otherwise, returns
40 int32_t Listen([in] PP_Resource tcp_server_socket,
41 [in] PP_NetAddress_Private addr,
42 [in] int32_t backlog,
43 [in] PP_CompletionCallback callback);
47 * PPB_TCPSocket_Private and stores reference to it in
    [all...]
ppb_flash_font_file.idl 3 * found in the LICENSE file.
19 [in] PP_Instance instance,
20 [in] PP_BrowserFont_Trusted_Description description,
21 [in] PP_PrivateFontCharset charset);
25 PP_Bool IsFlashFontFile([in] PP_Resource resource);
28 * |output_length| should pass in the size of |output|. And it will return
29 * the actual length of returned data. |output| could be NULL in order to
30 * query the size of the buffer size needed. In that case, the input value of
35 [in] PP_Resource font_file,
36 [in] uint32_t table
    [all...]
  /external/chromium_org/ppapi/generators/test_thunk/
simple.idl 3 * found in the LICENSE file.
19 PP_Resource Create([in] PP_Instance instance);
21 PP_Bool IsSimple([in] PP_Resource resource);
24 void PostMessage([in] PP_Instance instance, [in] PP_Var message);
26 uint32_t DoUint32Instance([in] PP_Instance instance);
29 uint32_t DoUint32Instance([in] PP_Instance instance,
30 [in] PP_Resource resource);
32 uint32_t DoUint32Resource([in] PP_Resource instance);
35 uint32_t DoUint32ResourceNoErrors([in] PP_Resource instance)
    [all...]
  /external/llvm/test/CodeGen/SystemZ/Large/
spill-02.py 39 for i in range(count):
46 for j in range(4):
47 for i in range(count):
52 # index for the alloca area. Also throw in a volatile store, so that this
66 for j in range(4):
67 for i in range(count):
  /frameworks/base/core/java/android/hardware/location/
IFusedLocationHardware.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
35 void registerSink(in IFusedLocationHardwareSink eventSink);
42 void unregisterSink(in IFusedLocationHardwareSink eventSink);
45 * Provides access to the batch size available in Hardware.
59 void startBatching(in int id, in FusedBatchOptions batchOptions);
67 void stopBatching(in int id);
70 * Updates a batching operation in progress.
77 void updateBatchingOptions(in int id, in FusedBatchOptions batchOptions)
    [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...]
  /packages/apps/LegacyCamera/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...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHealth.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 boolean registerAppConfiguration(in BluetoothHealthAppConfiguration config,
32 in IBluetoothHealthCallback callback);
33 boolean unregisterAppConfiguration(in BluetoothHealthAppConfiguration config);
34 boolean connectChannelToSource(in BluetoothDevice device, in BluetoothHealthAppConfiguration config);
35 boolean connectChannelToSink(in BluetoothDevice device, in BluetoothHealthAppConfiguration config,
37 boolean disconnectChannel(in BluetoothDevice device, in BluetoothHealthAppConfiguration config, int id)
    [all...]
IBluetoothHeadsetClient.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
29 boolean connect(in BluetoothDevice device);
30 boolean disconnect(in BluetoothDevice device);
32 boolean acceptIncomingConnect(in BluetoothDevice device);
33 boolean rejectIncomingConnect(in BluetoothDevice device);
36 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
37 int getConnectionState(in BluetoothDevice device);
38 boolean setPriority(in BluetoothDevice device, int priority);
39 int getPriority(in BluetoothDevice device)
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsUtListener.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 utConfigurationUpdated(in IImsUt ut, int id);
34 void utConfigurationUpdateFailed(in IImsUt ut, int id, in ImsReasonInfo error);
39 void utConfigurationQueried(in IImsUt ut, int id, in Bundle ssInfo);
40 void utConfigurationQueryFailed(in IImsUt ut, int id, in ImsReasonInfo error);
45 void utConfigurationCallBarringQueried(in IImsUt ut
    [all...]
  /external/chromium_org/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/chromium_org/ppapi/api/private/finish_writing_these/
ppb_flash_file.idl 3 * found in the LICENSE file.
25 * value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in case
29 [in] PP_Instance instance,
30 [in] str_t path,
31 [in] int32_t mode,
35 * success, one of the PP_ERROR_* in case of failure.
38 [in] PP_Instance instance,
39 [in] str_t path_from,
40 [in] str_t path_to);
44 * return value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in
    [all...]
  /frameworks/base/media/java/android/media/tv/
ITvInputManager.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
40 TvInputInfo getTvInputInfo(in String inputId, int userId);
44 void registerCallback(in ITvInputManagerCallback callback, int userId);
45 void unregisterCallback(in ITvInputManagerCallback callback, int userId);
49 boolean isRatingBlocked(in String rating, int userId);
51 void addBlockedRating(in String rating, int userId);
52 void removeBlockedRating(in String rating, int userId);
54 void createSession(in ITvInputClient client, in String inputId, int seq, int userId)
    [all...]

Completed in 796 milliseconds

1 2 3 4 5 6 78 91011>>