HomeSort by relevance Sort by last modified time
    Searched defs:maxDepth (Results 1 - 7 of 7) sorted by null

  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TooManyViewsDetector.java 60 int maxDepth = 0;
72 maxDepth = Integer.parseInt(depthValue);
79 if (maxDepth == 0) {
80 maxDepth = 10;
84 MAX_DEPTH = maxDepth;
  /external/srec/tools/grxmlcompile/
sub_min.cpp 122 int ii, jj, dd, maxDepth, count, itCnt;
124 maxDepth= 0;
126 if (maxDepth < depthMap[ii])
127 maxDepth= depthMap[ii];
133 for (dd= 0; dd <= maxDepth; dd++)
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java 175 int maxDepth = 0;
180 maxDepth = Math.max(maxDepth, depth(list.item(i)));
183 return maxDepth + 1;
  /packages/inputmethods/LatinIME/native/src/
unigram_dictionary.cpp 187 const int maxDepth = min(mInputLength * MAX_DEPTH_MULTIPLIER, MAX_WORD_LENGTH);
188 mCorrection->initCorrection(mProximityInfo, mInputLength, maxDepth);
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 839 int maxDepth = 0;
845 if (maxDepth < depth) {
846 maxDepth = depth;
849 if (mDbg) Log.d(TAG, "completeConstruction: maxDepth=" + maxDepth);
851 mStateStack = new StateInfo[maxDepth];
852 mTempStateStack = new StateInfo[maxDepth];
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 95 static const int maxDepth = 20000;
609 if (m_depth > maxDepth)
    [all...]
  /frameworks/base/include/private/opengles/
gl_context.h 446 uint8_t maxDepth;

Completed in 930 milliseconds