HomeSort by relevance Sort by last modified time
    Searched refs:tree (Results 276 - 300 of 706) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 741 // tree whose keys are the y extents of the segments.
742 PODIntervalTree<float, Segment*> tree(m_arena);
750 tree.add(tree.createInterval(boundingBox.y(), boundingBox.maxY(), seg));
781 Vector<IntervalType> overlaps = tree.allOverlaps(tree.createInterval(seg->getPoint(0).y(),
794 LOG_ERROR("Interval tree:");
795 tree.dump();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 49 import org.eclipse.swt.widgets.Tree;
83 * simple class representing the tree selection with the proper types.
252 Tree tree = new Tree(parent, SWT.SINGLE | SWT.FULL_SELECTION); local
253 tree.setLayoutData(gd = new GridData(GridData.FILL_BOTH));
256 tree.setHeaderVisible(true);
257 tree.setLinesVisible(true);
258 TableHelper.createTreeColumn(tree, "Name", SWT.LEFT, 150, COL_NAME,
260 TableHelper.createTreeColumn(tree, "Configuration", SWT.LEFT, 500, COL_CONFIG
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 253 FrameTree* frameTree = frame->tree();
254 for (Frame* curChild = frameTree->firstChild(); curChild; curChild = curChild->tree()->nextSibling()) {
499 return m_frame->tree()->uniqueName();
504 m_frame->tree()->setName(name);
538 && !m_frame->tree()->parent()) {
621 parent = m_frame->tree()->parent();
628 return fromFrame(m_frame->tree()->top());
635 return fromFrame(frame()->tree()->firstChild());
640 return fromFrame(frame()->tree()->lastChild());
645 return fromFrame(frame()->tree()->nextSibling())
    [all...]
  /build/tools/droiddoc/templates-sdk/
customizations.cs 81 <div id="nav-tree" style="display:none">
86 </div><!-- end nav-tree -->
91 $("<a href='#' id='nav-swap' onclick='swapNav();return false;' style='font-size:10px;line-height:9px;margin-left:1em;text-decoration:none;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a>").appendTo("#side-nav");
93 if ($("#nav-tree").is(':visible')) {
103 swapNav(); // tree view should be used on mobile
  /external/javassist/src/main/javassist/
CtField.java 135 ASTree tree = getInitAST(); local
136 if (tree == null)
139 return Initializer.byExpr(tree);
857 int getConstantValue2(ConstPool cp, CtClass type, ASTree tree) {
859 if (tree instanceof IntConst) {
860 long value = ((IntConst)tree).get();
870 else if (tree instanceof DoubleConst) {
871 double value = ((DoubleConst)tree).get();
    [all...]
  /external/libvpx/vp8/encoder/arm/armv5te/
vp8_packtokens_armv5.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
164 str r10, [sp, #4] ; b->tree
179 ldrsb lr, [r10, lr] ; i = b->tree[i+bb]
227 ldr r10, [sp, #4] ; b->tree
  /external/webkit/Source/JavaScriptCore/wtf/
AVLTree.h 4 * Based on Abstract AVL Tree Template v1.5 by Walt Karas
124 // E.g., if, in a particular instantiation, the maximum number of nodes in a tree instance is 1,000,000, the maximum depth should be 28.
169 void start_iter(AVLTree &tree, key k, SearchType st = EQUAL)
174 // Save the tree that we're going to iterate through in a
176 tree_ = &tree;
185 // Tree is empty.
221 void start_iter_least(AVLTree &tree)
223 tree_ = &tree;
239 void start_iter_greatest(AVLTree &tree)
241 tree_ = &tree;
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 473 Frame* child = frame->tree()->child(index);
496 Frame* child = frame->tree()->child(propName);
554 if (type == v8::ACCESS_HAS && target->tree()->child(name))
556 if (type == v8::ACCESS_GET && target->tree()->child(name) && !host->HasRealNamedProperty(key->ToString()))
579 if (type == v8::ACCESS_HAS && target->tree()->child(index))
581 if (type == v8::ACCESS_GET && target->tree()->child(index) && !host->HasRealIndexedProperty(index))
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/
HierarchyViewerDirector.java 263 executeInBackground("Refreshing pixel perfect tree", new Runnable() {
454 fileDialog.setText("Choose where to save the tree image");
457 executeInBackground("Saving tree view", new Runnable() {
471 Log.e(TAG, "Unable to save tree view as a PNG image at "
512 Log.e(TAG, "Unable to save tree view as a PNG image at "
603 DrawableViewNode tree = TreeViewModel.getModel().getTree();
604 if (tree != null) {
605 loadViewRecursive(tree.viewNode);
627 DrawableViewNode tree = TreeViewModel.getModel().getTree(); local
628 if (tree != null)
    [all...]
  /external/v8/test/cctest/
test-profile-generator.cc 116 explicit ProfileTreeTestHelper(const ProfileTree* tree)
117 : tree_(tree) { }
148 ProfileTree tree; local
149 ProfileTreeTestHelper helper(&tree);
156 tree.AddPathFromStart(path_vec);
179 tree.AddPathFromStart(path_vec);
192 tree.AddPathFromStart(path2_vec);
218 ProfileTree tree; local
219 ProfileTreeTestHelper helper(&tree);
226 tree.AddPathFromEnd(path_vec)
    [all...]
  /external/webkit/Source/WebCore/loader/
NavigationScheduler.cpp 302 for (Frame* ancestor = targetFrame->tree()->parent(); ancestor; ancestor = ancestor->tree()->parent()) {
352 && m_frame->tree()->parent() && !ScriptController::processingUserGesture());
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
real.h 426 /* Function to return a real value (not a tree node)
447 /* In tree.c: wrap up a REAL_VALUE_TYPE in a tree node. */
448 extern tree build_real (tree, REAL_VALUE_TYPE);
475 extern void real_from_mpfr (REAL_VALUE_TYPE *, mpfr_srcptr, tree, mp_rnd_t);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
real.h 426 /* Function to return a real value (not a tree node)
447 /* In tree.c: wrap up a REAL_VALUE_TYPE in a tree node. */
448 extern tree build_real (tree, REAL_VALUE_TYPE);
475 extern void real_from_mpfr (REAL_VALUE_TYPE *, mpfr_srcptr, tree, mp_rnd_t);
  /device/moto/wingray/
BoardConfig.mk 27 # we use the camera stub when the vendor tree isn't present, and
28 # the true camera library when the vendor tree is available. Similarly,
  /device/samsung/crespo/
device.mk 32 # vendor tree and is used by engineers who have access to it. The other
35 # but not to the original vendor tree. Be sure to update both.
  /external/antlr/src/org/antlr/runtime/
RecognitionException.java 30 import org.antlr.runtime.tree.*;
71 * For parsers. Even when it's a tree parser, token might be set.
75 /** If this is a tree parser exception, node is set to the node with
91 /** If you are parsing a tree node stream, you will encounter som
152 else if ( this.node instanceof Tree) {
153 this.line = ((Tree)this.node).getLine();
154 this.charPositionInLine = ((Tree)this.node).getCharPositionInLine();
  /external/antlr/src/org/antlr/runtime/debug/
TraceDebugEventListener.java 31 import org.antlr.runtime.tree.TreeAdaptor;
47 // Tree parsing stuff
  /external/antlr/src/org/antlr/runtime/tree/
CommonTree.java 28 package org.antlr.runtime.tree;
32 /** A tree node that is wrapper for a Token object. After 3.0 release
33 * while building tree rewrite stuff, it became clear that computing
35 * spend the space in every tree node. If you don't want these extra
70 public Tree dupNode() {
161 public Tree getParent() {
165 public void setParent(Tree t) {
CommonTreeAdaptor.java 28 package org.antlr.runtime.tree;
33 /** A TreeAdaptor that works with any Tree implementation. It provides
36 * objects, you need to override this and then set the parser tree adaptor to
52 return ((Tree)t).dupNode();
90 * Only works with Tree nodes. For rules that match nothing,
100 ((Tree)t).setTokenStartIndex(start);
101 ((Tree)t).setTokenStopIndex(stop);
106 return ((Tree)t).getTokenStartIndex();
111 return ((Tree)t).getTokenStopIndex();
116 return ((Tree)t).getText()
    [all...]
TreeParser.java 28 package org.antlr.runtime.tree;
35 /** A parser for a stream of tree nodes. "tree grammars" result in a subclass
96 /** Match '.' in tree parser has special meaning. Skip node or
97 * entire tree if node has children. If children, scan until
128 * from tree parser errors inline...
140 * the input tree not the user.
147 /** Tree parsers parse nodes they usually have a token object as
TreeRewriter.java 28 package org.antlr.runtime.tree;
100 * other than stdout or if you're not using Tree-derived trees.
103 System.out.println(((Tree)oldTree).toStringTree()+" -> "+
104 ((Tree)newTree).toStringTree());
116 // to override, just define tree grammar rule topdown and turn on
  /external/libvpx/vp8/common/arm/armv6/
copymem16x16_v6.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
  /external/libvpx/vp8/common/arm/neon/
bilinearpredict4x4_neon.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
shortidct4x4llm_neon.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.
  /external/libvpx/vp8/common/x86/
iwalsh_sse2.asm 6 ; tree. An additional intellectual property rights grant can be found
8 ; be found in the AUTHORS file in the root of the source tree.

Completed in 451 milliseconds

<<11121314151617181920>>