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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
sploop-bad-4.l 2 [^:]*:6: Error: nested software pipelined loop
3 [^:]*:10: Error: nested software pipelined loop
4 [^:]*:13: Error: nested software pipelined loop
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/
Level2Test.java 17 package android.test.suitebuilder.examples.nested.nested;
  /external/testng/src/test/java/test/nested/foo/
AccountTypeEnum.java 1 package test.nested.foo;
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
namespaces-expected.cc 10 // Stuff in nested namespaces should be renamed.
11 namespace nested { namespace in namespace:blink
13 } // namespace nested
27 // Stuff in nested namespaces should be renamed.
28 namespace nested { namespace in namespace:WTF
30 } // namespace nested
48 blink::nested::Foo();
50 WTF::nested::Foo();
namespaces-original.cc 10 // Stuff in nested namespaces should be renamed.
11 namespace nested { namespace in namespace:blink
13 } // namespace nested
27 // Stuff in nested namespaces should be renamed.
28 namespace nested { namespace in namespace:WTF
30 } // namespace nested
48 blink::nested::foo();
50 WTF::nested::foo();
  /external/clang/test/OpenMP/
openmp_check.cpp 2 int nested(int a) { function
target_codegen_registration_naming.cpp 26 int nested(int a){ function
  /external/testng/src/test/java/test/
NestedStaticSampleTest.java 11 public class Nested {
13 public void nested() { method in class:NestedStaticSampleTest.Nested
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/
Level1Test.java 17 package android.test.suitebuilder.examples.nested;
  /external/testng/src/test/java/test/nested/
GarfTest.java 1 package test.nested;
6 import test.nested.foo.AccountTypeEnum;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/targets/
Target12.java 28 static void nested() { method in class:Target12
43 nested(); method
  /external/javassist/src/main/javassist/convert/
TransformNewClass.java 23 private int nested; field in class:TransformNewClass
35 nested = 0;
62 ++nested;
68 if (typedesc != 0 && nested > 0) {
76 --nested;
TransformNew.java 23 private int nested; field in class:TransformNew
35 nested = 0;
66 ++nested;
82 if (typedesc != 0 && nested > 0) {
86 --nested;
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
ProfilerTest.java 94 Profiler nested = profiler.startNested("subtask"); local
95 doSubtask(nested);
123 public void doSubtask(Profiler nested) {
124 nested.start("n1");
127 nested.start("n2");
129 nested.stop();
  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 21 #define nested(x) int x comment cute little dead tokens... macro
24 nested(baz) rise of the dead tokens
  /external/clang/test/PCH/
struct.c 28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
  /external/guava/guava/src/com/google/common/util/concurrent/
AsyncSettableFuture.java 44 private final NestedFuture<V> nested = new NestedFuture<V>(); field in class:AsyncSettableFuture
45 private final ListenableFuture<V> dereferenced = Futures.dereference(nested);
58 return nested.setFuture(checkNotNull(future));
88 return nested.isDone();
  /external/clang/test/CodeGenCXX/
debug-info-template.cpp 17 struct nested { struct in struct:TC
27 // CHECK-SAME: variable: %"struct.TC<unsigned int, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested"* @tci
28 // CHECK: ![[TCNESTED]] ={{.*}}!DICompositeType(tag: DW_TAG_structure_type, name: "nested",
81 3>::nested tci;
  /tools/test/connectivity/acts/framework/tests/
acts_proto_utils_test.py 55 def compare_test_entry(self, entry, name, id, nested):
58 self.assertEqual(len(entry.nested), len(nested))
59 for i in range(len(entry.nested)):
60 self.assertEqual(entry.nested[i].name, nested[i][0])
61 self.assertEqual(entry.nested[i].type, nested[i][1])
  /system/nvram/messages/tests/
io_test.cpp 144 NestedInputStreamBuffer nested(&buf, SIZE_MAX);
145 EXPECT_FALSE(nested.Skip(SIZE_MAX));
150 NestedInputStreamBuffer nested(&buf, 5);
151 CheckRead(&nested, 5, 0);
152 EXPECT_TRUE(nested.Done());
153 EXPECT_FALSE(nested.Skip(1));
158 NestedInputStreamBuffer nested(&buf, 10);
159 CheckRead(&nested, 10, 0);
160 EXPECT_TRUE(nested.Done());
161 EXPECT_FALSE(nested.Skip(1))
    [all...]
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 17 namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared here}} namespace in namespace:fizbin
18 namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared here}} \ namespace in namespace:fizbin
19 // expected-note{{'fizbin::nested::lessFoobar' declared here}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}
    [all...]
  /frameworks/support/lifecycle/extensions/src/androidTest/java/android/arch/lifecycle/activity/
FragmentLifecycleActivity.java 40 private static final String EXTRA_NESTED = "nested";
53 boolean nested = getIntent().getBooleanExtra(EXTRA_NESTED, false);
54 if (nested) {
57 observe(nested ? fragment.mNestedFragment : fragment);
91 public static Intent intentFor(Context context, boolean nested) {
93 intent.putExtra(EXTRA_NESTED, nested);
  /external/elfutils/tests/
run-allfcts.sh 87 /home/mark/src/tests/nested/nested_funcs.c:2:foo
88 /home/mark/src/tests/nested/nested_funcs.c:4:bar
89 /home/mark/src/tests/nested/nested_funcs.c:13:main
90 /home/mark/src/tests/nested/class_func.cxx:6:bar
91 /home/mark/src/tests/nested/class_func.cxx:13:main
  /external/clang/test/CXX/temp/temp.spec/
p5.cpp 32 // Make sure that we don't get tricked by redeclarations of nested classes.
36 struct Nested;
37 friend struct Nested;
39 struct Nested {
40 Nested() {}
41 } nested; member in struct:NestedClassRedecls::X
  /external/libnl/tests/
test-genl.c 17 struct nlattr *nested; local
21 nested = info->attrs[TASKSTATS_TYPE_AGGR_PID];
23 nested = info->attrs[TASKSTATS_TYPE_AGGR_TGID];
26 "nested attribute/\n");
30 err = nla_parse_nested(attrs, TASKSTATS_TYPE_MAX, nested, attr_policy);

Completed in 639 milliseconds

1 2 3 4 5 6 7 8 91011>>