HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 76 - 100 of 38930) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
scan_not.pass.cpp 34 const std::wstring in(L"\x00DA A\x07.a1");
35 std::vector<F::mask> m(in.size());
36 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
37 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 3)
    [all...]
  /frameworks/base/core/java/android/bluetooth/le/
IPeriodicAdvertisingCallback.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 onSyncEstablished(in int syncHandle, in BluetoothDevice device, in int advertisingSid,
28 in int skip, in int timeout, in int status);
29 void onPeriodicAdvertisingReport(in PeriodicAdvertisingReport report);
30 void onSyncLost(in int syncHandle)
    [all...]
  /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...]
  /frameworks/base/media/java/android/media/
IMediaResourceMonitor.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
22 oneway void notifyResourceGranted(in int pid, in int type);
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
exposure_f.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
28 float4 RS_KERNEL exposure(float4 in)
30 return in * bright;
uc4tof4.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
20 float4 RS_KERNEL uc4tof4(uchar4 in) {
21 return convert_float4(in);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
scan_is.pass.cpp 32 const std::wstring in(L"\x00DA A\x07.a1");
33 std::vector<F::mask> m(in.size());
34 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
35 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 32 const std::wstring in(L"\x00DA A\x07.a1");
33 std::vector<F::mask> m(in.size());
34 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
35 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 3)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
scan_is.pass.cpp 34 const std::wstring in(L"\x00DA A\x07.a1");
35 std::vector<F::mask> m(in.size());
36 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
37 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 34 const std::wstring in(L"\x00DA A\x07.a1");
35 std::vector<F::mask> m(in.size());
36 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
37 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 3)
    [all...]
  /system/connectivity/wificond/aidl/android/net/wifi/
IANQPDoneCallback.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 oneway void OnANQPDone(in byte[] bssid, in byte[] anqp_result);
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 10 void cause_div_by_zero_in_header(int in) {
12 h = in/h;
16 void do_something (int in) {
17 in++;
18 in++;
21 void cause_div_by_zero_in_header2(int in) {
23 h2 = in/h2;
29 void cause_div_by_zero_in_header3(int in) {
31 h3 = in/h3;
37 void cause_div_by_zero_in_header4(int in) {
    [all...]
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/
ccp.pass.cpp 24 std::istrstream in(buf);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(!in.fail());
36 in.clear();
37 in.putback('g');
38 assert(!in.fail());
39 in.putback('g')
    [all...]
ccp_size.pass.cpp 24 std::istrstream in(buf, 7);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(in.fail());
36 in.clear();
37 in.putback('5');
38 assert(!in.fail());
39 in.putback('5')
    [all...]
cp.pass.cpp 24 std::istrstream in(buf);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(!in.fail());
36 in.clear();
37 in.putback('g');
38 assert(!in.fail());
39 in.putback('g')
    [all...]
cp_size.pass.cpp 24 std::istrstream in(buf, 7);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(in.fail());
36 in.clear();
37 in.putback('5');
38 assert(!in.fail());
39 in.putback('5')
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/
ccp.pass.cpp 23 std::istrstream in(buf);
25 in >> i;
28 in >> d;
31 in >> s;
33 assert(in.eof());
34 assert(!in.fail());
35 in.clear();
36 in.putback('g');
37 assert(!in.fail());
38 in.putback('g')
    [all...]
ccp_size.pass.cpp 23 std::istrstream in(buf, 7);
25 in >> i;
28 in >> d;
31 in >> s;
33 assert(in.eof());
34 assert(in.fail());
35 in.clear();
36 in.putback('5');
37 assert(!in.fail());
38 in.putback('5')
    [all...]
cp.pass.cpp 23 std::istrstream in(buf);
25 in >> i;
28 in >> d;
31 in >> s;
33 assert(in.eof());
34 assert(!in.fail());
35 in.clear();
36 in.putback('g');
37 assert(!in.fail());
38 in.putback('g')
    [all...]
cp_size.pass.cpp 23 std::istrstream in(buf, 7);
25 in >> i;
28 in >> d;
31 in >> s;
33 assert(in.eof());
34 assert(in.fail());
35 in.clear();
36 in.putback('5');
37 assert(!in.fail());
38 in.putback('5')
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/
ccp.pass.cpp 24 std::istrstream in(buf);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(!in.fail());
36 in.clear();
37 in.putback('g');
38 assert(!in.fail());
39 in.putback('g')
    [all...]
ccp_size.pass.cpp 24 std::istrstream in(buf, 7);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(in.fail());
36 in.clear();
37 in.putback('5');
38 assert(!in.fail());
39 in.putback('5')
    [all...]
cp.pass.cpp 24 std::istrstream in(buf);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(!in.fail());
36 in.clear();
37 in.putback('g');
38 assert(!in.fail());
39 in.putback('g')
    [all...]
cp_size.pass.cpp 24 std::istrstream in(buf, 7);
26 in >> i;
29 in >> d;
32 in >> s;
34 assert(in.eof());
35 assert(in.fail());
36 in.clear();
37 in.putback('5');
38 assert(!in.fail());
39 in.putback('5')
    [all...]
  /external/chromium-trace/catapult/common/lab/
keychain_unlock.sh 4 # found in the LICENSE file.
9 for hostname in "$@"

Completed in 1963 milliseconds

1 2 34 5 6 7 8 91011>>