HomeSort by relevance Sort by last modified time
    Searched full:nested (Results 276 - 300 of 3423) sorted by null

<<11121314151617181920>>

  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 98 ## Nested
  /external/qemu/target-i386/
TODO 22 - add SVM nested paging support
  /external/skia/src/core/
SkDiscardableMemory.h 48 * Nested calls to lock are not allowed.
  /external/valgrind/main/memcheck/tests/
varinfo2.c 2 /* Check for correct handling of nested scopes in a zero-biased
  /frameworks/base/core/java/android/hardware/
CameraInfo.java 28 // Can't parcel nested classes, so make this a top level class that composes
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryHandler.java 35 * nested vCard files.
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardImporterNestTests.java 21 * Test cases specific for nested vCard.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/
types.pass.cpp 14 // Test nested types
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
type_wrapper.hpp 30 // nested 'type' from 'type_wrapper<T>' when the latter was the result of a
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_init.py 24 # make sure the only accessing a nested structure
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_init.py 24 # make sure the only accessing a nested structure
  /external/eigen/Eigen/src/Core/
ProductBase.h 40 // are not used in practice because nested is overloaded for products
69 typedef typename Lhs::Nested LhsNested;
76 typedef typename Rhs::Nested RhsNested;
116 // Implicit conversion to the nested type (trigger the evaluation of the product)
177 // here we need to overload the nested rule for products
178 // such that the nested type is a const reference to a plain matrix
181 struct nested<GeneralProduct<Lhs,Rhs,Mode>, N, PlainObject> struct in namespace:Eigen::internal
  /external/llvm/test/DebugInfo/X86/
template.ll 8 ; template<typename> struct y_impl { struct nested { }; };
10 ; y_impl<int>::nested n;
59 %"struct.y_impl<int>::nested" = type { i8 }
62 @n = global %"struct.y_impl<int>::nested" zeroinitializer, align 1
98 !8 = metadata !{i32 786451, metadata !1, metadata !"_ZTS6y_implIiE", metadata !"nested", i32 2, i64 8, i64 8, i32 0, i32 0, null, metadata !2, i32 0, null, null, metadata !"_ZTSN6y_implIiE6nestedE"} ; [ DW_TAG_structure_type ] [nested] [line 2, size 8, align 8, offset 0] [def] [from ]
120 !30 = metadata !{i32 786484, i32 0, null, metadata !"n", metadata !"n", metadata !"", metadata !11, i32 4, metadata !8, i32 0, i32 1, %"struct.y_impl<int>::nested"* @n, null} ; [ DW_TAG_variable ] [n] [line 4] [def]
  /external/chromium_org/base/json/
json_value_converter.h 55 // For nested field, the internal message also has to implement the registration
58 // struct Nested {
62 // converter->RegisterNestedField("foo", &Nested::foo);
68 // RegisterRepeatedMessage for nested repeated fields.
314 scoped_ptr<NestedType> nested(new NestedType);
315 if (converter_.Convert(*element, nested.get())) {
316 field->push_back(nested.release());
351 scoped_ptr<NestedType> nested(new NestedType);
352 if ((*convert_func_)(element, nested.get())) {
353 field->push_back(nested.release())
    [all...]
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 296 /** \internal Determines how a given expression should be nested into another one.
298 * nested into the bigger product expression. The choice is between nesting the expression b+c as-is, or
301 * many coefficient accesses in the nested expressions -- as is the case with matrix product for example.
303 * \param T the type of the expression being nested
304 * \param n the number of coefficient accesses in the nested expression for each coefficient access in the bigger expression.
310 * the Product expression uses: nested<S, 3>::ret, which turns out to be Matrix3d because the internal logic of
311 * nested determined that in this case it was better to evaluate the expression b+c into a temporary. On the other hand,
312 * since a is of type Matrix3d, the Product expression nests it as nested<Matrix3d, 3>::ret, which turns out to be
313 * const Matrix3d&, because the internal logic of nested determined that since a was already a matrix, there was no point
316 template<typename T, int n=1, typename PlainObject = typename eval<T>::type> struct nested
    [all...]
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 113 + "c=@testdata.Annotated$Nested(e=E1, f=1695938256, g=7264081114510713000), "
114 + "d=[@testdata.Annotated$Nested(e=E2, f=1695938256, g=7264081114510713000)])",
117 + "c=@testdata.Annotated$Nested(e=, f=0, g=0), d=[])",
120 + "c=@testdata.Annotated$Nested(e=, f=0, g=0), d=[])",
123 + "c=@testdata.Annotated$Nested(e=, f=0, g=0), d=[])",
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java 31 * case of nested exceptions, printStackTrace will dump
32 * all the traces of the nested exceptions, not just the trace
63 /** A nested exception.
172 * originated. This will trace all nested exception
251 * originated. This will trace all nested exception
  /external/chromium_org/tools/gn/
scope_unittest.cc 140 // Create 3 nested scopes [const root from setup] <- nested1 <- nested2.
153 // Root scope should be const from the nested caller's perspective.
166 // Making a closure from the second nested scope.
196 // Create a first nested scope with a different value.
201 // Create a second nested scope with a different value.
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
tracing_backend.py 122 """ Starts tracing on the first nested call and returns True. Returns False
123 and does nothing on subsequent nested calls.
131 logging.warning('Cannot determine if category filter of nested ' +
146 """ Stops tracing on the innermost (!) nested call, because we cannot get
147 results otherwise. Resets _tracing_data on the outermost nested call.
  /external/chromium_org/v8/src/
hydrogen-flow-engine.h 91 // block, starting with the initial state. Computes effects for nested loops.
156 // Recursively compute and cache the effects of the nested loop.
158 Effects* nested = ComputeLoopEffects(member); local
159 effects->Union(nested, zone_);
160 // Skip the nested loop's blocks.
  /external/emma/core/java12/com/vladium/emma/report/
IItemAttribute.java 83 } // end of nested class
115 } // end of nested class
127 } // end of nested class
227 } // end of nested class
263 } // end of nested class
  /frameworks/base/core/java/android/database/sqlite/
SQLiteSession.java 79 * Explicit transactions can also be nested. A nested explicit transaction is
82 * If any nested transaction is not marked successful, then the entire transaction
83 * including all of its nested transactions will be rolled back
245 * Returns true if the session has a nested transaction in progress.
247 * @return True if the session has a nested transaction in progress.
267 * Otherwise, a nested transaction is started.
272 * If the transaction is not successful, or if any of its nested
279 * Ignored when creating a nested transaction.
380 * If this is the outermost transaction (not nested within any othe
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
AST.stg 151 referencedElementsDeep, // all nested refs
152 referencedElements, // elements in immediately block; no nested blocks
165 referencedElementsDeep, // all nested refs
166 referencedElements, // elements in immediately block; no nested blocks
179 referencedElementsDeep, // all nested refs
180 referencedElements, // elements in immediately block; no nested blocks
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Message.java 152 * Get a nested builder instance for the given field.
156 * however, can also hold a reference to the builder object (a nested
159 * If the field is already backed up by a nested builder, the nested builder
162 * field builder, which will then be nested into its parent builder.
164 * NOTE: implementations that do not support nested builders will throw
  /external/chromium_org/ui/views/controls/menu/
menu_runner.cc 30 // Release() cancels the menu and when the nested RunMenuAt() call returns
122 // The menu is running a nested message loop, we can't delete it now
164 // There's some other menu open and we're not nested. Cancel the menu.
168 // twice nested. This isn't necessarily a problem, but generally isn't
311 // The parent of the nested menu will have created a DisplayChangeListener, so
312 // we avoid creating a DisplayChangeListener if nested. Drop menus are

Completed in 1284 milliseconds

<<11121314151617181920>>