HomeSort by relevance Sort by last modified time
    Searched defs:sm (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libcxx/test/re/re.submatch/re.submatch.members/
default.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm; local
25 assert(sm.matched == false);
29 typedef std::sub_match<const CharT*> SM;
30 SM sm; local
31 assert(sm.matched == false);
length.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 assert(sm.length() == 0);
27 sm.first = s;
28 sm.second = s + 3;
29 sm.matched = true;
30 assert(sm.length() == 3);
34 typedef std::sub_match<const CharT*> SM;
35 SM sm = SM(); local
    [all...]
compare_string_type.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 typedef SM::string_type string;
25 SM sm = SM(); local
26 SM sm2 = SM();
27 assert(sm.compare(string()) == 0);
29 sm.first = s;
30 sm.second = s + 3
39 SM sm = SM(); local
    [all...]
compare_sub_match.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM sm2 = SM();
26 assert(sm.compare(sm2) == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true
40 SM sm = SM(); local
    [all...]
compare_value_type_ptr.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM sm2 = SM();
26 assert(sm.compare("") == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true
37 SM sm = SM(); local
    [all...]
operator_string.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm;
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm;
37 SM sm = SM(); local
    [all...]
str.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm.str();
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm.str()
37 SM sm = SM(); local
    [all...]
  /external/libcxx/test/re/re.submatch/
types.pass.cpp 33 typedef std::sub_match<char*> SM;
34 static_assert((std::is_same<SM::iterator, char*>::value), "");
35 static_assert((std::is_same<SM::value_type, char>::value), "");
36 static_assert((std::is_same<SM::difference_type, std::ptrdiff_t>::value), "");
37 static_assert((std::is_same<SM::string_type, std::string>::value), "");
38 static_assert((std::is_convertible<SM*, std::pair<char*, char*>*>::value), "");
40 SM sm; local
41 sm.first = nullptr;
42 sm.second = nullptr
53 SM sm; local
    [all...]
  /frameworks/av/drm/drmserver/
main_drmserver.cpp 32 sp<IServiceManager> sm = defaultServiceManager(); local
33 ALOGV("ServiceManager: %p", sm.get());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
default.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm; local
25 assert(sm.matched == false);
29 typedef std::sub_match<const CharT*> SM;
30 SM sm; local
31 assert(sm.matched == false);
length.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 assert(sm.length() == 0);
27 sm.first = s;
28 sm.second = s + 3;
29 sm.matched = true;
30 assert(sm.length() == 3);
34 typedef std::sub_match<const CharT*> SM;
35 SM sm = SM(); local
    [all...]
compare_string_type.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 typedef SM::string_type string;
25 SM sm = SM(); local
26 SM sm2 = SM();
27 assert(sm.compare(string()) == 0);
29 sm.first = s;
30 sm.second = s + 3
39 SM sm = SM(); local
    [all...]
compare_sub_match.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM sm2 = SM();
26 assert(sm.compare(sm2) == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true
40 SM sm = SM(); local
    [all...]
compare_value_type_ptr.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM sm2 = SM();
26 assert(sm.compare("") == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true
37 SM sm = SM(); local
    [all...]
operator_string.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm;
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm;
37 SM sm = SM(); local
    [all...]
str.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm.str();
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm.str()
37 SM sm = SM(); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/
types.pass.cpp 33 typedef std::sub_match<char*> SM;
34 static_assert((std::is_same<SM::iterator, char*>::value), "");
35 static_assert((std::is_same<SM::value_type, char>::value), "");
36 static_assert((std::is_same<SM::difference_type, std::ptrdiff_t>::value), "");
37 static_assert((std::is_same<SM::string_type, std::string>::value), "");
38 static_assert((std::is_convertible<SM*, std::pair<char*, char*>*>::value), "");
40 SM sm; local
41 sm.first = nullptr;
42 sm.second = nullptr
53 SM sm; local
    [all...]
  /external/libcxx/test/re/re.submatch/re.submatch.op/
stream.pass.cpp 27 typedef std::sub_match<typename string::const_iterator> SM;
29 SM sm; local
30 sm.first = s.begin();
31 sm.second = s.end();
32 sm.matched = true;
34 os << sm; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/
stream.pass.cpp 27 typedef std::sub_match<typename string::const_iterator> SM;
29 SM sm; local
30 sm.first = s.begin();
31 sm.second = s.end();
32 sm.matched = true;
34 os << sm; local
  /system/security/keystore/
keystore_get.cpp 25 sp<IServiceManager> sm = defaultServiceManager(); local
26 sp<IBinder> binder = sm->getService(String16("android.security.keystore"));
  /frameworks/av/media/libmediaplayerservice/
ActivityManager.cpp 35 sp<IServiceManager> sm = defaultServiceManager(); local
36 sp<IBinder> am = sm->getService(String16("activity"));
  /frameworks/native/include/binder/
IServiceManager.h 71 const sp<IServiceManager> sm = defaultServiceManager(); local
72 if (sm != NULL) {
73 *outService = interface_cast<INTERFACE>(sm->getService(name));
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 157 SensorManager sm = (SensorManager) getSystemService(SENSOR_SERVICE); local
158 sm.registerListener(this, mSensor, SensorManager.SENSOR_DELAY_UI);
166 SensorManager sm = (SensorManager) getSystemService(SENSOR_SERVICE); local
167 sm.unregisterListener(this);
211 SensorManager sm = (SensorManager) getSystemService(SENSOR_SERVICE); local
212 List<Sensor> sensors = sm.getSensorList(Sensor.TYPE_ALL);
222 Sensor def_sens = sm.getDefaultSensor(avail_sensor.getType());
  /cts/tests/tests/security/jni/
android_security_cts_AudioPolicyBinderTest.cpp 45 sp<IServiceManager> sm = defaultServiceManager(); local
android_security_cts_LoadEffectLibraryTest.cpp 36 sp<IServiceManager> sm = defaultServiceManager(); local
37 if (sm == 0) {
41 sp<IBinder> binder = sm->getService(String16("media.audio_flinger"));

Completed in 217 milliseconds

1 2 3 4 5 6 7 8 9