HomeSort by relevance Sort by last modified time
    Searched defs:depth (Results 201 - 225 of 531) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.h 237 size_t depth() const { return m_replicaBranches.size(); } function in struct:WebCore::GraphicsLayerCA::ReplicaState
  /external/webkit/Source/WebCore/svg/
SVGUseElement.cpp 244 // Depth-first used to write the method in early exit style, no particular other reason.
297 // Depth-first used to write the method in early exit style, no particular other reason.
380 void dumpInstanceTree(unsigned int& depth, String& text, SVGElementInstance* targetInstance)
397 for (unsigned int i = 0; i < depth; ++i)
404 for (unsigned int i = 0; i < depth; ++i)
412 for (unsigned int i = 0; i < depth; ++i)
419 ++depth;
422 dumpInstanceTree(depth, text, instance);
424 --depth;
608 unsigned int depth = 0 local
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/
alloca.c 133 (b) keep track of stack depth.
148 char *deep; /* For stack depth measure. */
165 auto char probe; /* Probes stack depth: */
166 register char *depth = ADDRESS_FUNCTION (probe); local
180 if ((STACK_DIR > 0 && hp->h.deep > depth)
181 || (STACK_DIR < 0 && hp->h.deep < depth))
205 ((header *) new)->h.deep = depth;
  /external/zlib/src/
deflate.h 213 uch depth[2*L_CODES+1]; member in struct:internal_state
214 /* Depth of each subtree used as tie breaker for trees of equal frequency
  /frameworks/av/media/mtp/
MtpServer.cpp 667 int depth = mRequest.getParameter(5); local
668 ALOGV("GetObjectPropList %d format: %s property: %s group: %d depth: %d\n",
670 MtpDebug::getObjectPropCodeName(property), groupCode, depth);
672 return mDatabase->getObjectPropertyList(handle, format, property, groupCode, depth, mData);
850 mData.getUInt32(); // image bit depth
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofReader.java 239 short depth = in.readShort(); local
242 System.out.println("\tdepth=" + depth);
245 hprofData.setDepth(depth);
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 372 final int depth = pp.getDepth() - 1; local
374 (level > depth) ? pp.getNamespaceCount(depth) : 0;
376 final int count = pp.getNamespaceCount(depth + 1);
427 final int depth = pp.getDepth(); local
429 (level > depth) ? pp.getNamespaceCount(pp.getDepth()) : 0;
  /ndk/sources/host-tools/make-3.81/
alloca.c 142 (b) keep track of stack depth.
157 char *deep; /* For stack depth measure. */
173 auto char probe; /* Probes stack depth: */
174 register char *depth = ADDRESS_FUNCTION (probe); local
192 if ((STACK_DIR > 0 && hp->h.deep > depth)
193 || (STACK_DIR < 0 && hp->h.deep < depth))
224 ((header *) new)->h.deep = depth;
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 318 unsigned int depth = 0;
323 if (depth == 0)
328 ++depth;
335 while (*cp != '\0' && (*cp != '}' || depth > 0))
338 --depth;
317 unsigned int depth = 0; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
alloca.c 124 (b) keep track of stack depth.
139 char *deep; /* For stack depth measure. */
155 auto char probe; /* Probes stack depth: */
156 register char *depth = ADDRESS_FUNCTION (probe); local
174 if ((STACK_DIR > 0 && hp->h.deep > depth)
175 || (STACK_DIR < 0 && hp->h.deep < depth))
212 new->h.deep = depth;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Parser.java 65 // 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/jni/src/suggest/core/dicnode/
dic_node.h 514 const int depth = getDepth(); local
515 const int depthDiff = right->getDepth() - depth;
519 for (int i = 0; i < depth; ++i) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 119 * Returns the depth of the given node (with the document node having depth 0,
120 * and the document element having depth 1)
123 * @return the depth in the document
126 int depth = -1; local
128 depth++;
132 return depth;
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 87 int bSize,red,green,blue,alpha,depth,stencil; local
121 IS_SUCCESS(glXGetFBConfigAttrib(dpy,*frmt,GLX_DEPTH_SIZE,&depth));
159 return new EglConfig(red,green,blue,alpha,caveat,configId,depth,level,pMaxWidth,pMaxHeight,
203 unsigned int depth,configDepth,border; local
210 if(!XGetGeometry(dpy,win,&root,&x,&y,width,height,&border,&depth)) return false;
211 return depth >= configDepth;
215 unsigned int depth,configDepth,border; local
222 if(!XGetGeometry(dpy,pix,&root,&x,&y,width,height,&border,&depth)) return false;
223 return depth >= configDepth;
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java 540 int depth = parser.getDepth(); local
542 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) &&
636 int depth = parser.getDepth(); local
638 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) &&
728 int depth = parser.getDepth(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 219 " backtrack depth " + backtrackDepth +
249 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1 local
250 d.k = depth;
251 d.decision.maxk = Math.max(d.decision.maxk, depth);
270 // compute lookahead depth
273 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1 local
274 //d.maxk = Math.max(d.maxk, depth);
275 if (dump) System.out.println("consume "+thisRefIndex+" "+depth+" tokens ahead in "+
279 /** The parser is in a decision if the decision depth > 0. This
307 // // compute lookahead depth
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 83 For more in-depth coverage of the topic, check out the ANTLR documentation
258 def depth method in class:ANTLR3.AST.for
259 root? ? 0 : parent.depth + 1
    [all...]
  /external/chromium/base/
message_loop_unittest.cc 462 explicit NestingTest(int* depth) : depth_(depth) {
594 int depth = 100; local
595 MessageLoop::current()->PostTask(FROM_HERE, new NestingTest(&depth));
597 EXPECT_EQ(depth, 0);
749 RecursiveTask(int depth, TaskList* order, int cookie, bool is_reentrant)
751 depth_(depth),
773 RecursiveSlowTask(int depth, TaskList* order, int cookie, bool is_reentrant)
774 : RecursiveTask(depth, order, cookie, is_reentrant) {
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
screen_locker.cc 582 gint src_x, src_y, dest_x, dest_y, width, height, depth; local
583 gdk_window_get_geometry(dest_, &dest_x, &dest_y, &width, &height, &depth);
588 gdk_window_get_geometry(src_, &src_x, &src_y, &width, &height, &depth);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 422 def depth(self, request_uri): member in class:Authentication
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
director-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java 163 int depth = blenderContext.getBlenderKey().getGeneratedTextureDepth(); local
184 result = textureGenerator.generate(tex, width, height, depth, blenderContext);
233 int depth = sources.get(0).getImage().getDepth(); local
242 if(source.getImage().getDepth() != depth) {
243 throw new IllegalArgumentException("The texture " + source.getName() + " has invalid depth! It should be: " + depth + '!');
250 if(depth==0) {
251 depth = 1;
258 int pixelsAmount = width * height * depth;
283 if(depth==1) {
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 99 private int depth; field in class:DDSLoader
131 } else if (depth > 1) {
135 return new Image(pixelFormat, width, height, depth, data, sizes);
147 return new Image(pixelFormat, width, height, depth, data, sizes);
193 depth = in.readInt();
209 if (depth <= 0) {
210 depth = 1;
214 depth = 6; // somewhat of a hack, force loading 6 textures if a cubemap
576 ByteBuffer buffer = BufferUtils.createByteBuffer(totalSize * depth);
585 for (int i = 0; i < depth; i++)
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
SettingsDialog.java 378 int depth = -1; local
380 depth = 0;
382 depth = Integer.parseInt(depthString.substring(0, depthString.indexOf(' ')));
405 * if (!fullscreen) { //query the current bit depth of the desktop int
407 * .getDefaultScreenDevice().getDisplayMode().getBitDepth(); if (depth >
408 * curDepth) { showError(this,"Cannot choose a higher bit depth in
409 * windowed " + "mode than your current desktop bit depth"); return
429 source.setBitsPerPixel(depth);
448 + "The combination of bit depth and refresh rate is not supported.");
492 * <code>updateDisplayChoices</code> updates the available color depth an
605 String depth = modes[i].getBitDepth() + " bpp"; local
    [all...]

Completed in 3190 milliseconds

1 2 3 4 5 6 7 891011>>