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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
debug-info-global.cpp 6 namespace ns { namespace
10 return ns::cnst + ns::cnst;
17 // CHECK: [[CNST]] = {{.*}}, metadata [[NS:![0-9]*]], metadata !"cnst", {{.*}}; [ DW_TAG_variable ] [cnst]
18 // CHECK: [[NS]] = {{.*}}; [ DW_TAG_namespace ] [ns]
  /external/lldb/test/lang/objc/objc-builtin-types/
main.cpp 1 namespace ns { namespace
7 ns::id foo = 0;
  /external/libcxx/test/utilities/time/time.duration/time.duration.nonmember/
op_times_rep.pass.cpp 30 std::chrono::nanoseconds ns(3);
31 ns = ns * 5;
32 assert(ns.count() == 15);
33 ns = 6 * ns;
34 assert(ns.count() == 90);
38 constexpr std::chrono::nanoseconds ns(3);
39 constexpr std::chrono::nanoseconds ns2 = ns * 5;
41 constexpr std::chrono::nanoseconds ns3 = 6 * ns;
    [all...]
op_divide_rep.pass.cpp 25 std::chrono::nanoseconds ns(15);
26 ns = ns / 5;
27 assert(ns.count() == 3);
31 constexpr std::chrono::nanoseconds ns(15);
32 constexpr std::chrono::nanoseconds ns2 = ns / 5;
op_mod_rep.pass.cpp 25 std::chrono::nanoseconds ns(15);
26 ns = ns % 6;
27 assert(ns.count() == 3);
31 constexpr std::chrono::nanoseconds ns(15);
32 constexpr std::chrono::nanoseconds ns2 = ns % 6;
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
p6.cpp 6 namespace ns { namespace
9 using namespace ns;
13 namespace ns { namespace
  /external/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
op_divide=.pass.cpp 21 std::chrono::nanoseconds ns(15);
22 ns /= 5;
23 assert(ns.count() == 3);
op_times=.pass.cpp 21 std::chrono::nanoseconds ns(3);
22 ns *= 5;
23 assert(ns.count() == 15);
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p11.cpp 16 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test0
18 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
22 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test1
23 using ns::foo; //expected-note {{using declaration}}
28 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test2
31 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
35 using ns::foo; //expected-note {{using declaration}}
41 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test3
45 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
51 using ns::foo; //expected-note {{using declaration}
58 namespace ns { void foo(); } \/\/ expected-note 2 {{target of using declaration}} namespace in namespace:test4
76 namespace ns { void foo(int); } namespace in namespace:test5
96 namespace ns { void foo(); } \/\/ expected-note {{target of using declaration}} namespace in namespace:test6
98 namespace ns { namespace in namespace:test6
    [all...]
p8.cpp 8 namespace ns { namespace in namespace:test0
12 using ns::foo;
13 using ns::foo;
19 namespace ns { namespace in namespace:test0
27 using ns::foo;
33 using ns::foo;
38 namespace ns { namespace in namespace:test1
43 using ns::foo;
50 namespace ns { namespace in namespace:test1
59 using ns::foo
    [all...]
p10.cpp 24 namespace ns { namespace in namespace:test1
28 using ns::foo;
31 namespace ns { namespace in namespace:test1
  /external/clang/test/SemaTemplate/
dependent-names-no-std.cpp 7 namespace ns { namespace in namespace:PR10053
18 void f(ns::Data); // expected-note {{in namespace 'PR10053::ns'}}
20 A<ns::Data> a; // expected-note {{in instantiation of member function}}
  /external/libutf/
runestrdup.c 23 Rune *ns; local
25 ns = (Rune*)malloc(sizeof(Rune)*(runestrlen(s) + 1));
26 if(ns == 0)
29 return runestrcpy(ns, s);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
Pack.java 14 public static void bigEndianToInt(byte[] bs, int off, int[] ns)
16 for (int i = 0; i < ns.length; ++i)
18 ns[i] = bigEndianToInt(bs, off);
38 public static byte[] intToBigEndian(int[] ns)
40 byte[] bs = new byte[4 * ns.length];
41 intToBigEndian(ns, bs, 0);
45 public static void intToBigEndian(int[] ns, byte[] bs, int off)
47 for (int i = 0; i < ns.length; ++i)
49 intToBigEndian(ns[i], bs, off);
61 public static void bigEndianToLong(byte[] bs, int off, long[] ns)
    [all...]
  /external/clang/test/PCH/
chain-late-anonymous-namespace.cpp 10 namespace ns {} namespace
16 namespace ns {
38 namespace ns {
  /external/flac/include/share/
alloc.h 40 size_t ns = n; local
42 return n == ns ? malloc(ns) : NULL;
49 size_t ns = n; local
51 return n == ns ? malloc(ns) : NULL;
58 size_t ns = n; local
60 return n == ns ? malloc(ns) : NULL;
67 size_t ns = n local
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
namespaces.c 203 * Store the ns-node in the alias-object.
323 * Find a matching (prefix and ns-name) ns-declaration
325 * If none is found then a new ns-declaration will be
327 * already in use, then a ns-declaration with a modified ns-prefix
329 * preserve ns-prefixes; it will only change a prefix if there's
341 xmlNsPtr ns; local
349 * NOTE: Namespace exclusion and ns-aliasing is performed at
360 * the ns-decls currently in-scope via a specialized context
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 64 public static String nsToString(long ns) {
65 if (ns < 1000L) {
66 return Long.toString(ns) + "ns";
67 } else if (ns < 1000000L) {
68 return Long.toString(ns/1000L) + "us";
69 } else if (ns < 1000000000L) {
70 return Long.toString(ns/1000000L) + "ms";
71 } else if (ns < 60000000000L) {
72 return String.format("%.2fs", nsToS(ns));
    [all...]
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_updater.cc 58 PolicyNamespace ns; local
60 if (!store_->ValidatePolicy(response.Pass(), &ns, &data)) {
66 const std::string& cached_hash = store_->GetCachedHash(ns);
74 const std::string key = NamespaceToKey(ns);
82 store_->Delete(ns);
92 ns,
98 void ComponentCloudPolicyUpdater::CancelUpdate(const PolicyNamespace& ns) {
99 external_policy_data_updater_.CancelExternalDataFetch(NamespaceToKey(ns));
103 const PolicyNamespace& ns) {
104 const std::string domain = base::IntToString(ns.domain)
    [all...]
component_cloud_policy_store_unittest.cc 86 PolicyNamespace ns(POLICY_DOMAIN_EXTENSIONS, kTestExtension);
87 PolicyMap& policy = expected_bundle_.Get(ns);
125 PolicyNamespace ns; local
126 EXPECT_TRUE(store_->ValidatePolicy(CreateResponse(), &ns, &payload));
127 EXPECT_EQ(POLICY_DOMAIN_EXTENSIONS, ns.domain);
128 EXPECT_EQ(kTestExtension, ns.component_id);
136 PolicyNamespace ns; local
137 EXPECT_FALSE(store_->ValidatePolicy(CreateResponse(), &ns, &payload));
143 PolicyNamespace ns; local
144 EXPECT_FALSE(store_->ValidatePolicy(CreateResponse(), &ns, &payload))
150 PolicyNamespace ns; local
157 PolicyNamespace ns; local
165 PolicyNamespace ns; local
174 PolicyNamespace ns; local
181 PolicyNamespace ns; local
187 PolicyNamespace ns; local
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/previewarea/
margin_control_container.css 6 cursor: ns-resize;
  /external/libcxx/test/utilities/time/time.duration/time.duration.literals/
literals1.pass.cpp 43 nanoseconds ns = 645ns; local
44 assert ( ns == nanoseconds(645));
45 auto ns2 = 645.ns;
46 assert ( ns == ns2 );
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 75 namespace ns { namespace in namespace:test5
83 A::foo(); // expected-error {{'foo' is a private member of 'test5::ns::A'}}
88 ns::A::foo(); // expected-error {{'foo' is a private member of 'test5::ns::A'}}
98 namespace ns { namespace in namespace:test6
113 ns::B::foo(); // expected-error {{'foo' is a private member of 'test6::ns::B'}}
121 namespace ns { namespace in namespace:test7a
125 using namespace ns;
131 class ns::A
138 namespace ns { namespace in namespace:test7b
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestResults.java 44 private static final String ns = CtsXmlResultReporter.ns; field in class:TestResults
125 serializer.startTag(ns, "HostInfo");
131 serializer.attribute(ns, "name", hostName);
133 serializer.startTag(ns, "Os");
134 serializer.attribute(ns, "name", System.getProperty("os.name"));
135 serializer.attribute(ns, "version", System.getProperty("os.version"));
136 serializer.attribute(ns, "arch", System.getProperty("os.arch"));
137 serializer.endTag(ns, "Os");
139 serializer.startTag(ns, "Java")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
ExtensionsProvider.java 38 public boolean functionAvailable(String ns, String funcName)
44 public boolean elementAvailable(String ns, String elemName)
50 public Object extFunction(String ns, String funcName,

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011>>