HomeSort by relevance Sort by last modified time
    Searched refs:lte (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
NetworkScanResultTest.java 58 CellInfoLte lte = new CellInfoLte(); local
59 lte.setRegistered(false);
60 lte.setTimeStampType(21);
61 lte.setTimeStamp(22);
62 lte.setCellIdentity(cil);
63 lte.setCellSignalStrength(cssl);
64 infos.add(lte);
NetworkScanRequestTest.java 45 RadioAccessSpecifier lte = new RadioAccessSpecifier(ranLte, lteBands, lteChannels); local
46 RadioAccessSpecifier[] ras = {gsm, lte};
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 178 LabelTableEntry lte = labels_table.get(uc.from); local
180 if (lte == null || lte.planted == false)
182 CodeAddress from = lte.code_address;
184 lte = labels_table.get(uc.to);
185 if (lte == null || lte.planted == false)
187 CodeAddress to = lte.code_address;
197 lte = labels_table.get(branch);
198 if (lte == null || lte.planted == false
    [all...]
DAsm.java 436 LabelTableEntry lte = labels_table.get(key); local
437 if (lte.planted == false) {
507 LabelTableEntry lte = labels_table.get(name); local
508 if (lte != null) {
509 if (lte.planted == true)
512 lte.planted = true;
513 addInsn(lte.code_address);
564 LabelTableEntry lte = labels_table.get(val); local
565 if (lte == null) {
568 lte = new LabelTableEntry(code_address, false)
660 LabelTableEntry lte = labels_table.get(v2); local
1009 LabelTableEntry lte = labels_table.get(v3); local
1447 LabelTableEntry lte = labels_table.get(t); local
    [all...]
  /system/chre/apps/wwan_world/
wwan_world.cc 71 LOGI(" LTE cell detected");
72 LOGI(" mcc %" PRId32, cell->CellInfo.lte.cellIdentityLte.mcc);
73 LOGI(" mnc %" PRId32, cell->CellInfo.lte.cellIdentityLte.mnc);
74 LOGI(" ci %" PRId32, cell->CellInfo.lte.cellIdentityLte.ci);
75 LOGI(" pci %" PRId32, cell->CellInfo.lte.cellIdentityLte.pci);
76 LOGI(" tac %" PRId32, cell->CellInfo.lte.cellIdentityLte.tac);
77 LOGI(" earfcn %" PRId32, cell->CellInfo.lte.cellIdentityLte.earfcn);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18808.go 50 func lte(x uint32) { func
62 lte(lim+1)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18808.go 50 func lte(x uint32) { func
62 lte(lim+1)
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 117 // Verify lte cell information is within correct range.
118 private void verifyLteInfo(CellInfoLte lte) {
119 verifyRssiDbm(lte.getCellSignalStrength().getDbm());
120 // Verify LTE physical cell id information.
121 // Only physical cell id is available for LTE neighbor.
122 int pci = lte.getCellIdentity().getPci();
126 int earfcn = lte.getCellIdentity().getEarfcn();
130 CellSignalStrengthLte cellSignalStrengthLte = lte.getCellSignalStrength();
133 // RSRP is being treated as RSSI in LTE (they are similar but not quite right)
  /system/chre/chre_api/include/chre_api/chre/
wwan.h 176 //! 18-bit LTE Absolute RF Channel Number, INT32_MAX if unknown
374 struct chreWwanCellInfoLte lte; member in union:chreWwanCellInfo::__anon114081
  /system/chre/apps/chqts/src/general_test/
wwan_cell_info_test.cc 128 valid &= CellInfoLte::validate(cells[i].CellInfo.lte);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/epiphany/
sample.s 98 testmov lte
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 115 {args} lte = '<=';
477 | {lte} [left]:comparison lte [right]:add_subtract // x.y <= a.b
478 {->New expression.lte(left.expression, right.expression)}
691 | {lte} [left]:expression [right]:expression // x <= y
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 49 import org.apache.xpath.operations.Lte;
134 expr = lte(opPos); break;
303 * @return reference to {@link org.apache.xpath.operations.Lte} instance.
307 protected Expression lte(int opPos) throws TransformerException method in class:Compiler
309 return compileOperation(new Lte(), opPos);
    [all...]
  /system/sepolicy/prebuilts/api/26.0/private/
property_contexts 9 net.lte u:object_r:net_radio_prop:s0
  /system/sepolicy/private/
property_contexts 9 net.lte u:object_r:net_radio_prop:s0
  /external/python/cpython2/Lib/test/
test_htmlparser.py 573 html = ('<!--[if IE & !(lte IE 8)]>aren\'t<![endif]-->'
575 '<!--[if lte IE 7]>pretty?<![endif]-->')
576 expected = [('comment', "[if IE & !(lte IE 8)]>aren't<![endif]"),
578 ('comment', '[if lte IE 7]>pretty?<![endif]')]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_htmlparser.py 563 html = ('<!--[if IE & !(lte IE 8)]>aren\'t<![endif]-->'
565 '<!--[if lte IE 7]>pretty?<![endif]-->')
566 expected = [('comment', "[if IE & !(lte IE 8)]>aren't<![endif]"),
568 ('comment', '[if lte IE 7]>pretty?<![endif]')]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_htmlparser.py 563 html = ('<!--[if IE & !(lte IE 8)]>aren\'t<![endif]-->'
565 '<!--[if lte IE 7]>pretty?<![endif]-->')
566 expected = [('comment', "[if IE & !(lte IE 8)]>aren't<![endif]"),
568 ('comment', '[if lte IE 7]>pretty?<![endif]')]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_htmlparser.py 563 html = ('<!--[if IE & !(lte IE 8)]>aren\'t<![endif]-->'
565 '<!--[if lte IE 7]>pretty?<![endif]-->')
566 expected = [('comment', "[if IE & !(lte IE 8)]>aren't<![endif]"),
568 ('comment', '[if lte IE 7]>pretty?<![endif]')]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_htmlparser.py 563 html = ('<!--[if IE & !(lte IE 8)]>aren\'t<![endif]-->'
565 '<!--[if lte IE 7]>pretty?<![endif]-->')
566 expected = [('comment', "[if IE & !(lte IE 8)]>aren't<![endif]"),
568 ('comment', '[if lte IE 7]>pretty?<![endif]')]
  /hardware/ril/libril/
ril_service.cpp     [all...]
  /hardware/ril/include/telephony/
ril.h 357 PREF_NET_TYPE_LTE_CDMA_EVDO = 8, /* LTE, CDMA and EvDo */
358 PREF_NET_TYPE_LTE_GSM_WCDMA = 9, /* LTE, GSM/WCDMA */
359 PREF_NET_TYPE_LTE_CMDA_EVDO_GSM_WCDMA = 10, /* LTE, CDMA, EvDo, GSM/WCDMA */
360 PREF_NET_TYPE_LTE_ONLY = 11, /* LTE only */
361 PREF_NET_TYPE_LTE_WCDMA = 12, /* LTE/WCDMA */
364 PREF_NET_TYPE_TD_SCDMA_LTE = 15, /* TD-SCDMA and LTE */
366 PREF_NET_TYPE_TD_SCDMA_GSM_LTE = 17, /* TD-SCDMA,GSM and LTE */
368 PREF_NET_TYPE_TD_SCDMA_WCDMA_LTE = 19, /* TD-SCDMA, WCDMA and LTE */
369 PREF_NET_TYPE_TD_SCDMA_GSM_WCDMA_LTE = 20, /* TD-SCDMA, GSM/WCDMA and LTE */
371 PREF_NET_TYPE_TD_SCDMA_LTE_CDMA_EVDO_GSM_WCDMA = 22 /* TD-SCDMA, LTE, CDMA, EvDo GSM/WCDMA *
1501 RIL_CellInfoLte lte; member in union:__anon47583::__anon47584
1515 RIL_CellInfoLte_v12 lte; member in union:__anon47585::__anon47586
    [all...]
  /hardware/interfaces/radio/1.0/
types.hal 572 LTE = 14,
656 LTE_CDMA_EVDO, // LTE, CDMA and EvDo
657 LTE_GSM_WCDMA, // LTE, GSM/WCDMA
658 LTE_CMDA_EVDO_GSM_WCDMA, // LTE, CDMA, EvDo, GSM/WCDMA
659 LTE_ONLY, // LTE only
660 LTE_WCDMA, // LTE/WCDMA
663 TD_SCDMA_LTE, // TD-SCDMA and LTE
665 TD_SCDMA_GSM_LTE, // TD-SCDMA,GSM and LTE
667 TD_SCDMA_WCDMA_LTE, // TD-SCDMA, WCDMA and LTE
668 TD_SCDMA_GSM_WCDMA_LTE, // TD-SCDMA, GSM/WCDMA and LTE
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java     [all...]
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/codemodel/2.2.11/
codemodel-2.2.11.jar 

Completed in 729 milliseconds

1 2