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

1 23 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/compiler/
symbols.py 26 # nested is true if the class could contain free variables,
27 # i.e. if it is nested within another function.
28 self.nested = None
80 print >> sys.stderr, self.name, self.nested and "nested" or ""
98 if self.nested and (name in self.frees or name in self.uses):
100 if self.nested:
106 if not self.nested:
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
symbols.py 26 # nested is true if the class could contain free variables,
27 # i.e. if it is nested within another function.
28 self.nested = None
80 print >> sys.stderr, self.name, self.nested and "nested" or ""
98 if self.nested and (name in self.frees or name in self.uses):
100 if self.nested:
106 if not self.nested:
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
symbols.py 26 # nested is true if the class could contain free variables,
27 # i.e. if it is nested within another function.
28 self.nested = None
80 print >> sys.stderr, self.name, self.nested and "nested" or ""
98 if self.nested and (name in self.frees or name in self.uses):
100 if self.nested:
106 if not self.nested:
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 26 # nested is true if the class could contain free variables,
27 # i.e. if it is nested within another function.
28 self.nested = None
80 print >> sys.stderr, self.name, self.nested and "nested" or ""
98 if self.nested and (name in self.frees or name in self.uses):
100 if self.nested:
106 if not self.nested:
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 26 # nested is true if the class could contain free variables,
27 # i.e. if it is nested within another function.
28 self.nested = None
80 print >> sys.stderr, self.name, self.nested and "nested" or ""
98 if self.nested and (name in self.frees or name in self.uses):
100 if self.nested:
106 if not self.nested:
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_contextlib.py 123 with nested(a(), b(), c()) as (x, y, z):
145 with nested(a(), b()) as (x, y):
164 with nested(a(), b()) as (x, y):
180 with nested(a(), b()):
192 with nested(a(), a()):
204 with nested(a(), a()):
217 with nested(a(), a()):
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_contextlib.py 123 with nested(a(), b(), c()) as (x, y, z):
145 with nested(a(), b()) as (x, y):
164 with nested(a(), b()) as (x, y):
180 with nested(a(), b()):
192 with nested(a(), a()):
204 with nested(a(), a()):
217 with nested(a(), a()):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_contextlib.py 123 with nested(a(), b(), c()) as (x, y, z):
145 with nested(a(), b()) as (x, y):
164 with nested(a(), b()) as (x, y):
180 with nested(a(), b()):
192 with nested(a(), a()):
204 with nested(a(), a()):
217 with nested(a(), a()):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_contextlib.py 123 with nested(a(), b(), c()) as (x, y, z):
145 with nested(a(), b()) as (x, y):
164 with nested(a(), b()) as (x, y):
180 with nested(a(), b()):
192 with nested(a(), a()):
204 with nested(a(), a()):
217 with nested(a(), a()):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_contextlib.py 123 with nested(a(), b(), c()) as (x, y, z):
145 with nested(a(), b()) as (x, y):
164 with nested(a(), b()) as (x, y):
180 with nested(a(), b()):
192 with nested(a(), a()):
204 with nested(a(), a()):
217 with nested(a(), a()):
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource_test.cc 428 NestedBook nested; local
429 nested.set_allocated_book(book);
440 DoTest(nested, BadNestedBook::descriptor());
444 BadNestedBook nested; local
445 nested.add_book(1);
446 nested.add_book(2);
447 nested.add_book(3);
448 nested.add_book(4);
449 nested.add_book(5);
450 nested.add_book(6)
633 MapOut* nested = out.add_map2()->mutable_value(); local
907 NestedFieldMask* nested = out.add_nested_mask(); local
    [all...]
  /external/flatbuffers/java/com/google/flatbuffers/
FlatBufferBuilder.java 46 boolean nested = false; // Whether we are currently serializing a table. field in class:FlatBufferBuilder
101 nested = false;
351 nested = true;
362 if (!nested)
364 nested = false;
493 if (nested)
494 throw new AssertionError("FlatBuffers: object serialization must not be nested.");
504 public void Nested(int obj) {
554 nested = true;
655 Nested(x)
    [all...]
  /external/protobuf/src/google/protobuf/
proto3_arena_unittest.cc 168 TestAllTypes::NestedMessage* nested = new TestAllTypes::NestedMessage; local
169 nested->set_bb(118);
170 arena_message->set_allocated_optional_nested_message(nested);
178 google::protobuf::scoped_ptr<TestAllTypes::NestedMessage> nested(
180 EXPECT_EQ(118, nested->bb());
189 // delete` the nested message (which is on the arena):
  /external/chromium-trace/catapult/systrace/systrace/tracing_agents/
atrace_agent_unittest.py 95 with contextlib.nested(open(ATRACE_DATA_RAW, 'r'),
105 with contextlib.nested(open(ATRACE_PROCFS_DUMP, 'r'),
118 with contextlib.nested(open(ATRACE_EXTRACTED_TGIDS, 'r'),
atrace_from_file_agent_unittest.py 38 with contextlib.nested(open(output_file_name, 'r'),
  /external/eigen/Eigen/src/Core/
Fuzzy.h 25 typename internal::nested_eval<Derived,2>::type nested(x);
27 return (nested - otherNested).cwiseAbs2().sum() <= prec * prec * numext::mini(nested.cwiseAbs2().sum(), otherNested.cwiseAbs2().sum());
  /frameworks/base/services/net/java/android/net/netlink/
StructNlAttr.java 140 public StructNlAttr(short type, StructNlAttr... nested) {
145 for (StructNlAttr nla : nested) payloadLength += nla.getAlignedLength();
149 for (StructNlAttr nla : nested) {
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 40 class Nested { };
48 class HasDepBase::Nested nested; local
57 class NoDepBase::Nested nested; // expected-error{{no class named 'Nested' in 'NoDepBase<T>'}} local
  /external/flatbuffers/php/
FlatbufferBuilder.php 54 * @var bool $nested
56 protected $nested = false; variable
730 if ($this->nested) {
731 throw new \Exception("FlatBuffers; object serialization must not be nested");
739 public function nested($obj) function
762 $this->nested = true; variable
775 $this->nested($x);
789 $this->nested($x);
808 if ($this->vtable == null || !$this->nested) {
864 $this->nested = false variable
    [all...]
  /external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/targets/
TryWithResources.java 78 private static void nested() { method in class:TryWithResources
79 try ( // $line-nested.try1$
80 Resource r1 = new Resource() // $line-nested.open1$
83 try ( // $line-nested.try2$
84 Resource r2 = new Resource() // $line-nested.open2$
86 nop(r1.toString() + r2.toString()); // $line-nested.body$
87 } // $line-nested.close2$
89 nop(); // $line-nested.catch2$
91 nop(); // $line-nested.finally2$
94 } // $line-nested.close1
154 nested(); method
    [all...]
  /external/autotest/server/site_tests/network_WiFi_WakeOnSSID/
network_WiFi_WakeOnSSID.py 27 with contextlib.nested(
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist-pr12086.cpp 54 std::initializer_list<std::initializer_list<int>> nested = { variable
66 // CHECK-STATIC-BL: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([3 x {{.*}}], [3 x {{.*}}]* @_ZGR6nested_, i32 0, i32 0), i64 3 }, align 8
68 // CHECK-DYNAMIC-BL: @nested = global
89 // CHECK-DYNAMIC-BL: {{.*}}** getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 0), align 8
90 // CHECK-DYNAMIC-BL: store i64 3, i64* getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 1), align 8
103 // CHECK-STATIC-BE: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([3 x {{.*}}], [3 x {{.*}}]* @_ZGR6nested_, i32 0, i32 0),
106 // CHECK-DYNAMIC-BE: @nested = global
130 // CHECK-DYNAMIC-BE: {{.*}}** getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 0), align 8
132 // CHECK-DYNAMIC-BE: {{.*}}** getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 1), align 8
  /external/mockito/src/test/java/org/mockito/internal/util/reflection/
GenericMasterTest.java 23 List<Set<String>> nested; field in class:GenericMasterTest
52 assertEquals(Set.class, m.getGenericType(field("nested")));
  /external/skia/tests/
StrokeTest.cpp 77 SkRect nested[2]; local
78 REPORTER_ASSERT(reporter, fillPath.isNestedFillRects(nested) == isMiter);
82 REPORTER_ASSERT(reporter, equal(nested[0], outer));
83 REPORTER_ASSERT(reporter, equal(nested[1], inner));
  /external/python/cpython2/Lib/test/
test_contextlib.py 131 with nested(a(), b(), c()) as (x, y, z):
153 with nested(a(), b()) as (x, y):
172 with nested(a(), b()) as (x, y):
188 with nested(a(), b()):
200 with nested(a(), a()):
212 with nested(a(), a()):
225 with nested(a(), a()):

Completed in 1816 milliseconds

1 23 4 5 6 7 8 91011>>