Searched refs:depth (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/commons/io/
H A DDirectoryWalker.java32 * This class operates with a {@link FileFilter} and maximum depth to
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
76 * protected void handleFile(File file, int depth, Collection results) {
206 * private void handleIsCancelled(File file, int depth, Collection results) {
226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException {
229 * throw new CancelException(file, depth);
234 * protected void handleFile(File file, int depth, Collection results) throws IOException {
237 * throw new CancelException(file, depth);
258 * The limit on the directory depth to walk.
263 * Construct an instance with no filtering and unlimited <i>depth</
350 walk(File directory, int depth, Collection results) argument
393 checkIfCancelled(File file, int depth, Collection results) argument
434 handleIsCancelled( File file, int depth, Collection results) argument
488 handleDirectory(File directory, int depth, Collection results) argument
503 handleDirectoryStart(File directory, int depth, Collection results) argument
517 handleFile(File file, int depth, Collection results) argument
531 handleRestricted(File directory, int depth, Collection results) argument
545 handleDirectoryEnd(File directory, int depth, Collection results) argument
574 private int depth = -1; field in class:DirectoryWalker.CancelException
583 CancelException(File file, int depth) argument
596 CancelException(String message, File file, int depth) argument
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DPreferenceInflater.java87 int depth = parser.getDepth();
88 if (depth > list.size()) {
91 list.set(depth - 1, pref);
93 if (depth > 1) {
94 ((PreferenceGroup) list.get(depth - 2)).addChild(pref);
/packages/apps/Camera/src/com/android/camera/panorama/
H A DMosaicRendererSurfaceView.java51 int depth, int stencil) {
53 initialize(context, translucent, depth, stencil);
56 private void initialize(Context context, boolean translucent, int depth, int stencil) { argument
58 init(translucent, depth, stencil);
68 private void init(boolean translucent, int depth, int stencil) { argument
90 translucent ? new ConfigChooser(8, 8, 8, 8, depth, stencil) :
91 new ConfigChooser(5, 6, 5, 0, depth, stencil));
126 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
131 mDepthSize = depth;
50 MosaicRendererSurfaceView(Context context, boolean translucent, int depth, int stencil) argument
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DParser.java65 // The current tag depth
66 private int depth; field in class:Parser
407 name = nameArray[depth];
411 startTag = endTag = startTagArray[depth];
412 depth--;
420 depth++;
423 nameArray[depth] = name;
427 startTagArray[depth] = startTag;
441 nameArray[depth--] = null;
/packages/inputmethods/LatinIME/native/src/
H A Dunigram_dictionary.cpp372 const int inputIndex, const int skipPos, const int depth) {
375 return (c == QUOTE && userTypedChar != QUOTE) || skipPos == depth;
520 int depth = 0; local
527 while (depth >= 0) {
528 const int charGroupCount = mStackChildCount[depth];
529 int pos = mStackSiblingPos[depth];
531 int inputIndex = mStackInputIndex[depth];
550 // Save position for this depth, to get back to this once children are done
551 mStackChildCount[depth] = charGroupIndex;
552 mStackSiblingPos[depth]
371 needsToSkipCurrentNode(const unsigned short c, const int inputIndex, const int skipPos, const int depth) argument
[all...]
H A Dcorrection.h155 static int calculateFinalFreq(const int inputIndex, const int depth,
H A Dunigram_dictionary.h99 const int inputIndex, const int skipPos, const int depth);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java160 private void addWordRec(NodeArray children, final String word, final int depth, argument
163 if (wordLength <= depth) return;
164 final char c = word.charAt(depth);
181 if (wordLength == depth + 1) {
191 addWordRec(childNode.mChildren, word, depth + 1, frequency, childNode);
259 * @param depth the depth of traversal - the length of the word being composed thus far
263 * @param inputIndex position in the input characters. This can be off from the depth in
265 * "wouldve", it could be matching "would've", so the depth will be one more than the
271 final int depth, fina
270 getWordsRec(NodeArray roots, final WordComposer codes, final char[] word, final int depth, final boolean completion, int snr, int inputIndex, int skipPos, WordCallback callback) argument
407 searchWord(NodeArray children, String word, int depth, Node parentNode) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/util/
H A DLocalizedNameResolver.java115 final int depth = parser.getDepth();
116 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DExternalSource.java138 final int depth = parser.getDepth();
139 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DPhotoPriorityResolver.java140 final int depth = parser.getDepth();
141 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
H A DHoloSpiralRS.java216 private void generateSpiral(ScriptField_VertexColor_s points, float depth, float radius, argument
222 float halfDepth = depth / 2.0f;
231 radius * (float) Math.sin(radians), (percentage * depth) - halfDepth);
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLStub.java72 float depth
76 int depth
/packages/apps/Contacts/src/com/android/contacts/model/
H A DBaseAccountType.java705 final int depth = parser.getDepth();
706 if (type != XmlPullParser.START_TAG || depth != outerDepth + 1) {
850 final int depth = parser.getDepth();
851 if (type != XmlPullParser.START_TAG || depth != outerDepth + 1) {
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherProvider.java715 final int depth = parser.getDepth();
719 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {

Completed in 890 milliseconds