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

1 2 3 4 5 6

  /cts/tests/tests/telephony/src/android/telephony/cts/
NeighboringCellInfoTest.java 36 NeighboringCellInfo nc; local
39 nc = new NeighboringCellInfo(rssi, "FFFFFFF", NETWORK_TYPE_EDGE);
40 assertEquals(NETWORK_TYPE_EDGE, nc.getNetworkType());
41 assertEquals(rssi, nc.getRssi());
42 assertEquals(0xfff, nc.getLac());
43 assertEquals(0xffff, nc.getCid());
44 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getPsc());
46 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UMTS);
47 assertEquals(NETWORK_TYPE_UMTS, nc.getNetworkType());
48 assertEquals(rssi, nc.getRssi())
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
NeighboringCellInfoTest.java 32 NeighboringCellInfo nc; local
34 nc = new NeighboringCellInfo(rssi, "FFFFFFF", NETWORK_TYPE_EDGE);
35 assertEquals(NETWORK_TYPE_EDGE, nc.getNetworkType());
36 assertEquals(rssi, nc.getRssi());
37 assertEquals(0xfff, nc.getLac());
38 assertEquals(0xffff, nc.getCid());
39 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getPsc());
41 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UMTS);
42 assertEquals(NETWORK_TYPE_UMTS, nc.getNetworkType());
43 assertEquals(rssi, nc.getRssi())
60 NeighboringCellInfo nc = new NeighboringCellInfo(rssi, "12345678", NETWORK_TYPE_GPRS); local
    [all...]
  /external/eigen/bench/
benchmarkSlice.cpp 26 int r, c, nr, nc; local
30 nc = Eigen::internal::random<int>(50,80);
31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc);
32 m.block(r,c,nr,nc) *= SCALAR(10);
33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10);
34 m.block(r,c,nr,nc) /= SCALAR(10);
  /dalvik/vm/compiler/codegen/mips/
ArchUtility.cpp 41 char nc; local
47 nc = *fmt++;
48 if (nc=='!') {
52 assert((unsigned)(nc-'0') < 4);
53 operand = lir->operands[nc-'0'];
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
NameCallbackTest.java 34 NameCallback nc; field in class:NameCallbackTest
40 nc = new NameCallback("prompt", "defaultName");
41 assertEquals("prompt", nc.getPrompt());
42 assertEquals("defaultName", nc.getDefaultName());
43 nc.setName("Name");
44 assertEquals("Name", nc.getName());
53 nc = new NameCallback("", "DefaultName");
58 nc = new NameCallback(null, "DefaultName");
63 nc = new NameCallback("Prompt", "");
68 nc = new NameCallback("Prompt", null)
    [all...]
UnsupportedCallbackExceptionTest.java 36 NameCallback nc = new NameCallback("prompt"); field in class:UnsupportedCallbackExceptionTest
42 UnsupportedCallbackException ce = new UnsupportedCallbackException(nc);
43 assertEquals(nc, ce.getCallback());
48 assertEquals(nc, ce.getCallback());
57 UnsupportedCallbackException ce = new UnsupportedCallbackException(nc, "message");
59 assertEquals(nc, ce.getCallback());
64 assertEquals(nc, ce.getCallback());
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/serialization/
NameCallbackTest.java 39 NameCallback nc = new NameCallback("prmpt", "defName"); local
40 nc.setName("Name");
41 return new Object[] { new NameCallback("prompt", "defaultName"), nc };
UnsupportedCallbackExceptionTest.java 35 static LanguageCallback nc = new LanguageCallback(); field in class:UnsupportedCallbackExceptionTest
39 return new Object[] {new UnsupportedCallbackException(nc)};
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 34 NoCopy nc = NoCopy(); // expected-error {{call to deleted}} member in class:S
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 55 NonConst nc; member in struct:copy::NonConst3
61 NonConst nc; // makes implicit copy non-const member in struct:copy::BadConst
  /external/eigen/test/
corners.cpp 36 Index nc = internal::random<Index>(1,cols-sc); local
42 COMPARE_CORNER(middleCols(sc,nc), block(0,sc,rows,nc));
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isp_az.cpp 93 #define NC (M/2)
143 int16 nc; local
149 nc = m >> 1;
152 if (nc > 8)
154 Get_isp_pol_16kHz(&isp[0], f1, nc);
155 for (i = 0; i <= nc; i++)
159 Get_isp_pol_16kHz(&isp[1], f2, nc - 1);
160 for (i = 0; i <= nc - 1; i++)
167 Get_isp_pol(&isp[0], f1, nc);
168 Get_isp_pol(&isp[1], f2, nc - 1)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
isp_az.c 29 #define NC (M/2)
48 Word16 nc; local
53 nc = (m >> 1);
54 if(nc > 8)
56 Get_isp_pol_16kHz(&isp[0], f1, nc);
57 for (i = 0; i <= nc; i++)
62 Get_isp_pol(&isp[0], f1, nc);
64 if (nc > 8)
66 Get_isp_pol_16kHz(&isp[1], f2, (nc - 1));
67 for (i = 0; i <= nc - 1; i++
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 84 char nc; local
90 nc = *fmt++;
91 if (nc=='!') {
95 assert((unsigned)(nc-'0') < 4);
96 operand = lir->operands[nc-'0'];
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.pass.cpp 55 int nc = new_count; local
60 assert(new_count == nc+1);
66 nc = new_count;
70 assert(new_count == nc+1);
  /external/clang/test/SemaCXX/
cxx0x-cursory-default-delete.cpp 20 non_copiable nc; local
21 non_copiable nc2 = nc; // expected-error {{deleted constructor}}
22 nc = nc; // expected-error {{deleted operator}}
copy-assignment.cpp 61 C c, nc; local
82 nc = c;
83 nc = constC;
84 nc = 1;
85 nc = 1L;
86 nc = 1.0; // expected-error{{use of overloaded operator '=' is ambiguous}}
87 nc += 1;
88 nc += 1L;
89 nc += 1.0; // expected-error{{use of overloaded operator '+=' is ambiguous}}
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp 133 NetworkConfig *nc = new NetworkConfig(); local
134 if (nc == NULL)
136 nc->setWpaGui(wpagui);
137 nc->paramsFromScanResults(sel);
138 nc->show();
139 nc->exec();
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherOutputStreamTest.java 134 NullCipher nc = new NullCipher(); local
135 CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null), nc);
137 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc);
  /external/chromium/net/http/
http_auth_handler_digest.cc 32 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
321 const std::string& nc) const {
335 nc_part = nc + ":" + cnonce + ":" + QopToString(qop_) + ":";
349 std::string nc = base::StringPrintf("%08x", nonce_count); local
362 password, cnonce, nc);
373 authorization += ", nc=" + nc;
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixMatrix.h 248 Index nc = cols; // cache block size along the N direction local
249 computeProductBlockingSizes<Scalar,Scalar>(kc, mc, nc);
328 Index nc = cols; // cache block size along the N direction local
329 computeProductBlockingSizes<Scalar,Scalar>(kc, mc, nc);
  /external/hyphenation/
csutil.c 19 int nc; local
21 nc = (int)((unsigned long)dp - (unsigned long)mp);
22 rv = (char *) malloc(nc+1);
23 memcpy(rv,mp,nc);
24 *(rv+nc) = '\0';
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationInfo.java 174 String nc = Integer.toHexString(nonceCount); local
177 nc = base.substring(0, 8 - nc.length()) + nc;
178 this.setParameter(ParameterNames.NC, nc);
  /frameworks/av/tools/resampler_tools/
fir.cpp 79 // nc is the number of bits to store the coefficients
80 const int nc = 32; local
95 // 2^nz >= 2^(nc/2)
217 printf("const int32_t RESAMPLE_FIR_COEF_BITS = %d;\n", nc);
237 int64_t yi = floor(y * ((1ULL<<(nc-1))) + 0.5);
238 if (yi >= (1LL<<(nc-1))) yi = (1LL<<(nc-1))-1;
257 int64_t yi = floor(y * ((1ULL<<(nc-1))) + 0.5);
258 if (yi >= (1LL<<(nc-1))) yi = (1LL<<(nc-1))-1
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java 146 int nc = newRootTree.getChildCount(); local
147 if ( nc==1 ) newRootTree = (Tree)newRootTree.getChild(0);
148 else if ( nc >1 ) {

Completed in 2108 milliseconds

1 2 3 4 5 6