/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellIdentityLteTest.java | 37 private static final int CI = 268435455; field in CellIdentityLteTest 56 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, MNC_STR, in testDefaultConstructor() 59 assertEquals(CI, ci.getCi()); in testDefaultConstructor() 73 String globalCi = MCC_STR + MNC_STR + Integer.toString(CI, 16); in testDefaultConstructor() 81 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, in testConstructorWithThreeDigitMnc() 95 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, in testConstructorWithTwoDigitMnc() 108 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, null, null, ALPHA_LONG, in testConstructorWithEmptyMccMnc() 118 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT, in testConstructorWithEmptyMccMnc() 128 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, null, MNC_STR, ALPHA_LONG, ALPHA_SHORT, in testConstructorWithEmptyMccMnc() 138 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, "", "", ALPHA_LONG, ALPHA_SHORT, in testConstructorWithEmptyMccMnc() [all …]
|
D | CellIdentityTest.java | 39 private static final int CI = 268435456; field in CellIdentityTest 111 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT, in testEquals() 114 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT, in testEquals() 119 ciA = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, null, null, ALPHA_LONG, in testEquals() 121 ciB = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, null, null, ALPHA_LONG, in testEquals() 126 ciA = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, null, in testEquals() 128 ciB = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, null, null, ALPHA_LONG, in testEquals() 136 CellIdentity ci = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, in testParcel() 208 CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT, in testGetMccMncString() 220 CellIdentityNr nr = new CellIdentityNr(PCI, TAC, EARFCN, BANDS, MCC_STR, MNC_STR, CI, in testGetMccMncString()
|
D | CellIdentityTdscdmaTest.java | 34 private static final int CI = 268435456; field in CellIdentityTdscdmaTest
|
D | RILTest.java | 241 private static final int CI = 268435456; field in RILTest 1564 cellIdentity0.ci = CI; in getCellIdentityLte_1_2() 1625 CellIdentityLte cellIdentityLte = new CellIdentityLte(CI, PCI, TAC, EARFCN, new int[] {}, in testConvertHalCellInfoList_1_4ForLte() 1686 CellIdentityLte cellIdentityLte = new CellIdentityLte(CI, PCI, TAC, EARFCN, in testConvertHalCellInfoList_1_5ForLte() 1726 CellIdentityLte cellIdentityLte = new CellIdentityLte(CI, PCI, TAC, EARFCN, in testConvertHalCellInfoList_1_6ForLte() 2245 cellinfo.cellidentity.nci = CI; in testConvertHalCellInfoList_1_4ForNr() 2274 new int[] {}, MCC_STR, MNC_STR, CI, ALPHA_LONG, ALPHA_SHORT, in testConvertHalCellInfoList_1_4ForNr()
|
/frameworks/compile/libbcc/lib/ |
D | RSX86CallConvPass.cpp | 147 llvm::CallInst *CI = llvm::cast<llvm::CallInst>(CS.getInstruction()); in ReplaceCallInsn() local 149 auto NewCI = llvm::CallInst::Create(NewFn, Args, "", CI); in ReplaceCallInsn() 157 if (CI->isTailCall()) in ReplaceCallInsn() 160 if (!CI->getType()->isVoidTy()) in ReplaceCallInsn() 161 CI->replaceAllUsesWith(NewCI); in ReplaceCallInsn() 163 CI->eraseFromParent(); in ReplaceCallInsn()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 1261 const CallInst &CI = cast<CallInst>(I); in WriteInstruction() local 1262 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType()); in WriteInstruction() 1267 Vals.push_back(VE.getAttributeID(CI.getAttributes())); in WriteInstruction() 1268 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall())); in WriteInstruction() 1269 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee in WriteInstruction() 1273 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param. in WriteInstruction() 1277 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands(); in WriteInstruction() 1279 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs in WriteInstruction()
|
D | ValueEnumerator.cpp | 101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator() local 102 EnumerateAttributes(CI->getAttributes()); in ValueEnumerator()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 1323 const CallInst &CI = cast<CallInst>(I); in WriteInstruction() local 1324 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType()); in WriteInstruction() 1329 Vals.push_back(VE.getAttributeID(CI.getAttributes())); in WriteInstruction() 1330 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall())); in WriteInstruction() 1331 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee in WriteInstruction() 1335 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param. in WriteInstruction() 1339 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands(); in WriteInstruction() 1341 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs in WriteInstruction()
|
D | ValueEnumerator.cpp | 101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator() local 102 EnumerateAttributes(CI->getAttributes()); in ValueEnumerator()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | BitcodeWriter.cpp | 1357 const CallInst &CI = cast<CallInst>(I); in WriteInstruction() local 1358 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType()); in WriteInstruction() 1363 Vals.push_back(VE.getAttributeID(CI.getAttributes())); in WriteInstruction() 1364 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall())); in WriteInstruction() 1365 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee in WriteInstruction() 1369 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param. in WriteInstruction() 1373 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands(); in WriteInstruction() 1375 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs in WriteInstruction()
|
D | ValueEnumerator.cpp | 101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator() local 102 EnumerateAttributes(CI->getAttributes()); in ValueEnumerator()
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 56 if (CallInst *CI = dyn_cast<CallInst>(I)) { in FindExnAndSelIntrinsics() local 57 switch (CI->getCalledFunction()->getIntrinsicID()) { in FindExnAndSelIntrinsics() 61 Exn = CI; in FindExnAndSelIntrinsics() 65 Sel = CI; in FindExnAndSelIntrinsics() 91 if (const ConstantInt *CI = dyn_cast<ConstantInt>(EHSel->getArgOperand(i))){ in TransferClausesToLandingPadInst() local 92 unsigned FilterLength = CI->getZExtValue(); in TransferClausesToLandingPadInst() 320 CallInst *CI = cast<CallInst>(*Declare->use_begin()); in CheckDebugInfoIntrinsics() local 321 CI->eraseFromParent(); in CheckDebugInfoIntrinsics() 3683 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) in materialize() local 3684 UpgradeIntrinsicCall(CI, I->second); in materialize() [all …]
|
/frameworks/base/core/res/geoid_map_assets/ |
D | expiration-distance-disk-tile-7.textpb | 2 …036P\3423\310]2\306\303(\"\334\n\212:g\332\204\304u\\\3575\035\033Z\200\260CI=\2366\265\v\367\332+…
|
D | geoid-height-disk-tile-5.textpb | 2 …\027\226\241ij\'\226\240y*\026\222\242i*&z\214\276k\357\364\251\224\324\213CI\212\201\244\250^Z\25…
|
/frameworks/compile/slang/ |
D | slang_backend.cpp | 1026 llvm::CallInst *CI = IB->CreateCall(F, Params); in dumpExportFunctionInfo() local 1028 CI->setCallingConv(F->getCallingConv()); in dumpExportFunctionInfo() 1033 IB->CreateRet(CI); in dumpExportFunctionInfo()
|
/frameworks/base/tools/lint/ |
D | README.md | 105 CI tools might surface these warnings in code reviews. In order to create this file without
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 79 CallInst *CI = cast<CallInst>(*Declare->use_begin()); in CheckDebugInfoIntrinsics() local 80 CI->eraseFromParent(); in CheckDebugInfoIntrinsics() 3344 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) in materialize() local 3345 UpgradeIntrinsicCall(CI, I->second); in materialize() 3396 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) in materializeModule() local 3397 UpgradeIntrinsicCall(CI, I->second); in materializeModule()
|
/frameworks/base/services/tests/mockingservicestests/res/raw/ |
D | backup_telephony_with_password | 52 …��v6)�e}<�2(�cdo;{ւ��UU�J�]}�'�r�ol�h��}J���OqDO^�ӫjv%�RMQU����z�D����CI��4j��I����h��n,�
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 8840 HSPLandroid/icu/impl/ReplaceableUCharacterIterator;->getText([CI)I 9950 HSPLandroid/icu/text/ReplaceableString;->getChars(II[CI)V 10016 HSPLandroid/icu/text/SimpleDateFormat$PatternItem;-><init>(CI)V 10031 HSPLandroid/icu/text/SimpleDateFormat;->isNumeric(CI)Z 10271 HSPLandroid/icu/util/MutableCodePointTrie$MixedBlocks;->findBlock([C[CI)I 10278 HSPLandroid/icu/util/MutableCodePointTrie$MixedBlocks;->makeHashCode([CI)I 10295 HSPLandroid/icu/util/MutableCodePointTrie;->equalBlocks([CI[CII)Z 10296 HSPLandroid/icu/util/MutableCodePointTrie;->equalBlocks([CI[III)Z 10303 HSPLandroid/icu/util/MutableCodePointTrie;->getOverlap([CI[CII)I 10304 HSPLandroid/icu/util/MutableCodePointTrie;->getOverlap([CI[III)I [all …]
|
/frameworks/base/boot/ |
D | boot-image-profile.txt | 8837 HSPLandroid/icu/impl/ReplaceableUCharacterIterator;->getText([CI)I 9947 HSPLandroid/icu/text/ReplaceableString;->getChars(II[CI)V 10013 HSPLandroid/icu/text/SimpleDateFormat$PatternItem;-><init>(CI)V 10028 HSPLandroid/icu/text/SimpleDateFormat;->isNumeric(CI)Z 10268 HSPLandroid/icu/util/MutableCodePointTrie$MixedBlocks;->findBlock([C[CI)I 10275 HSPLandroid/icu/util/MutableCodePointTrie$MixedBlocks;->makeHashCode([CI)I 10292 HSPLandroid/icu/util/MutableCodePointTrie;->equalBlocks([CI[CII)Z 10293 HSPLandroid/icu/util/MutableCodePointTrie;->equalBlocks([CI[III)Z 10300 HSPLandroid/icu/util/MutableCodePointTrie;->getOverlap([CI[CII)I 10301 HSPLandroid/icu/util/MutableCodePointTrie;->getOverlap([CI[III)I [all …]
|
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | master_playlist | 430 ��4��1�-��yݟkG�GI*���D1�51�B1���z��ؼ?�&���&W���n��[p�/6�Ib+�9������۾�LF�ژCI�XB��,�m�r�… 2353 …��������O�X���/�y�y��o����[����r� *��c�FG9p�����jX�iH����c���2CI=@z\�Չ�a.��vg&���…
|
D | index9 | 1557 …��������O�X���/�y�y��o����[����r� *��c�FG9p�����jX�iH����c���2CI=@z\�Չ�a.��vg&���…
|
D | index13 | 1556 …��������O�X���/�y�y��o����[����r� *��c�FG9p�����jX�iH����c���2CI=@z\�Չ�a.��vg&���…
|
D | index15 | 1569 …��������O�X���/�y�y��o����[����r� *��c�FG9p�����jX�iH����c���2CI=@z\�Չ�a.��vg&���…
|
D | index11 | 1557 …��������O�X���/�y�y��o����[����r� *��c�FG9p�����jX�iH����c���2CI=@z\�Չ�a.��vg&���…
|