Searched defs:depth (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DProfileData.java129 // second word: depth of the stack (N)
131 private void writeOneStack(Node node, int depth) throws IOException { argument
133 writeInt(depth);
134 while (depth-- > 0) {
140 private void writeAllStacks(Node node, int depth) throws IOException { argument
142 writeOneStack(node, depth);
148 writeAllStacks(children.get(i), depth + 1);
/packages/apps/UnifiedEmail/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/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
H A Ddic_node_properties.h41 const uint16_t depth, const uint16_t leavingDepth, const WordIdArrayView prevWordIds) {
45 mDepth = depth;
78 mDepth = dicNodeProp->mDepth + 1; // Increment the depth of a passing child
40 init(const int childrenPos, const int nodeCodePoint, const int wordId, const uint16_t depth, const uint16_t leavingDepth, const WordIdArrayView prevWordIds) argument
/packages/apps/LegacyCamera/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/Messaging/src/com/android/messaging/util/
H A DDebugUtils.java387 * Returns info about the calling method. The {@code depth} parameter controls how far back to
397 public static StackTraceElement getCaller(int depth) { argument
399 if (depth < 0) {
400 throw new IllegalArgumentException("depth cannot be negative");
403 if (trace == null || trace.length < (depth + 2)) {
411 return trace[i + depth + 1];
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node.h430 const int depth = getNodeCodePointCount(); local
431 const int depthDiff = right->getNodeCodePointCount() - depth;
435 for (int i = 0; i < depth; ++i) {
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 206 milliseconds