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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/ppapi/api/
ppb_file_io.idl 3 * found in the LICENSE file.
36 * <code>PP_FILEOPENFLAG_EXCLUSIVE</code> was also specified, in which case
58 * This is only supported in version 1.2 (Chrome 29) and later.
73 * @param[in] instance A <code>PP_Instance</code> identifying the instance
79 PP_Resource Create([in] PP_Instance instance);
83 * @param[in] resource A <code>PP_Resource</code> corresponding to a FileIO.
89 PP_Bool IsFileIO([in] PP_Resource resource);
94 * values. Upon success, the corresponding file is classified as "in use"
98 * @param[in] file_io A <code>PP_Resource</code> corresponding to a
100 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a fil
    [all...]
ppb_graphics_3d.idl 3 * found in the LICENSE file.
57 * @param[in] instance The module instance.
58 * @param[in] attribute The attribute for which maximum value is queried.
78 [in] PP_Resource instance,
79 [in] int32_t attribute,
88 * @param[in] instance The module instance.
90 * @param[in] share_context The 3D context with which the created context
96 * <code>PPB_Graphics3D</code> can share data in this fashion.
98 * @param[in] attrib_list specifies a list of attributes for the context.
99 * It is a list of attribute name-value pairs in which each attribute i
    [all...]
ppb_network_list.idl 3 * found in the LICENSE file.
69 * @param[in] resource A <code>PP_Resource</code> resource.
75 PP_Bool IsNetworkList([in] PP_Resource resource);
78 * Gets number of interfaces in the list.
80 * @param[in] resource A <code>PP_Resource</code> corresponding to a
86 uint32_t GetCount([in] PP_Resource resource);
91 * @param[in] resource A <code>PP_Resource</code> corresponding to a
93 * @param[in] index Index of the network interface.
98 PP_Var GetName([in] PP_Resource resource,
99 [in] uint32_t index)
    [all...]
ppb_core.idl 3 * found in the LICENSE file.
26 * @param[in] config A <code>PP_Resource</code> corresponding to a
29 void AddRefResource([in] PP_Resource resource);
34 * @param[in] config A <code>PP_Resource</code> corresponding to a
37 void ReleaseResource([in] PP_Resource resource);
72 * callback. Even in this case, the callback will be scheduled
78 * @param[in] delay_in_milliseconds An int32_t delay in milliseconds.
79 * @param[in] callback A <code>PP_CompletionCallback</code> callback function
81 * @param[in] result An int32_t that the browser will pass to the give
    [all...]
ppb_video_decoder.idl 3 * found in the LICENSE file.
43 * @param[in] instance A <code>PP_Instance</code> identifying the instance
50 [in] PP_Instance instance);
55 * @param[in] resource A <code>PP_Resource</code> identifying a resource.
62 [in] PP_Resource resource);
68 * @param[in] video_decoder A <code>PP_Resource</code> identifying the video
70 * @param[in] graphics3d_context A <code>PPB_Graphics3D</code> resource to use
72 * @param[in] profile A <code>PP_VideoProfile</code> specifying the video
74 * @param[in] allow_software_fallback A <code>PP_Bool</code> specifying
77 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upo
    [all...]
ppb_host_resolver.idl 3 * found in the LICENSE file.
49 * Permissions: In order to run <code>Resolve()</code>, apps permission
58 * @param[in] instance A <code>PP_Instance</code> identifying one instance of
64 PP_Resource Create([in] PP_Instance instance);
69 * @param[in] resource A <code>PP_Resource</code> to check.
74 PP_Bool IsHostResolver([in] PP_Resource resource);
81 * @param[in] host_resolver A <code>PP_Resource</code> corresponding to a host
83 * @param[in] host The host name (or IP address literal) to resolve.
84 * @param[in] port The port number to be set in the resulting networ
    [all...]
ppb_compositor_layer.idl 3 * found in the LICENSE file.
14 * based on the source RGBA values in layers with the RGBA values that are
15 * already in the destination framebuffer.
19 * This interface is still in development (Dev API status) and may change,
49 * @param[in] resource The <code>PP_Resource</code> to test.
55 PP_Bool IsCompositorLayer([in] PP_Resource resource);
63 * param[in] layer A <code>PP_Resource</code> corresponding to a compositor
65 * param[in] red A <code>float</code> for the red color component. It will be
67 * param[in] green A <code>float</code> for the green color component. It will
69 * param[in] blue A <code>float</code> for the blue color component. It wil
    [all...]
ppb_console.idl 3 * found in the LICENSE file.
32 [in] PP_Instance instance,
33 [in] PP_LogLevel level,
34 [in] PP_Var value);
44 * doing the log statement rather than have "python" show up in the console.
47 [in] PP_Instance instance,
48 [in] PP_LogLevel level,
49 [in] PP_Var source,
50 [in] PP_Var value);
  /external/chromium_org/ppapi/api/private/
ppb_tcp_socket_private.idl 3 * found in the LICENSE file.
35 PP_Resource Create([in] PP_Instance instance);
40 PP_Bool IsTCPSocket([in] PP_Resource resource);
47 int32_t Connect([in] PP_Resource tcp_socket,
48 [in] str_t host,
49 [in] uint16_t port,
50 [in] PP_CompletionCallback callback);
56 int32_t ConnectWithNetAddress([in] PP_Resource tcp_socket,
57 [in] PP_NetAddress_Private addr,
58 [in] PP_CompletionCallback callback)
    [all...]
ppb_input_event_private.idl 3 * found in the LICENSE file.
22 * latency is shown in the trace viewer. The starting point of the input
29 * Notes: In the current version, only Graphics2D damage is considered as
33 * @param[in] event A <code>PP_Resource</code> corresponding to an input
36 * @param[in] has_damage A bool indicating whether the event has caused any
41 PP_Bool TraceInputLatency([in] PP_Resource event,
42 [in] PP_Bool has_damage);
50 * @param[in] instance The <code>PP_Instance</code> of the instance requesting
53 void StartTrackingLatency([in] PP_Instance instance);
ppb_testing_private.idl 3 * found in the LICENSE file.
7 * This file contains interface functions used for unit testing. Do not use in
8 * production code. They are not guaranteed to be available in normal plugin
27 * plugin slower. In some cases, this may be a very expensive operation (it
30 * Data will be read into the image starting at |top_left| in the device
42 * that have not yet been flushed; these operations are only reflected in
46 PP_Bool ReadImageData([in] PP_Resource device_context_2d,
47 [in] PP_Resource image,
48 [in] PP_Point top_left);
55 * messages, giving the asynchronous operation time to complete. In you
    [all...]
ppb_host_resolver_private.idl 3 * found in the LICENSE file.
41 PP_Resource Create([in] PP_Instance instance);
46 PP_Bool IsHostResolver([in] PP_Resource resource);
51 * obtained. These addresses can be be used in Connect, Bind or
54 int32_t Resolve([in] PP_Resource host_resolver,
55 [in] str_t host,
56 [in] uint16_t port,
57 [in] PP_HostResolver_Private_Hint hint,
58 [in] PP_CompletionCallback callback);
63 PP_Var GetCanonicalName([in] PP_Resource host_resolver)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/
depend.stg 5 * dependencies and generated files. in and out
9 dependencies(grammarFileName,in,out) ::= <<
10 <if(in)><grammarFileName>: <in; separator=", "><endif>
  /external/chromium_org/ppapi/api/dev/
ppp_widget_dev.idl 3 * found in the LICENSE file.
21 void Invalidate([in] PP_Instance instance,
22 [in] PP_Resource widget,
23 [in] PP_Rect dirty_rect);
ppp_zoom_dev.idl 3 * found in the LICENSE file.
19 * Instruct plug-in to zoom according to the given factor and whether the zoom
23 void Zoom([in] PP_Instance instance,
24 [in] double_t factor,
25 [in] PP_Bool text_only);
ppb_zoom_dev.idl 3 * found in the LICENSE file.
24 * only needed in case a plugin can update its own zoom, say because of its
27 void ZoomChanged([in] PP_Instance instance,
28 [in] double_t factor);
32 void ZoomLimitsChanged([in] PP_Instance instance,
33 [in] double_t minimum_factor,
34 [in] double_t maximum_factor);
ppb_text_input_dev.idl 3 * found in the LICENSE file.
16 * PP_TextInput_Type is used to indicate the status of a plugin in regard to
22 * Input caret is not in an editable mode, no input method shall be used.
26 * Input caret is in a normal editable mode, any input method can be used.
30 * Input caret is in a password box, an input method may be used only if
49 * Typical use of this information in the browser is to properly
51 * keyboards in touch screen based devices, or input method editors often
54 void SetTextInputType([in] PP_Instance instance,
55 [in] PP_TextInput_Type_Dev type);
59 * bounding box of the text input area. Typical use of this information in
    [all...]
ppb_widget_dev.idl 3 * found in the LICENSE file.
25 PP_Bool IsWidget([in] PP_Resource resource);
32 PP_Bool Paint([in] PP_Resource widget,
33 [in] PP_Rect rect,
34 [in] PP_Resource image);
37 * Pass in an event to a widget. It'll return PP_TRUE if the event was
41 PP_Bool HandleEvent([in] PP_Resource widget, [in] PP_Resource input_event);
47 PP_Bool GetLocation([in] PP_Resource widget,
54 void SetLocation([in] PP_Resource widget
    [all...]
  /external/libcxx/test/strings/basic.string/string.nonmembers/string.io/
stream_extract.pass.cpp 26 std::istringstream in("a bc defghij");
28 in >> s;
29 assert(in.good());
31 assert(in.peek() == ' ');
32 in >> s;
33 assert(in.good());
35 assert(in.peek() == ' ');
36 in.width(3);
37 in >> s;
38 assert(in.good())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
stream_extract.pass.cpp 26 std::istringstream in("a bc defghij");
28 in >> s;
29 assert(in.good());
31 assert(in.peek() == ' ');
32 in >> s;
33 assert(in.good());
35 assert(in.peek() == ' ');
36 in.width(3);
37 in >> s;
38 assert(in.good())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO7816d4Padding.java 8 * A padder that adds the padding according to the scheme referenced in
36 * add the pad bytes to the passed in block, returning the
40 byte[] in,
43 int added = (in.length - inOff);
45 in [inOff]= (byte) 0x80;
48 while (inOff < in.length)
50 in[inOff] = (byte) 0;
58 * return the number of pad bytes present in the block.
60 public int padCount(byte[] in)
63 int count = in.length - 1
    [all...]
  /external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
gyptest-normalize-paths.py 5 # found in the LICENSE file.
24 if '$!product_dir' in subninja:
26 if 'out\\Default' in subninja:
30 if ('..\\..\\things\\AnotherName.exe' in second or
31 'AnotherName.exe' not in second):
35 if '$(VSInstallDir)' in copytarget:
39 if '..\\..\\out\\Default' in action:
41 if '..\\..\\SomethingElse' in action or 'SomethingElse' not in action:
43 if '..\\..\\SomeOtherInput' in action or 'SomeOtherInput' not in action
    [all...]
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /frameworks/base/media/java/android/media/tv/
ITvInputServiceCallback.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
27 void addHardwareTvInput(in int deviceId, in TvInputInfo inputInfo);
28 void addHdmiTvInput(in int id, in TvInputInfo inputInfo);
29 void removeTvInput(in String inputId);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]

Completed in 721 milliseconds

1 2 3 4 56 7 8 91011>>