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

123

/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
H A DLayerInfo.java5 * several consecutive depth levels.
11 LayerInfo(int depth) { argument
12 frontDepth = depth;
13 backDepth = depth;
H A DDepthTransform.java5 * Interface defining a depth transform that translates real depth values
12 * @return The near depth value
17 * @return The far depth value
27 * @return the quantized value that corresponds to the given depth value
29 public int quantize(float depth); argument
32 * @return the depth value that corresponds to the given quantized value
H A DRGBZ.java15 * An RGBZ image, where Z stands for depth, i.e. a color+depth image.
18 * while the color channel and depth channels are encoded as XMP data.
51 * @return Whether the RGBZ has a depth channel
58 * @return The color+depth {@code Bitmap}
98 * @return the depth value of the given pixel
126 private Bitmap setAlphaChannelFromBitmap(Bitmap depth, Bitmap orig, Bitmap dest) { argument
133 depth.getPixels(depth_data, 0, w, 0, 0, w, h);
H A DRefocusFilter.java40 * is reserved for invalid padded pixels. Depth here refers to inverse depth
44 * filtering, including: the number of blending layers, the depth levels in
45 * each blending layer, focal depth, etc. For details, please refer to the
61 // Processes layers from back-most to focal depth (including the focal
62 // depth).
67 // Processes layers from front-most to focal depth (excluding the focal
68 // depth).
82 * Process layers from back-most to focal depth (including the focal depth).
91 // For a layer that is behind the focal depth, it
164 getKernelRadius(int depth, BlurStack blurStack) argument
[all...]
H A DBlurStack.java8 * filtering function, including the range of depth levels, the disc blur radius
9 * of each depth level, how the depth levels are grouped into layers, which
12 * <b> Here by "depth", we mean inverse depth. Pixels with larger depth values
15 * For a layer n, its depth interval is (@code [layerInfo[n].backDepth,
19 * depth values.
36 * The minimum of the interval that is used to group depth levels into
42 * The starting index of depth quantizatio
88 getDiskRadius(int depth) argument
[all...]
/frameworks/base/sax/java/android/sax/
H A DChildren.java37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
91 Child(Element parent, String uri, String localName, int depth, argument
93 super(parent, uri, localName, depth);
H A DElement.java34 final int depth; field in class:Element
46 Element(Element parent, String uri, String localName, int depth) { argument
50 this.depth = depth;
H A DRootElement.java100 int depth = -1; field in class:RootElement.Handler
112 int depth = ++this.depth;
114 if (depth == 0) {
128 if (depth == current.depth + 1) {
183 if (depth == current.depth) {
204 depth--;
/frameworks/rs/driver/
H A DrsdFrameBuffer.cpp35 DrvAllocation *depth = nullptr; local
37 depth = (DrvAllocation *)fb->mHal.state.depthTarget->mHal.drv;
39 if (depth->uploadDeferred) {
44 fbo->setDepthTarget(depth);
H A DrsdFrameBufferObj.h34 void setDepthTarget(DrvAllocation *depth) { argument
35 mDepthTarget = depth;
/frameworks/base/core/tests/benchmarks/src/com/android/internal/util/
H A DIndentingPrintWriterBenchmark.java125 public void dumpDirect(PrintWriter pw, int depth) { argument
126 pw.print(sIndents[depth]);
131 child.dumpDirect(pw, depth + 1);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java72 public void setDimensions(int width, int height, int depth) { argument
76 dimensions[2] = depth;
/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp41 unsigned int depth = 0; local
43 if (depth == 0 && *pBegin == pVal)
45 if (depth != 0 && *pBegin == '}')
46 --depth;
61 ++depth;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java294 MtpPropertyList getPropertyList(int handle, int format, int depth) { argument
295 //Log.d(TAG, "getPropertyList handle: " + handle + " format: " + format + " depth: " + depth);
296 if (depth > 1) {
297 // we only support depth 0 and 1
298 // depth 0: single object, depth 1: immediate children
311 if (depth == 1) {
324 if (depth == 1) {
335 if (depth >
[all...]
/frameworks/wilhelm/src/itf/
H A DI3DMacroscopic.c23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
29 (0 <= depth) && (depth <= SL_MILLIMETER_MAX))) {
36 thiz->mSize.mDepth = depth;
57 SLmillimeter depth = thiz->mSize.mDepth; local
61 *pDepth = depth;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DOMADMAdapter.java223 private static void buildNode(PathAccessor pathAccessor, int depth, OMAConstructed parent) argument
226 String name = path[depth];
227 if (depth < path.length - 1) {
233 buildNode(pathAccessor, depth + 1, node);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java271 protected void debug(int depth) { argument
272 super.debug(depth);
273 Log.d("View", debugIndent(depth) + "slot=" + mSlot);
274 Log.d("View", debugIndent(depth) + "icon=" + mIcon);
/frameworks/base/tools/aapt/
H A Dpseudolocalize.cpp42 size_t depth = mLastDepth; local
59 depth++;
60 } else if (c == k_arg_end && depth) {
61 depth--;
64 if (mLastDepth != depth || pos == length - 1) {
67 if (!pseudo || depth == mLastDepth) {
81 if (pseudo && depth < mLastDepth) { // End of message
83 } else if (!pseudo && depth > mLastDepth) { // Start of message
87 mLastDepth = depth;
/frameworks/base/tools/aapt2/compile/
H A DPseudolocalizer.cpp84 size_t depth = mLastDepth; local
101 depth++;
102 } else if (c == k_arg_end && depth) {
103 depth--;
106 if (mLastDepth != depth || pos == length - 1) {
109 if (!pseudo || depth == mLastDepth) {
122 if (pseudo && depth < mLastDepth) { // End of message
124 } else if (!pseudo && depth > mLastDepth) { // Start of message
128 mLastDepth = depth;
/frameworks/base/tools/aapt2/xml/
H A DXmlPullParser.h157 size_t depth; member in struct:aapt::xml::XmlPullParser::EventData
212 // First get back to the start depth.
231 int depth = 1; local
232 while (depth > 0) {
239 depth++;
242 depth--;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java56 final int repeatCount, List<ResourceReference> types, int depth) {
89 createItems(dataBindingItem, depth + 1);
96 private void createItems(DataBindingItem item, int depth) { argument
97 if (depth == 2) {
98 createItems(item, item.getChildren().size(), item.getCount(), mChildrenTypes, depth);
55 createItems(Iterable<DataBindingItem> iterable, final int itemCount, final int repeatCount, List<ResourceReference> types, int depth) argument
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java65 public GL2JNIView(Context context, boolean translucent, int depth, int stencil) { argument
67 init(translucent, depth, stencil);
70 private void init(boolean translucent, int depth, int stencil) { argument
73 new ConfigChooser(8,8,8,8, depth, stencil) :
74 new ConfigChooser(5,6,5,0, depth, stencil));
112 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
117 mDepthSize = depth;
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java65 public GLPerfView(Context context, boolean translucent, int depth, int stencil) { argument
67 init(translucent, depth, stencil);
70 private void init(boolean translucent, int depth, int stencil) { argument
73 new ConfigChooser(8,8,8,8, depth, stencil) :
74 new ConfigChooser(5,6,5,0, depth, stencil));
112 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
117 mDepthSize = depth;
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java68 public GLDualGL2View(Context context, boolean translucent, int depth, int stencil) { argument
70 init(translucent, depth, stencil);
73 private void init(boolean translucent, int depth, int stencil) { argument
76 new ConfigChooser(8,8,8,8, depth, stencil) :
77 new ConfigChooser(5,6,5,0, depth, stencil));
115 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
120 mDepthSize = depth;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DOMADMAdapter.java213 private static void buildNode(PathAccessor pathAccessor, int depth, OMAConstructed parent) argument
216 String name = path[depth];
217 if (depth < path.length - 1) {
223 buildNode(pathAccessor, depth + 1, node);

Completed in 556 milliseconds

123