Home
last modified time | relevance | path

Searched refs:CI (Results 1 – 20 of 20) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellIdentityLteTest.java30 private static final int CI = 268435456; field in CellIdentityLteTest
48 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, MNC_STR, in testDefaultConstructor()
51 assertEquals(CI, ci.getCi()); in testDefaultConstructor()
70 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, mncWithThreeDigit, in testConstructorWithThreeDigitMnc()
84 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, mncWithTwoDigit, in testConstructorWithTwoDigitMnc()
97 CI, PCI, TAC, EARFCN, BANDWIDTH, null, null, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc()
106 CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc()
115 CI, PCI, TAC, EARFCN, BANDWIDTH, null, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc()
124 CI, PCI, TAC, EARFCN, BANDWIDTH, "", "", ALPHA_LONG, ALPHA_SHORT); in testConstructorWithEmptyMccMnc()
136 new CellIdentityLte(MCC, MNC, CI, PCI, TAC); in testFormerConstructor()
[all …]
DCellIdentityTest.java29 private static final int CI = 268435456; field in CellIdentityTest
58 CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testEquals()
60 CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testEquals()
64 ciA = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, null, null, ALPHA_LONG, in testEquals()
66 ciB = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, null, null, ALPHA_LONG, in testEquals()
71 ciA = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, null, ALPHA_LONG, in testEquals()
73 ciB = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, null, null, ALPHA_LONG, in testEquals()
81 CellIdentity ci = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, MNC_STR, in testParcel()
DCellIdentityTdscdmaTest.java30 private static final int CI = 268435456; field in CellIdentityTdscdmaTest
DRILTest.java174 private static final int CI = 268435456; field in RILTest
1074 lte.cellIdentityLte.ci = CI; in testConvertHalCellInfoListForLTE()
1104 CellIdentityLte cil = new CellIdentityLte(CI, PCI, TAC, EARFCN, Integer.MAX_VALUE, MCC_STR, in testConvertHalCellInfoListForLTE()
1248 CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForLTE()
1268 CellIdentityLte cil = new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDWIDTH, MCC_STR, MNC_STR, in testConvertHalCellInfoList_1_2_ForLTEWithEmptyOperatorInfo()
1292 CI, PCI, TAC, EARFCN, BANDWIDTH, null, null, ALPHA_LONG, ALPHA_SHORT); in testConvertHalCellInfoList_1_2ForLTEWithEmptyMccMnc()
1496 lte.cellIdentityLte.base.ci = CI; in getCellInfoListForLTE()
/frameworks/compile/libbcc/lib/
DRSX86CallConvPass.cpp147 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/
DBitcodeWriter.cpp1261 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()
DValueEnumerator.cpp101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator() local
102 EnumerateAttributes(CI->getAttributes()); in ValueEnumerator()
/frameworks/compile/slang/BitWriter_2_9_func/
DBitcodeWriter.cpp1323 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()
DValueEnumerator.cpp101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator() local
102 EnumerateAttributes(CI->getAttributes()); in ValueEnumerator()
/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp1357 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()
DValueEnumerator.cpp101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator() local
102 EnumerateAttributes(CI->getAttributes()); in ValueEnumerator()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp56 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/compile/slang/
Dslang_backend.cpp1026 llvm::CallInst *CI = IB->CreateCall(F, Params); in dumpExportFunctionInfo() local
1028 CI->setCallingConv(F->getCallingConv()); in dumpExportFunctionInfo()
1033 IB->CreateRet(CI); in dumpExportFunctionInfo()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp79 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/servicestests/res/raw/
Dbackup_telephony_with_password52 …��v 6)�e}<�2(�cdo;{ւ��UU�J�]}�'�r�ol�h��}J���OqDO^�ӫjv%�RMQU����z�D����CI��4j��I����h�� n,� 
/frameworks/base/config/
Dhiddenapi-light-greylist.txt4592 …nt/ContentResolver;Landroid/content/Intent;Ljava/lang/String;Ljava/lang/String;CI)Landroid/net/Uri;
5727 Landroid/text/SpannableStringInternal;->getChars(II[CI)V
8864 Ljava/lang/String;->getCharsNoCheck(II[CI)V
8869 Ljava/lang/System;->arraycopy([CI[CII)V
Dboot-image-profile.txt2892 HPLandroid/icu/text/Bidi;-><init>([CI[BIII)V
5750 HPLandroid/telephony/PhoneNumberUtils;->charToBCD(CI)I
11481 HPLjava/util/Formatter$FormatSpecifier;->trailingZeros([CI)[C
11848 HPLlibcore/util/HexEncoding;->toDigit([CI)I
12173 HPLorg/apache/xpath/compiler/XPathParser;->lookahead(CI)Z
22824 HSPLandroid/icu/impl/ReplaceableUCharacterIterator;->getText([CI)I
23001 HSPLandroid/icu/impl/USerializedSet;->getSet([CI)Z
23921 HSPLandroid/icu/text/Replaceable;->getChars(II[CI)V
23927 HSPLandroid/icu/text/ReplaceableString;->getChars(II[CI)V
23997 HSPLandroid/icu/text/UCharacterIterator;->getText([CI)I
[all …]
Dhiddenapi-public-dex.txt15860 Landroid/icu/lang/UCharacter;->codePointAt([CI)I
15863 Landroid/icu/lang/UCharacter;->codePointBefore([CI)I
15959 Landroid/icu/lang/UCharacter;->toChars(I[CI)I
17480 Landroid/icu/text/Normalizer;->compare([C[CI)I
17724 Landroid/icu/text/Replaceable;->getChars(II[CI)V
18020 Landroid/icu/text/UCharacterIterator;->getText([CI)I
44847 Landroid/text/AlteredCharSequence;->getChars(II[CI)V
45123 Landroid/text/GetChars;->getChars(II[CI)V
45622 Landroid/text/SpannableStringBuilder;->getChars(II[CI)V
46244 Landroid/text/TextUtils;->getChars(Ljava/lang/CharSequence;II[CI)V
[all …]
Dhiddenapi-private-dex.txt33732 Landroid/icu/impl/TextTrieMap$Node;->lenMatches([CI)I
33745 Landroid/icu/impl/TextTrieMap;->subArray([CI)[C
34497 Landroid/icu/text/ArabicShaping;->handleTashkeelWithTatweel([CI)I
34640 Landroid/icu/text/Bidi;-><init>([CI[BIII)V
34651 Landroid/icu/text/Bidi;->bracketAddOpening(Landroid/icu/text/Bidi$BracketData;CI)V
37791 Landroid/icu/text/SimpleDateFormat$PatternItem;-><init>(CI)V
37838 Landroid/icu/text/SimpleDateFormat;->isNumeric(CI)Z
38117 Landroid/icu/text/StringPrepParseException;->setPostContext([CI)V
38119 Landroid/icu/text/StringPrepParseException;->setPreContext([CI)V
38286 Landroid/icu/text/TimeZoneFormat$GMTOffsetField;-><init>(CI)V
[all …]
/frameworks/support/media/src/androidTest/res/raw/
Dtestmp3_3.raw1 …tq+HJZ9b94sOaoDVEQHaUUZyXyPr44WUC36SFh0bVyTCg0Ca2m40k4sMaIgdaw5Gvjh6uzAz8I/CI/dsD1XuYWesq+UHrOVgsl…