HomeSort by relevance Sort by last modified time
    Searched defs:depth (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /external/dbus/dbus/
dbus-message-factory.h 47 int depth; member in struct:__anon3391
  /external/webkit/WebKit/chromium/public/
WebScreenInfo.h 39 // The screen depth in bits per pixel
40 int depth; member in struct:WebKit::WebScreenInfo
67 : depth(0)
  /external/chromium/net/third_party/nss/ssl/
cmpcert.c 66 int depth; local
74 depth=0;
105 if ( ( depth <= 20 ) &&
112 depth++;
  /external/expat/examples/
elements.c 49 int depth = 0; local
50 XML_SetUserData(parser, &depth);
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 62 v8::Handle<v8::String> depth = v8::String::New("depth"); local
63 if (jsAttrs->Has(depth))
64 webGLAttrs->setDepth(jsAttrs->Get(depth)->BooleanValue());
  /external/webkit/WebCore/html/canvas/
WebGLContextAttributes.cpp 70 bool WebGLContextAttributes::depth() const function in class:WebCore::WebGLContextAttributes
72 return m_attrs.depth;
75 void WebGLContextAttributes::setDepth(bool depth)
77 m_attrs.depth = depth;
  /external/webkit/WebCore/platform/brew/
ScreenBrew.cpp 45 int depth; member in struct:WebCore::DisplayInfo
59 info.depth = bitmapInfo.nDepth;
82 return info.depth;
  /external/bluetooth/glib/tests/
markup-test.c 7 static int depth = 0; variable
13 while (i < depth)
45 ++depth;
54 --depth;
  /external/chromium/base/
logging_win.cc 87 DWORD depth = CaptureStackBackTrace(2, kMaxBacktraceDepth, backtrace, NULL); local
90 event.SetField(0, sizeof(depth), &depth);
91 event.SetField(1, sizeof(backtrace[0]) * depth, &backtrace);
  /external/proguard/src/proguard/shrink/
ShortestUsageMark.java 40 private final int depth; field in class:ShortestUsageMark
53 this.depth = 0;
88 this.depth = previousUsageMark.depth + cost;
104 this.depth = otherUsageMark.depth;
134 return this.depth < otherUsageMark.depth;
178 return "certain=" + certain + ", depth="+depth+": "
    [all...]
  /system/core/libpixelflinger/
clear.cpp 30 static void ggl_clearDepthx(void* c, GGLclampx depth);
45 c->state.clear.depth = FIXED_ONE;
111 if (c->state.buffers.depth.format == 0)
136 uint32_t depth = fixedToZ(c->state.clear.depth); local
137 c->state.clear.depthPacked = (depth<<16)|depth;
140 memset2d(c, c->state.buffers.depth, packed, l, t, w, h);
157 static void ggl_clearDepthx(void* con, GGLclampx depth)
160 c->state.clear.depth = gglClampx(depth)
    [all...]
  /system/media/opensles/libopensles/
I3DMacroscopic.c 23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
29 (0 <= depth) && (depth <= SL_MILLIMETER_MAX))) {
36 this->mSize.mDepth = depth;
57 SLmillimeter depth = this->mSize.mDepth; local
61 *pDepth = depth;
  /build/tools/droiddoc/src/
Hierarchy.java 63 int depth = depth(nodes, "java.lang.Object"); local
66 hdf.setValue("colspan", "" + depth);
68 recurse(nodes, "java.lang.Object", hdf.getObj("classes.0"),depth,depth);
82 private static int depth(HashMap<String,TreeSet<String>> nodes, method in class:Hierarchy
89 int n = depth(nodes, s);
  /external/grub/stage2/
mb_header.h 50 unsigned depth; member in struct:multiboot_header
  /external/openssl/crypto/pkcs7/
dec.c 204 int err,depth; local
208 depth= X509_STORE_CTX_get_error_depth(ctx);
211 BIO_printf(bio_err,"depth=%d %s\n",depth,buf);
216 if (depth < 6)
verify.c 219 int err,depth; local
223 depth= X509_STORE_CTX_get_error_depth(ctx);
226 BIO_printf(bio_err,"depth=%d %s\n",depth,buf);
231 if (depth < 6)
  /external/skia/include/core/
SkTDStack.h 43 int depth() const { return fTotalCount; } function in class:SkTDStack
  /external/webkit/WebCore/xml/
XPathNodeSet.cpp 38 static inline Node* parentWithDepth(unsigned depth, const Vector<Node*>& parents)
40 ASSERT(parents.size() >= depth + 1);
41 return parents[parents.size() - 1 - depth];
49 unsigned depth = parentMatrix[i].size() - 1; local
50 if (minDepth > depth)
51 minDepth = depth;
XSLTUnicodeSort.cpp 87 int depth; local
210 depth = 1;
211 while (depth < nbsorts) {
212 if (sorts[depth] == NULL)
214 comp = static_cast<xsltStylePreComp*>(sorts[depth]->psvi);
224 if (resultsTab[depth] == NULL)
225 resultsTab[depth] = xsltComputeSortResult(ctxt,
226 sorts[depth]);
227 res = resultsTab[depth];
268 depth++
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
alloca.c 109 (b) keep track of stack depth.
125 char *deep; /* for stack depth measure */
144 auto char probe; /* probes stack depth: */
145 register char *depth = &probe; local
159 if ((STACK_DIR > 0 && hp->h.deep > depth)
160 || (STACK_DIR < 0 && hp->h.deep < depth))
185 ((header *)new)->h.deep = depth;
  /frameworks/base/sax/java/android/sax/
Element.java 36 final int depth; field in class:Element
48 Element(Element parent, String uri, String localName, int depth) {
52 this.depth = depth;
RootElement.java 100 int depth = -1; field in class:RootElement.Handler
112 int depth = ++this.depth; local
114 if (depth == 0) {
128 if (depth == current.depth + 1) {
183 if (depth == current.depth) {
204 depth--;
  /packages/apps/Camera/src/com/android/camera/
PreferenceInflater.java 87 int depth = parser.getDepth(); local
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/Contacts/src/com/android/contacts/model/
ExternalSource.java 138 final int depth = parser.getDepth(); local
139 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /packages/apps/Email/src/org/apache/commons/io/
DirectoryWalker.java 32 * 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</i>.
574 private int depth = -1; field in class:DirectoryWalker.CancelException
    [all...]

Completed in 751 milliseconds

1 2 3 4 5 6 7 8 9