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

1 2 3 4 5 6 7 8 91011>>

  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
NativeCrashParserTest.java 140 NativeCrashItem nc = new NativeCrashParser().parse(lines); local
141 assertNotNull(nc);
142 assertEquals(2058, nc.getPid().intValue());
143 assertEquals(2523, nc.getTid().intValue());
144 assertEquals("com.google.android.browser", nc.getApp());
146 nc.getFingerprint());
147 assertEquals(ArrayUtil.join("\n", lines), nc.getStack());
160 NativeCrashItem nc = new NativeCrashParser().parse(lines); local
161 assertNotNull(nc);
162 assertEquals(2058, nc.getPid().intValue())
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p15.cpp 8 void capture_by_ref(NonCopyable nc, NonCopyable &ncr) {
10 (void)[&nc] () -> void {};
  /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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.assign/
value_non_copyable_assign.fail.cpp 33 non_copyable nc;
35 a = static_cast<non_copyable &&>(nc); // expected-error@experimental/any:* 2 {{static_assert failed "_ValueType must be CopyConstructible."}}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.cons/
non_copyable_value.fail.cpp 32 non_copyable nc;
33 any a(static_cast<non_copyable &&>(nc));
  /art/tools/
setup-buildbot-device.sh 18 nc='\033[0m'
25 echo -e "${green}Date on host${nc}"
28 echo -e "${green}Date on device${nc}"
43 echo -e "${green}Killing logd, seen leaking on fugu/N${nc}"
48 echo -e "${green}Update date on device${nc}"
52 echo -e "${green}Turn off selinux${nc}"
56 echo -e "${green}Setting local loopback${nc}"
60 echo -e "${green}List properties${nc}"
63 echo -e "${green}Uptime${nc}"
66 echo -e "${green}Battery info${nc}"
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
badgotr1.d 5 #error: \A[^\nc][^\n]*o: uses _-prefixed [^\nc]*\n[^\nc][^\n]* failed to merge [^\n]*\n[^\nc][^\n]* no GOT [^\n]*\n[^\nc][^\n]* Bad value\Z
  /tools/loganalysis/src/com/android/loganalysis/parser/
NativeCrashParser.java 42 NativeCrashItem nc = null; local
48 nc = new NativeCrashItem();
49 nc.setFingerprint(m.group(1));
52 if (nc != null) {
55 nc.setPid(Integer.valueOf(m.group(1)));
56 nc.setTid(Integer.valueOf(m.group(2)));
57 nc.setApp(m.group(4));
64 if (nc != null) {
65 nc.setStack(stack.toString().trim());
67 return nc;
    [all...]
  /external/clang/test/SemaCXX/
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}}
microsoft-new-delete.cpp 13 class noncopyable { noncopyable(const noncopyable&); } extern nc; // expected-note {{here}}
16 void *q = new (nc) int[4]; // expected-error {{calling a private constructor}}
  /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);
  /external/minijail/
get_googletest.sh 5 wget -q -nc --secure-protocol=TLSv1 "https://github.com/google/googletest/archive/release-${PV}.tar.gz" -O "googletest-release-${PV}.tar.gz"
  /packages/apps/Email/provider_src/com/android/email/
EmailIntentService.java 40 final NotificationController nc = local
42 if (nc != null) {
43 nc.handleUpdateNotificationIntent(this, intent);
  /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/base/core/java/android/net/
NetworkCapabilities.java 64 public NetworkCapabilities(NetworkCapabilities nc) {
65 if (nc != null) {
66 set(nc);
89 public void set(NetworkCapabilities nc) {
90 mNetworkCapabilities = nc.mNetworkCapabilities;
91 mTransportTypes = nc.mTransportTypes;
92 mLinkUpBandwidthKbps = nc.mLinkUpBandwidthKbps;
93 mLinkDownBandwidthKbps = nc.mLinkDownBandwidthKbps;
94 mNetworkSpecifier = nc.mNetworkSpecifier;
95 mSignalStrength = nc.mSignalStrength
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcRequest.java 71 NetworkCapabilities nc = nr.networkCapabilities; local
73 if (nc.getTransportTypes().length > 0 &&
74 nc.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) == false) {
83 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)) {
87 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_MMS)) {
91 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_SUPL)) {
95 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_DUN)) {
99 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_FOTA)) {
103 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_IMS)) {
107 if (nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_CBS))
    [all...]
  /external/libopus/celt/tests/
test_unit_cwrs32.c 102 opus_uint32 nc; local
108 nc=ncwrs_urow(n,k,uu);
110 nc=CELT_PVQ_V(n,k);
112 inc=nc/20000;
114 for(i=0;i<nc;i+=inc){
136 /*printf("%6u of %u:",i,nc);
150 if(v!=nc){
152 (long)v,(long)nc);
  /external/syslinux/com32/elflink/ldlinux/
get_key.c 155 int get_key_decode(char *buffer, int nc, int *code)
162 if (nc == kc->seqlen && !memcmp(buffer, kc->seq, nc)) {
166 } else if (nc < kc->seqlen && !memcmp(buffer, kc->seq, nc)) {
197 int nc, rv; local
207 nc = 0;
213 if (nc && lateness > 1 + KEY_TIMEOUT) {
214 if (nc == 1)
218 } else if (!nc && timeout && lateness > timeout
    [all...]
  /external/curl/docs/examples/
cookie_interface.c 40 struct curl_slist *nc; local
50 nc = cookies;
52 while(nc) {
53 printf("[%d]: %s\n", i, nc->data);
54 nc = nc->next;
  /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...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/z80/
branch.s 7 jp nc,0x8405
17 jr nc,2b
27 call nc,0x8405
39 ret nc
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
StreamRedirector.java 68 int nc = br.read(); local
69 if (nc == -1) {
75 } else if (nc == (int)'\n') {
79 cur.appendCodePoint(nc);
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
YUVImage.java 222 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); local
223 if ((planes != null && planes.length != nc) ||
224 (offsets != null && offsets.length != nc) ||
225 (strides != null && strides.length != nc))
229 planes = new byte[nc][];
231 offsets = new int[nc];
233 strides = new int[nc];
235 for (int i = 0; i < nc; i++) {
291 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); local
292 byte[][] planes = new byte[nc][];
404 int nc = (yuvSubsamp == TJ.SAMP_GRAY ? 1 : 3); local
421 int nc = (yuvSubsamp == TJ.SAMP_GRAY ? 1 : 3); local
    [all...]
  /external/llvm/test/tools/dsymutil/X86/
odr-uniquing.cpp 41 // CHECK: 0x[[NC:[0-9a-f]*]]:{{.*}}DW_TAG_class_type
77 N::C nc; local
117 // ODR: DW_AT_name{{.*}}"nc"
119 // ODR: DW_AT_type{{.*}}[[NC]]
168 // NOODR: DW_AT_name{{.*}}"nc"

Completed in 427 milliseconds

1 2 3 4 5 6 7 8 91011>>