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

1 23 4 5 6 7 8 91011

  /external/chromium_org/mojo/services/public/cpp/view_manager/tests/
view_manager_unittest.cc 444 Node* nested = Node::Create(window_manager()); local
445 node->AddChild(nested);
448 nested->id());
484 Node* nested = Node::Create(window_manager()); local
485 node->AddChild(nested);
489 nested->id());
491 node->RemoveChild(nested);
502 Node* nested = Node::Create(window_manager()); local
503 node->AddChild(nested);
507 nested->id())
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestSuiteBuilderTest.java 25 import android.test.suitebuilder.examples.nested.Level1Test;
26 import android.test.suitebuilder.examples.nested.nested.Level2Test;
  /external/chromium_org/third_party/sqlite/src/src/
delete.c 58 ** part of a nested parse and writable_schema pragma has not
67 && pParse->nested==0 )
317 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
408 int count = (pParse->nested==0); /* True to count changes */
429 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
437 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
tokenize.c 487 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
492 if( pParse->nested==0 ){
  /external/icu/icu4c/source/common/
uniset_props.cpp 482 UnicodeSet* nested = 0; // alias - do not delete local
492 // -------- Parse '[' of opening delimiter OR nested set.
493 // If there is a nested set, use `setMode' to define how
497 // characters representing a nested set in the symbol
525 // otherwise restart loop for nested [], \p{}, etc.
542 // casting away const, but `nested' won't be modified
544 nested = const_cast<UnicodeSet*>(ms);
550 // -------- Handle a nested set. This either is inline in
572 if (nested == 0) {
578 nested = scratch.pointer()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
arguments-read-and-assignment.js 75 // Capture parameters in nested contexts.
110 // Deeply nested.
121 "deep nested capture");
global-load-from-nested-eval.js 28 // Tests global loads from nested eval.
  /external/libnl/lib/
attr.c 34 * Special nested attributes allow for more complex data structures to
216 * @par Nested Attribute (NLA_NESTED)
217 * Attributes can be nested and put into a container to create groups, lists
218 * or to construct trees of attributes. Nested attributes are often used to
224 * level of nested attributes must be validated seperately using
233 * // Nested attributes are constructed by enclosing the attributes
234 * // to be nested with calls to nla_nest_start() respetively nla_nest_end().
240 * // Various methods exist to parse nested attributes, the easiest being
243 * struct nlattr *nested[ATTR_MAX+1];
245 * nla_parse_nested(nested, ATTR_MAX, attrs[ATTR_OPTS], &policy)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
literals-optimized.js 56 // Test nested array literal.
90 // Test nested object literal.
  /external/chromium_org/v8/test/webkit/
nested-functions.js 25 "This test ensures that properties of nested function code are not lost (due to cached function info)."
33 // Test cases deliberately nested!
resolve-arguments-from-scope.js 25 "Tests that doing repeated resolves of 'arguments' from some nested scope doesn't crash."
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 34 typedef typename nested<MatrixType>::type MatrixTypeNested;
85 const typename MatrixType::Nested m_matrix;
  /external/eigen/Eigen/src/LU/
Determinant.h 95 typedef typename internal::nested<Derived,Base::RowsAtCompileTime>::type Nested;
96 return internal::determinant_impl<typename internal::remove_all<Nested>::type>::run(derived());
  /system/media/camera/docs/
metadata_template.mako 55 % for nested in node.namespaces:
56 ${insert_namespace(nested)}
  /external/chromium_org/third_party/icu/source/common/
uniset_props.cpp 564 UnicodeSet* nested = 0; // alias - do not delete local
574 // -------- Parse '[' of opening delimiter OR nested set.
575 // If there is a nested set, use `setMode' to define how
579 // characters representing a nested set in the symbol
607 // otherwise restart loop for nested [], \p{}, etc.
624 // casting away const, but `nested' won't be modified
626 nested = const_cast<UnicodeSet*>(ms);
632 // -------- Handle a nested set. This either is inline in
654 if (nested == 0) {
660 nested = scratch.pointer()
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/tests/
interface_ptr_unittest.cc 122 void BeginTest(bool nested) {
123 nesting_level_ = nested ? 2 : 1;
  /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.
interface.cc 82 Nesting nested; local
156 Nesting nested; local
  /external/clang/test/SemaCXX/
lambda-expressions.cpp 196 template<typename...Ts> void nested(Ts ...ts) {
205 template void nested(int, int, int);
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 29 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
49 typedef typename internal::nested<ExpressionType>::type NestedExpressionType;
124 /** Forwards the resizing request to the nested expression
127 /** Forwards the resizing request to the nested expression
149 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
169 typedef typename internal::nested<ExpressionType>::type NestedExpressionType;
241 /** Forwards the resizing request to the nested expression
244 /** Forwards the resizing request to the nested expression
CwiseBinaryOp.h 63 typedef typename Lhs::Nested LhsNested;
64 typedef typename Rhs::Nested RhsNested;
120 typedef typename internal::nested<Lhs>::type LhsNested;
121 typedef typename internal::nested<Rhs>::type RhsNested;
149 /** \returns the left hand side nested expression */
151 /** \returns the right hand side nested expression */
CwiseUnaryView.h 37 typedef typename MatrixType::Nested MatrixTypeNested;
77 /** \returns the nested expression */
78 const typename internal::remove_all<typename MatrixType::Nested>::type&
81 /** \returns the nested expression */
82 typename internal::remove_all<typename MatrixType::Nested>::type&
86 // FIXME changed from MatrixType::Nested because of a weird compilation error with sun CC
87 typename internal::nested<MatrixType>::type m_matrix;
  /external/eigen/Eigen/src/SparseCore/
SparseProduct.h 29 typename internal::nested<Lhs,Rhs::RowsAtCompileTime>::type>::type LhsNested;
33 typename internal::nested<Rhs,Lhs::RowsAtCompileTime>::type>::type RhsNested;
43 // clean the nested types:
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp 399 namespace nested { namespace
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 31 // nested catch contexts.

Completed in 1710 milliseconds

1 23 4 5 6 7 8 91011