HomeSort by relevance Sort by last modified time
    Searched defs:NS (Results 26 - 50 of 129) sorted by null

12 3 4 5 6

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p2.cpp 90 namespace NS {
94 void bar(NS::A& a);
  /external/compiler-rt/test/profile/
instrprof-value-prof.c 61 unsigned S, NS = 0, V, doInstrument = 1;
82 0 /*IPVK_IndirectCallTarget */, NS);
84 NS++;
87 for (S = 0; S < NS; S++) {
95 NS++;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedCreateFeedTask.java 45 private static final String NS = ""; //$NON-NLS-1$
92 sb.append(" <link rel=\"self\" type=\"application/atom+xml\" href=\"" + (!isNullString(feedURL)?feedURL:NS) + "\"/>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
95 sb.append(" <name>" + (!isNullString(project)?project + SP : NS) + Messages.getString("RSSFeedCreateFeedTask.BuildTeam") + "</name>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
97 sb.append(" <id>" + (!isNullString(feedURL)?feedURL:NS) + "</id>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
RSSFeedUpdateEntryTask.java 64 private static final String NS = ""; //$NON-NLS-1$
103 System.out.println(Messages.getString("RSSFeedUpdateEntryTask.SearchingFor") + SP + xpath + (!isNullString(replacement)?", " + Messages.getString("RSSFeedUpdateEntryTask.ReplacingWith") + " '" + replacement + "'":NS)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
244 System.out.print((debug>0?aNode.getNodeName() + " = ":NS) + aNode.getNodeValue()); //$NON-NLS-1$ //$NON-NLS-2$
246 System.out.println(isNullString(replacement)?NS:" => " + replacement); //$NON-NLS-1$ //$NON-NLS-2$
252 transformer.transform(new DOMSource(getParentNode(document,aNode,null,NS)), new StreamResult(System.out)); //$NON-NLS-1$
261 parentEntryNode = getParentNode(document, aNode, "entry", NS); //$NON-NLS-1$ //$NON-NLS-2$
  /frameworks/base/tools/aapt/
StringPool.cpp 78 const size_t NS = pool->size();
79 for (size_t s=0; s<NS; s++) {
  /system/extras/tests/net_test/
packets.py 183 def NS(srcaddr, tgtaddr, srcmac):
190 return ("ICMPv6 NS", packet)
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
SubPlan.java 43 private static final String NS = null; // namespace used for XML serializer
116 serializer.startTag(NS, SUBPLAN_TAG);
117 serializer.attribute(NS, VERSION_ATTR, SUBPLAN_VERSION);
124 serializer.startTag(NS, ENTRY_TAG);
125 serializer.attribute(NS, INCLUDE_ATTR, include);
126 serializer.endTag(NS, ENTRY_TAG);
129 serializer.startTag(NS, ENTRY_TAG);
130 serializer.attribute(NS, EXCLUDE_ATTR, exclude);
131 serializer.endTag(NS, ENTRY_TAG);
134 serializer.endTag(NS, SUBPLAN_TAG)
    [all...]
  /cts/common/host-side/util/src/com/android/compatibility/common/util/
DynamicConfigHandler.java 40 private static final String NS = null; //xml constant representing null namespace
88 serializer.startTag(NS, DynamicConfig.CONFIG_TAG);
90 serializer.startTag(NS, DynamicConfig.ENTRY_TAG);
91 serializer.attribute(NS, DynamicConfig.KEY_ATTR, key);
93 serializer.startTag(NS, DynamicConfig.VALUE_TAG);
95 serializer.endTag(NS, DynamicConfig.VALUE_TAG);
97 serializer.endTag(NS, DynamicConfig.ENTRY_TAG);
99 serializer.endTag(NS, DynamicConfig.CONFIG_TAG);
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 161 GCCAsmStmt *NS = new (Context) GCCAsmStmt(
164 return NS;
347 GCCAsmStmt *NS =
355 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
368 unsigned NumOperands = NS->getNumOutputs() + NS->getNumInputs();
373 unsigned I = 0, E = NS->getNumOutputs();
419 return StmtError(Diag(NS->getOutputExpr(i)->getLocStart(),
432 return StmtError(Diag(NS->getInputExpr(i)->getLocStart(),
449 Diag(NS->getInputExpr(i)->getLocStart()
    [all...]
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 89 for (A NS:A()) { // expected-error {{no viable conversion from 'int' to 'X::A'}}
228 namespace NS {
230 int *begin(ADL); // expected-note {{no known conversion from 'NS::NoADL' to 'NS::ADL'}}
235 int *begin(NS::NoADL);
236 int *end(NS::NoADL);
243 for (auto u : NS::ADL()) {
245 for (auto u : NS::NoADL()) { // expected-error {{invalid range expression of type 'NS::NoADL'; no viable 'begin' function available}}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 54 private static final String NS = ""; //$NON-NLS-1$
166 (debug>0?"-debug " + debug + SP:NS) + ("null".equals(commandline)?NS:commandline) + //$NON-NLS-1$ //$NON-NLS-2$
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 205 uint32_t NS = Func.getNumValueSites(VK);
206 if (!NS)
209 OS << "# NumValueSites:\n" << NS << "\n";
210 for (uint32_t S = 0; S < NS; S++) {
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 311 uint32_t NS = Func.getNumValueSites(IPVK_IndirectCallTarget);
313 for (size_t I = 0; I < NS; ++I) {
  /frameworks/base/core/java/com/android/internal/app/procstats/
DumpUtils.java 257 final int NS = screenStates != null ? screenStates.length : 1;
260 for (int is=0; is<NS; is++) {
  /frameworks/base/services/core/java/com/android/server/pm/
PreferredComponent.java 179 final int NS = mSetClasses != null ? mSetClasses.length : 0;
186 serializer.attribute(null, ATTR_SET, Integer.toString(NS));
187 for (int s=0; s<NS; s++) {
203 final int NS = mSetPackages.length;
210 for (int j=0; j<NS; j++) {
220 return numMatch == NS;
226 final int NS = mSetPackages.length;
231 for (int j=0; j<NS; j++) {
241 return numMatch == NS;
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdatatype.py 35 NS = 2
97 'NS' : NS,
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 198 namespace ns { namespace in namespace:test5
202 class ns::A {
207 namespace ns { namespace in namespace:test5
294 namespace NS {
303 NS::bar->foo();
307 NS::bar->foo(); // expected-error {{private member}}
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 4 // CHECK-DAG: private unnamed_addr constant [26 x i8] c"void NS::externFunction()\00"
10 // CHECK-DAG: private unnamed_addr constant [122 x i8] c"static void ClassWithTemplateTemplateParam<char, NS::ClassTemplate>::staticMember() [T = char, Param = NS::ClassTemplate]\00"
23 // CHECK-DAG: private unnamed_addr constant [77 x i8] c"void NS::ClassTemplate<NS::Base *>::classTemplateFunction() [T = NS::Base *]\00"
24 // CHECK-DAG: private unnamed_addr constant [63 x i8] c"void NS::ClassTemplate<int>::classTemplateFunction() [T = int]\00"
27 // CHECK-DAG: private unnamed_addr constant [53 x i8] c"void NS::Base::functionTemplate1(T) [T = NS::Base *]\00"
28 // CHECK-DAG: private unnamed_addr constant [46 x i8] c"void NS::Base::functionTemplate1(T) [T = int]\00
    [all...]
  /external/clang/test/Parser/
recovery.cpp 123 namespace NS {
127 NS::Foo<int> missingSemiBeforeFunctionReturningTemplateId1();
129 using NS::Foo;
140 namespace ns { namespace in struct:MissingBrace::S::PR17084::TempID
157 case ns::V1:: break; // expected-error{{'V1' cannot appear before '::' because it is not a class, namespace, or enumeration; did you mean ':'?}}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
feedTools.jar 
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCChecker.h 103 NewSense NS = { /*PredReg=*/ 0, /*IsFloat=*/ false, /*IsNVJ=*/ isNVJ,
105 return NS;
108 NewSense NS = { /*PredReg=*/ PR, /*IsFloat=*/ false, /*IsNVJ=*/ false,
110 return NS;
113 NewSense NS = { /*PredReg=*/ PR, /*IsFloat=*/ Float, /*IsNVJ=*/ false,
115 return NS;
  /ndk/sources/cxx-stl/gabi++/tests/
dynamic_cast14.cpp     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 16 NS='ns'
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_complex.py 225 class NS(object):
229 self.assertEqual(complex(NS(1+10j)), 1+10j)
231 self.assertRaises(TypeError, complex, NS(None))
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 16 NS='ns'

Completed in 1318 milliseconds

12 3 4 5 6