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

/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DAvrcpMediaRspInterface.java28 public void setBrowsedPlayerRsp(byte[] address, int rspStatus, byte depth, int numItems, argument
H A DAvrcp.java2419 public void setBrowsedPlayerRsp(byte[] address, int rspStatus, byte depth, int numItems, argument
2421 if (!setBrowsedPlayerRspNative(address, rspStatus, depth, numItems, textArray)) {
2755 private native boolean setBrowsedPlayerRspNative(byte[] address, int rspStatus, byte depth, argument
/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/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_avrcp.cpp1211 jbyte depth, jint numItems,
1226 if (depth > 0) {
1227 p_folders = new btrc_br_folder_name_t[depth];
1230 for (int folder_idx = 0; folder_idx < depth; folder_idx++) {
1250 depth; /* folder_depth is 0 if current folder is root */
1260 if (depth > 0) {
1209 setBrowsedPlayerRspNative(JNIEnv* env, jobject object, jbyteArray address, jint rspStatus, jbyte depth, jint numItems, jobjectArray textArray) argument
H A Dcom_android_bluetooth_avrcp_controller.cpp560 uint8_t depth) {
561 ALOGI("%s items %d depth %d", __func__, num_items, depth);
566 (jint)num_items, (jint)depth);
558 btavrcp_set_browsed_player_callback(bt_bdaddr_t* bd_addr, uint8_t num_items, uint8_t depth) argument
/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/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DAvrcpControllerService.java1062 private void handleSetBrowsedPlayerRsp(int items, int depth) { argument
1064 Log.d(TAG, "handleSetBrowsedPlayerRsp depth: " + depth);
1067 AvrcpControllerStateMachine.MESSAGE_PROCESS_SET_BROWSED_PLAYER, items, depth);
/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 292 milliseconds