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

1 2 3 4 5 6 7 8 9

  /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/current/src/android/telephony/cts/
NeighboringCellInfoTest.java 39 NeighboringCellInfo nc; local
42 nc = new NeighboringCellInfo(rssi, "FFFFFFF", NETWORK_TYPE_EDGE);
43 assertEquals(NETWORK_TYPE_EDGE, nc.getNetworkType());
44 assertEquals(rssi, nc.getRssi());
45 assertEquals(0xfff, nc.getLac());
46 assertEquals(0xffff, nc.getCid());
47 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getPsc());
49 nc = new NeighboringCellInfo(rssi, "1FF", NETWORK_TYPE_UMTS);
50 assertEquals(NETWORK_TYPE_UMTS, nc.getNetworkType());
51 assertEquals(rssi, nc.getRssi())
    [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}}
  /art/tools/
cleanup-buildbot-device.sh 18 nc='\033[0m'
32 echo -e "${green}Remove entire /system directory from chroot directory${nc}"
35 echo -e "${green}Remove entire /data directory from chroot directory${nc}"
38 echo -e "${green}Remove entire chroot directory${nc}"
setup-buildbot-device.sh 21 nc='\033[0m'
33 echo -e "${green}Date on host${nc}"
36 echo -e "${green}Date on device${nc}"
51 echo -e "${green}Killing logd, seen leaking on fugu/N${nc}"
52 adb shell pkill -9 -U logd logd && echo -e "${green}...logd killed${nc}"
56 echo -e "${green}Update date on device${nc}"
60 echo -e "${green}Turn off selinux${nc}"
64 echo -e "${green}Setting local loopback${nc}"
79 echo -e "${green}Turning on netd${nc}"
84 echo -e "${green}List properties${nc}"
    [all...]
unmount-buildbot-apexes.sh 24 nc='\033[0m'
49 echo -e "${green}Deactivating package $apex_name${nc}"
teardown-buildbot-device.sh 21 nc='\033[0m'
34 echo -e "${green}List open files under chroot dir $ART_TEST_CHROOT${nc}"
64 echo -e "${green}List processes running from binaries under chroot dir $ART_TEST_CHROOT${nc}"
69 echo -e "${green}Tear down the chroot set up in $ART_TEST_CHROOT${nc}"
141 "chroot dir $ART_TEST_CHROOT (if any)${nc} "
  /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"
  /external/u-boot/tools/
netconsole 37 for nc in netcat nc ; do
38 type ${nc} >/dev/null 2>&1 && break
56 while ${nc} -u -l -p ${board_out_port} < /dev/null ; do
62 ${nc} -u ${ip} ${board_in_port}
jtagconsole 38 nc ${ip} ${port}
  /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...]
  /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/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...]
  /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++) {
293 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); local
294 byte[][] planes = new byte[nc][];
406 int nc = (yuvSubsamp == TJ.SAMP_GRAY ? 1 : 3); local
423 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"
  /external/swiftshader/third_party/llvm-7.0/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"
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp 134 NetworkConfig *nc = new NetworkConfig(); local
135 if (nc == NULL)
137 nc->setWpaGui(wpagui);
138 nc->paramsFromScanResults(sel);
139 nc->show();
140 nc->exec();
  /cts/hostsidetests/securitybulletin/res/
cve_2017_0859.mp4 7 $3????@???? ?01? ??!???$@D ???a9????$?P @q?'Pp0?UdT??W?R$??????W?e?`?z0?? ??CA?AB?b ?? @ G $A ???X1?e?"????82? huH?$@@34?W?c?h~-?U?L?H????? ?$Kp?????C@2j1??'ç?j8 N??5H??y3???EX$C???????4d@n???S?????????{????$Kp?????o??W???n??;*???nc???Y?Rb?_?$9???r? Y???+?j?[?xv?????C?Y? 1':????%?u??? ~5?/????q?}?Z??-?Q??C.?S $Q97????l (…)
  /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/Eigen/src/SparseCore/
SparseColEtree.h 64 StorageIndex nc = convert_index<StorageIndex>(mat.cols()); // Number of columns local
66 StorageIndex diagSize = (std::min)(nc,m);
67 IndexVector root(nc); // root of subtree of etree
69 IndexVector pp(nc); // disjoint sets
74 firstRowElt.setConstant(nc);
77 for (StorageIndex col = 0; col < nc; col++)
92 for (StorageIndex col = 0; col < nc; col++)
98 parent(col) = nc;
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.pass.cpp 79 int nc = globalMemCounter.outstanding_new; local
84 assert(globalMemCounter.checkOutstandingNewEq(nc+1));
100 nc = globalMemCounter.outstanding_new;
104 assert(globalMemCounter.checkOutstandingNewEq(nc+1));

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 9