HomeSort by relevance Sort by last modified time
    Searched refs:nested (Results 101 - 125 of 228) sorted by null

1 2 3 45 6 7 8 910

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceParticipant.java 265 /** Create nested Java refactoring which updates the R field references, if applicable */
271 * Create nested Java refactoring which updates the R field references, if
386 CompositeChange nested = new CompositeChange( local
388 addResourceFileChanges(nested, project, monitor);
389 if (nested.getChildren().length > 0) {
390 result.add(nested);
  /external/chromium_org/third_party/sqlite/src/src/
insert.c 539 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewManager.java 1302 NestedConfiguration nested = (NestedConfiguration) configuration; local
1325 NestedConfiguration nested = NestedConfiguration.create( local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 290 // then also check if we're in a third-level nested list that's toggleable
298 // then also check if the parent list is also nested in a hidden list
518 // handle nested items
521 // handle second level nested items
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 535 * nested within a (..), {..}, or [..], then ignore newlines.
552 * Ignore leading whitespace when nested in [..], (..), {..}.
  /external/chromium_org/v8/test/mjsunit/harmony/
generators-parsing.js 85 // Yield is only a keyword in the body of the generator, not in nested
  /external/grub/stage2/
stage2.c 88 get_entry (char *list, int num, int nested)
98 while (nested && *(list++));
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 465 vector<list<char> > nested; local
467 nested.push_back(list<char>(strings[i], strings[i] + strlen(strings[i])));
470 EXPECT_THAT(nested, ElementsAre(ElementsAre('H', Ne('e')),
472 EXPECT_THAT(nested, Not(ElementsAre(ElementsAre('H', 'e'),
    [all...]
  /external/clang/test/SemaCXX/
cxx1y-variable-templates_top_level.cpp 344 namespace nested { namespace
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 35 typedef typename nested<MatrixType>::type MatrixTypeNested;
Transpose.h 35 typedef typename nested<MatrixType>::type MatrixTypeNested;
72 /** \returns the nested expression */
73 const typename internal::remove_all<typename MatrixType::Nested>::type&
76 /** \returns the nested expression */
77 typename internal::remove_all<typename MatrixType::Nested>::type&
81 typename MatrixType::Nested m_matrix;
Block.h 56 typedef typename nested<XprType>::type XprTypeNested;
232 const typename internal::remove_all<typename XprType::Nested>::type& nestedExpression() const
249 const typename XprType::Nested m_xpr;
309 const typename internal::remove_all<typename XprType::Nested>::type& nestedExpression() const
351 typename XprType::Nested m_xpr;
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/eigen/Eigen/src/Geometry/
Homogeneous.h 37 typedef typename nested<MatrixType>::type MatrixTypeNested;
111 typename MatrixType::Nested m_matrix;
239 typedef typename remove_all<typename LhsMatrixTypeCleaned::Nested>::type LhsMatrixTypeNested;
260 typename LhsMatrixTypeCleaned::Nested m_lhs;
261 typename MatrixType::Nested m_rhs;
279 typedef typename remove_all<typename Rhs::Nested>::type RhsNested;
299 typename MatrixType::Nested m_lhs;
300 typename Rhs::Nested m_rhs;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symtable.py 84 return bool(self._table.nested)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symtable.py 84 return bool(self._table.nested)
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 272 int nested = 0; local
277 ++nested;
281 if (--nested < 0) {
    [all...]
  /build/tools/droiddoc/templates-ds/
sdkpage.cs 72 # (nested in if/else redirect)
178 # (nested in if/else redirect and if/else NDK)
  /build/tools/droiddoc/templates-sac/
sdkpage.cs 71 # (nested in if/else redirect)
177 # (nested in if/else redirect and if/else NDK)
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 274 /** \internal Determines how a given expression should be nested into another one.
276 * nested into the bigger product expression. The choice is between nesting the expression b+c as-is, or
279 * many coefficient accesses in the nested expressions -- as is the case with matrix product for example.
281 * \param T the type of the expression being nested
282 * \param n the number of coefficient accesses in the nested expression for each coefficient access in the bigger expression.
288 * the Product expression uses: nested<S, 3>::ret, which turns out to be Matrix3d because the internal logic of
289 * nested determined that in this case it was better to evaluate the expression b+c into a temporary. On the other hand,
290 * since a is of type Matrix3d, the Product expression nests it as nested<Matrix3d, 3>::ret, which turns out to be
291 * const Matrix3d&, because the internal logic of nested determined that since a was already a matrix, there was no point
294 template<typename T, int n=1, typename PlainObject = typename eval<T>::type> struct nested
    [all...]
  /external/eigen/Eigen/src/LU/
Inverse.h 356 typename internal::remove_all<typename internal::nested<Derived, 2>::type>::type,
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h 143 typename internal::nested<MatrixType>::type m_M;
  /external/chromium/testing/gtest/test/
gtest-printers_test.cc 1007 // Nested tuples.
1009 tuple<tuple<int, bool>, char> nested(make_tuple(5, true), 'a');
1010 EXPECT_EQ("((5, true), 'a' (97, 0x61))", Print(nested));
    [all...]
  /external/chromium_org/chrome/test/chromedriver/js/
call_function.js 192 * @param {Array.<string>} shadowHostIds The host ids of the nested shadow
  /external/chromium_org/remoting/webapp/
ui_mode.js 247 // one. We don't have nested modal dialogs, so this will suffice for now.

Completed in 3213 milliseconds

1 2 3 45 6 7 8 910