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

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
scan_is.pass.cpp 29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 2)
    [all...]
tolower_many.pass.cpp 26 std::wstring in(L" A\x07.a1");
28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == L' ');
30 assert(in[1] == L'a');
31 assert(in[2] == L'\x07');
32 assert(in[3] == L'.')
    [all...]
toupper_many.pass.cpp 26 std::wstring in(L" A\x07.a1");
28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == L' ');
30 assert(in[1] == L'A');
31 assert(in[2] == L'\x07');
32 assert(in[3] == L'.')
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppp_video_capture_dev.idl 3 * found in the LICENSE file.
31 void OnDeviceInfo([in] PP_Instance instance,
32 [in] PP_Resource video_capture,
33 [in] PP_VideoCaptureDeviceInfo_Dev info,
34 [in] uint32_t buffer_count,
35 [in, size_is(buffer_count)] PP_Resource[] buffers);
41 void OnStatus([in] PP_Instance instance,
42 [in] PP_Resource video_capture,
43 [in] uint32_t status);
52 void OnError([in] PP_Instance instance
    [all...]
ppp_video_decoder_dev.idl 3 * found in the LICENSE file.
25 * given in the parameters cannot be allocated decoder should be destroyed.
34 * |texture_target| the type of texture used. Sample targets in use are
39 [in] PP_Instance instance,
40 [in] PP_Resource decoder,
41 [in] uint32_t req_num_of_bufs,
42 [in] PP_Size dimensions,
43 [in] uint32_t texture_target);
55 [in] PP_Instance instance,
56 [in] PP_Resource decoder
    [all...]
ppp_scrollbar_dev.idl 3 * found in the LICENSE file.
19 void ValueChanged([in] PP_Instance instance,
20 [in] PP_Resource scrollbar,
21 [in] uint32_t value);
28 void OverlayChanged([in] PP_Instance instance,
29 [in] PP_Resource scrollbar,
30 [in] PP_Bool overlay);
ppb_video_capture_dev.idl 3 * found in the LICENSE file.
14 * Video capture interface. It goes hand-in-hand with PPP_VideoCapture_Dev.
19 * 3- Open a video capture device. In addition to a device reference (0 can be
20 * used to indicate the default device), you pass in the requested info
24 * 5- Receive the OnDeviceInfo callback, in PPP_VideoCapture_Dev, which will
27 * 6- On every frame captured by the browser, OnBufferReady (in
36 * in which case OnDeviceInfo will be called again, with new buffers.
47 [in] PP_Instance instance);
53 [in] PP_Resource video_capture);
58 * @param[in] video_capture A <code>PP_Resource</code> corresponding to
    [all...]
ppb_video_decoder_dev.idl 3 * found in the LICENSE file.
38 * |context| a PPB_Graphics3D resource in which decoding will happen.
44 [in] PP_Instance instance,
45 [in] PP_Resource context,
46 [in] PP_VideoDecoder_Profile profile);
58 [in] PP_Resource resource);
73 [in] PP_Resource video_decoder,
74 [in] PP_VideoBitstreamBuffer_Dev bitstream_buffer,
75 [in] PP_CompletionCallback callback);
92 [in] PP_Resource video_decoder
    [all...]
  /external/chromium_org/ppapi/api/
ppp_instance.idl 3 * found in the LICENSE file.
8 * pointers to methods that you must implement in your module.
18 * functions that you must implement in your module. These functions can be
32 * <code>PP_Instance</code> handle will be used in subsequent calls to
35 * It's possible for more than one instance to be created in a single module.
37 * <code>OnDestroy</code> in between, and should be prepared to maintain
43 * @param[in] instance A new <code>PP_Instance</code> identifying one
46 * @param[in] argc The number of arguments contained in <code>argn</code>
49 * @param[in] argn An array of argument names. These argument names ar
    [all...]
ppb_input_event.idl 3 * found in the LICENSE file.
116 * (via RequestFilteringInputEvents()). In non-filtering mode the event will
118 * handling mouse events in filtering mode, you may want to return true from
245 * Identifies scroll wheel input event. Wheel events must be requested in
260 * frames in a page.
301 * classes of events you are interested in to have them be delivered to
339 * illegal. In the case of an invalid bit, all valid bits will be applied
344 int32_t RequestInputEvents([in] PP_Instance instance,
345 [in] uint32_t event_classes);
351 * By default, no input events are delivered. In most cases you woul
    [all...]
  /external/clang/test/CodeGen/
arm64_vshift.c 4 int8x8_t test_vqshl_n_s8(int8x8_t in) {
6 // CHECK: call <8 x i8> @llvm.aarch64.neon.sqshl.v8i8(<8 x i8> %in, <8 x i8> <i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1>)
7 return vqshl_n_s8(in, 1);
10 int16x4_t test_vqshl_n_s16(int16x4_t in) {
12 // CHECK: call <4 x i16> @llvm.aarch64.neon.sqshl.v4i16(<4 x i16> %in, <4 x i16> <i16 1, i16 1, i16 1, i16 1>)
13 return vqshl_n_s16(in, 1);
16 int32x2_t test_vqshl_n_s32(int32x2_t in) {
18 // CHECK: call <2 x i32> @llvm.aarch64.neon.sqshl.v2i32(<2 x i32> %in, <2 x i32> <i32 1, i32 1>)
19 return vqshl_n_s32(in, 1);
22 int64x1_t test_vqshl_n_s64(int64x1_t in) {
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSessionListener.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 callSessionProgressing(in IImsCallSession session, in ImsStreamMediaProfile profile);
36 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile);
37 void callSessionStartFailed(in IImsCallSession session, in ImsReasonInfo reasonInfo);
38 void callSessionTerminated(in IImsCallSession session, in ImsReasonInfo reasonInfo)
    [all...]
  /external/chromium_org/ppapi/api/private/
ppb_uma_private.idl 3 * found in the LICENSE file.
22 * sample given in milliseconds in the histogram given by |name|, possibly
26 void HistogramCustomTimes([in] PP_Instance instance,
27 [in] PP_Var name,
28 [in] int64_t sample,
29 [in] int64_t min,
30 [in] int64_t max,
31 [in] uint32_t bucket_count);
35 * in the histogram given by |name|, possibly creating the histogram if i
    [all...]
ppp_find_private.idl 3 * found in the LICENSE file.
13 * results will be updated asynchronously via NumberOfFindResultsChanged in
15 * called in the case of the search term changing.
17 * Return PP_FALSE if the plugin doesn't support find in page. Consequently,
20 PP_Bool StartFind([in] PP_Instance instance,
21 [in] str_t text,
22 [in] PP_Bool case_sensitive);
27 void SelectFindResult([in] PP_Instance instance,
28 [in] PP_Bool forward);
34 void StopFind([in] PP_Instance instance)
    [all...]
  /external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
tolower_many.pass.cpp 26 std::string in(" A\x07.a1");
28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == ' ');
30 assert(in[1] == 'a');
31 assert(in[2] == '\x07');
32 assert(in[3] == '.')
    [all...]
toupper_many.pass.cpp 26 std::string in(" A\x07.a1");
28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == ' ');
30 assert(in[1] == 'A');
31 assert(in[2] == '\x07');
32 assert(in[3] == '.')
    [all...]
  /external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
tolower_many.pass.cpp 26 std::wstring in(L" A\x07.a1");
28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == L' ');
30 assert(in[1] == L'a');
31 assert(in[2] == L'\x07');
32 assert(in[3] == L'.')
    [all...]
toupper_many.pass.cpp 26 std::wstring in(L" A\x07.a1");
28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == L' ');
30 assert(in[1] == L'A');
31 assert(in[2] == L'\x07');
32 assert(in[3] == L'.')
    [all...]
  /frameworks/base/core/java/android/accounts/
IAccountAuthenticator.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 addAccount(in IAccountAuthenticatorResponse response, String accountType,
32 String authTokenType, in String[] requiredFeatures, in Bundle options);
37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account,
38 in Bundle options);
43 void getAuthToken(in IAccountAuthenticatorResponse response, in Account account
    [all...]
  /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
23 void setBoolean(in String key, in boolean value, in int userId);
24 void setLong(in String key, in long value, in int userId);
25 void setString(in String key, in String value, in int userId)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
tolower_many.pass.cpp 26 std::string in(" A\x07.a1");
28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == ' ');
30 assert(in[1] == 'a');
31 assert(in[2] == '\x07');
32 assert(in[3] == '.')
    [all...]
toupper_many.pass.cpp 26 std::string in(" A\x07.a1");
28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
29 assert(in[0] == ' ');
30 assert(in[1] == 'A');
31 assert(in[2] == '\x07');
32 assert(in[3] == '.')
    [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
38 * @param queueMode Determines what to do to requests already in the queue.
42 int speak(in IBinder callingInstance, in CharSequence text, in int queueMode, in Bundle params,
56 int synthesizeToFileDescriptor(in IBinder callingInstance, in CharSequence text,
57 in ParcelFileDescriptor fileDescriptor, in Bundle params, String utteranceId)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestAcosh.rs 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 float __attribute__((kernel)) testAcoshFloatFloat(float in) {
24 return acosh(in);
27 float2 __attribute__((kernel)) testAcoshFloat2Float2(float2 in) {
28 return acosh(in);
31 float3 __attribute__((kernel)) testAcoshFloat3Float3(float3 in) {
32 return acosh(in);
35 float4 __attribute__((kernel)) testAcoshFloat4Float4(float4 in) {
36 return acosh(in);
    [all...]

Completed in 1159 milliseconds

12 3 4 5 6 7 8 91011>>