/external/clang/test/SemaCXX/ |
new-array-size-conv.cpp | 5 struct ValueInt 7 ValueInt(int v = 0) : ValueLength(v) {} 18 struct ValueBoth : ValueInt, ValueEnum { }; 20 struct IndirectValueInt : ValueInt { }; 21 struct TwoValueInts : ValueInt, IndirectValueInt { }; // expected-warning{{direct base 'ValueInt' is inaccessible due to ambiguity:\n struct TwoValueInts -> struct ValueInt\n struct TwoValueInts -> struct IndirectValueInt -> struct ValueInt}} 25 (void)new int[ValueInt(10)]; 27 // expected-warning@-2{{implicit conversion from array size expression of type 'ValueInt' to integral type 'int' is a C++11 extension} [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/ |
HeadsetClientStateMachine.java | [all...] |
/hardware/libhardware_legacy/audio/ |
AudioDumpInterface.cpp | 193 int valueInt; 354 int valueInt; 357 if (param.getInt(String8("set_id"), valueInt) == NO_ERROR) { 358 mId = valueInt; 361 if (param.getInt(String8("format"), valueInt) == NO_ERROR) { 363 mFormat = valueInt; 368 if (param.getInt(String8("channels"), valueInt) == NO_ERROR) { 369 if (valueInt == AudioSystem::CHANNEL_OUT_STEREO || valueInt == AudioSystem::CHANNEL_OUT_MONO) { 370 mChannels = valueInt; [all...] |
AudioPolicyManagerBase.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGLoopInfo.cpp | 124 unsigned ValueInt = 1; 127 ValueInt = ValueAPS.getSExtValue(); 202 setVectorizeWidth(ValueInt); 205 setInterleaveCount(ValueInt); 208 setUnrollCount(ValueInt);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/ |
HeadsetStateMachine.java | 383 processConnectionEvent(event.valueInt, event.device); 524 processConnectionEvent(event.valueInt, event.device); 532 processAtBiev(event.valueInt, event.valueInt2, event.device); [all...] |
/external/vulkan-validation-layers/loader/ |
cJSON.h | 57 int valueint; /* The item's number, if type==cJSON_Number */ member in struct:cJSON 181 ((object) ? (object)->valueint = (object)->valuedouble = (val) : (val)) 183 ((object) ? (object)->valueint = (object)->valuedouble = (val) : (val))
|
cJSON.c | 128 item->valueint = (int)n; 192 } else if (fabs(((double)item->valueint) - d) <= DBL_EPSILON && 200 sprintf(str, "%d", item->valueint); 540 item->valueint = 1; [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
A2dpStateMachine.java | 202 processConnectionEvent(event.valueInt, event.device); 317 processConnectionEvent(event.valueInt, event.device); 545 processConnectionEvent(event.valueInt, event.device); 548 processAudioStateEvent(event.valueInt, event.device); [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/ |
A2dpSinkStateMachine.java | 224 processConnectionEvent(event.valueInt, event.device); 343 processConnectionEvent(event.valueInt, event.device); 560 processConnectionEvent(event.valueInt, event.device); 563 processAudioStateEvent(event.valueInt, event.device); [all...] |
/frameworks/av/services/audioflinger/ |
AudioMixer.cpp | 610 int valueInt = static_cast<int>(reinterpret_cast<uintptr_t>(value)); 619 static_cast<audio_channel_mask_t>(valueInt); 640 audio_format_t format = static_cast<audio_format_t>(valueInt); 654 audio_format_t format = static_cast<audio_format_t>(valueInt); 662 static_cast<audio_channel_mask_t>(valueInt); 676 ALOG_ASSERT(valueInt > 0, "bad sample rate %d", valueInt); 677 if (track.setResampler(uint32_t(valueInt), mSampleRate)) { 679 uint32_t(valueInt)); [all...] |
/frameworks/av/services/audiopolicy/managerdefault/ |
AudioPolicyManager.cpp | [all...] |
/external/robolectric/v1/lib/main/ |
h2-1.2.147.jar | |