HomeSort by relevance Sort by last modified time
    Searched refs:NS (Results 51 - 75 of 358) sorted by null

1 23 4 5 6 7 8 91011>>

  /tools/tradefederation/core/src/com/android/tradefed/result/suite/
XmlSuiteResultFormatter.java 68 public static final String NS = null;
187 serializer.startTag(NS, RESULT_TAG);
188 serializer.attribute(NS, START_TIME_ATTR, String.valueOf(holder.startTime));
189 serializer.attribute(NS, END_TIME_ATTR, String.valueOf(holder.endTime));
190 serializer.attribute(NS, START_DISPLAY_TIME_ATTR, toReadableDateString(holder.startTime));
191 serializer.attribute(NS, END_DISPLAY_TIME_ATTR, toReadableDateString(holder.endTime));
193 NS,
210 serializer.attribute(NS, DEVICES_ATTR, deviceList);
218 serializer.attribute(NS, HOST_NAME_ATTR, hostName);
219 serializer.attribute(NS, OS_NAME_ATTR, System.getProperty("os.name"))
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 60 const NSAPI &NS, Commit &commit) {
62 if (!checkForLiteralCreation(Msg, II, NS.getASTContext().getLangOpts()))
71 NS.getNSClassId(NSAPI::ClassId_NSString) == II &&
72 (NS.getNSStringSelector(NSAPI::NSStr_stringWithString) == Sel ||
73 NS.getNSStringSelector(NSAPI::NSStr_initWithString) == Sel)) ||
76 NS.getNSClassId(NSAPI::ClassId_NSArray) == II &&
77 (NS.getNSArraySelector(NSAPI::NSArr_arrayWithArray) == Sel ||
78 NS.getNSArraySelector(NSAPI::NSArr_initWithArray) == Sel)) ||
81 NS.getNSClassId(NSAPI::ClassId_NSDictionary) == II &&
82 (NS.getNSDictionarySelector
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/result/
XmlResultReporter.java 74 private static final String NS = null;
150 serializer.startTag(NS, TESTSUITE);
151 serializer.attribute(NS, ATTR_NAME, getInvocationContext().getTestTag());
152 serializer.attribute(NS, ATTR_TESTS, Integer.toString(getNumTotalTests()));
154 NS, ATTR_FAILURES, Integer.toString(getNumTestsInState(TestStatus.FAILURE)));
155 serializer.attribute(NS, ATTR_ERRORS, "0");
156 serializer.attribute(NS, ATTR_TIME, Long.toString(elapsedTime));
157 serializer.attribute(NS, TIMESTAMP, timestamp);
158 serializer.attribute(NS, HOSTNAME, "localhost");
159 serializer.startTag(NS, PROPERTIES)
    [all...]
  /external/clang/test/Index/
print-type.cpp 51 namespace NS { struct Type{}; } NS::Type elaboratedNamespaceType(const NS::Type t);
130 // CHECK: FunctionDecl=elaboratedNamespaceType:51:42 [type=NS::Type (const NS::Type)] [typekind=FunctionProto] [canonicaltype=NS::Type (NS::Type)] [canonicaltypekind=FunctionProto] [resulttype=NS::Type] [resulttypekind=Elaborated] [args= [const NS::Type] [Elaborated]] [isPOD=0]
131 // CHECK: NamespaceRef=NS:51:11 [type=] [typekind=Invalid] [isPOD=0
    [all...]
  /external/clang/test/PCH/
chain-friend-instantiation.cpp 9 namespace NS {
21 class TClass: public NS::TBaseClass<T>
28 namespace NS {
  /external/clang/test/SemaCXX/
elaborated-type-specifier.cpp 19 namespace NS {
22 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}}
28 void test_X_elab(NS::X x) {
30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}}
33 namespace NS {
38 S4 *s4; // expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}}
  /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...]
mangle-subst.cpp 50 namespace NS {
62 namespace NS {
66 namespace NS {
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.allocation/
p1.cpp 8 namespace NS {
  /external/llvm/tools/opt/
BreakpointPrinter.cpp 32 if (auto *NS = dyn_cast<DINamespace>(Context)) {
33 if (!NS->getName().empty()) {
34 getContextName(NS->getScope(), N);
35 N = N + NS->getName().str() + "::";
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
SubPlan.java 42 private static final String NS = null; // namespace used for XML serializer
115 serializer.startTag(NS, SUBPLAN_TAG);
116 serializer.attribute(NS, VERSION_ATTR, SUBPLAN_VERSION);
123 serializer.startTag(NS, ENTRY_TAG);
124 serializer.attribute(NS, INCLUDE_ATTR, include);
125 serializer.endTag(NS, ENTRY_TAG);
128 serializer.startTag(NS, ENTRY_TAG);
129 serializer.attribute(NS, EXCLUDE_ATTR, exclude);
130 serializer.endTag(NS, ENTRY_TAG);
133 serializer.endTag(NS, SUBPLAN_TAG)
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 100 namespace NS {
101 struct NS {};
103 struct DerivedFromNS : NS::NS {
105 using InhCtor::NS::NS; // expected-error {{using declaration in class refers into 'InhCtor::NS::', which is not a class}}
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DynamicConfigHandler.java 42 private static final String NS = null; //xml constant representing null namespace
100 serializer.startTag(NS, DynamicConfig.CONFIG_TAG);
102 serializer.startTag(NS, DynamicConfig.ENTRY_TAG);
103 serializer.attribute(NS, DynamicConfig.KEY_ATTR, key);
105 serializer.startTag(NS, DynamicConfig.VALUE_TAG);
107 serializer.endTag(NS, DynamicConfig.VALUE_TAG);
109 serializer.endTag(NS, DynamicConfig.ENTRY_TAG);
111 serializer.endTag(NS, DynamicConfig.CONFIG_TAG);
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
DynamicConfig.java 42 public static final String NS = null;
117 parser.require(XmlPullParser.START_TAG, NS, CONFIG_TAG);
120 parser.require(XmlPullParser.START_TAG, NS, ENTRY_TAG);
121 String key = parser.getAttributeValue(NS, KEY_ATTR);
124 parser.require(XmlPullParser.START_TAG, NS, VALUE_TAG);
126 parser.require(XmlPullParser.END_TAG, NS, VALUE_TAG);
128 parser.require(XmlPullParser.END_TAG, NS, ENTRY_TAG);
134 parser.require(XmlPullParser.END_TAG, NS, CONFIG_TAG);
  /external/compiler-rt/test/profile/
instrprof-value-prof.c 68 uint32_t NS; /* Number value sites. */
80 unsigned S, NS = 0, I, V, doInstrument = 1;
88 CallerInfos[I].NS = I;
95 * the NS field of the CallerInfo object. For each value site, the number of
110 NS = Res->NS;
112 0 /*IPVK_IndirectCallTarget */, NS);
116 for (S = 0; S < NS; S++) {
instrprof-value-prof-2.c 45 unsigned S, NS = 10, V;
64 for (S = 0; S < NS; S++) {
  /frameworks/base/services/core/java/com/android/server/pm/
PreferredComponent.java 180 final int NS = mSetClasses != null ? mSetClasses.length : 0;
187 serializer.attribute(null, ATTR_SET, Integer.toString(NS));
188 for (int s=0; s<NS; s++) {
204 final int NS = mSetPackages.length;
211 for (int j=0; j<NS; j++) {
221 return numMatch == NS;
227 final int NS = mSetPackages.length;
232 for (int j=0; j<NS; j++) {
242 return numMatch == NS;
253 final int NS = mSetPackages.length
    [all...]
  /external/clang/lib/Tooling/Core/
Lookup.cpp 63 std::string NS =
65 if (NewName.startswith(NS))
66 return NewName.substr(NS.size());
  /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/python/cpython2/Lib/lib-tk/
Tkconstants.py 16 NS='ns'
  /external/python/cpython3/Lib/tkinter/
constants.py 16 NS='ns'
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 16 NS='ns'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 16 NS='ns'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 16 NS='ns'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 16 NS='ns'

Completed in 732 milliseconds

1 23 4 5 6 7 8 91011>>