HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 126 - 150 of 4880) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
pprint.h 60 void clast_pprint(FILE *foo, struct clast_stmt *root, int indent,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
pprint.h 60 void clast_pprint(FILE *foo, struct clast_stmt *root, int indent,
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkFont.py 66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
91 self._root = root
92 self._split = root.tk.splitlis
183 root = Tkinter.Tk() variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkFont.py 66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
91 self._root = root
92 self._split = root.tk.splitlis
183 root = Tkinter.Tk() variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
91 self._root = root
92 self._split = root.tk.splitlis
183 root = Tkinter.Tk() variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
91 self._root = root
92 self._split = root.tk.splitlis
183 root = Tkinter.Tk() variable
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 78 ViewNode root = scene.getRoot(); local
79 if (root == null) {
83 int x = (getWidth() - insets.left - insets.right - root.width) / 2;
84 int y = (getHeight() - insets.top - insets.bottom - root.height) / 2;
88 g.drawRect(root.left, root.top, root.width - 1, root.height - 1);
89 g.clipRect(root.left - 1, root.top - 1, root.width + 1, root.height + 1)
139 ViewNode root = scene.getRoot(); local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
genlink.h 44 struct bfd_link_hash_entry root; member in struct:generic_link_hash_entry
55 struct bfd_link_hash_table root; member in struct:generic_link_hash_table
62 bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow)))
68 (&(table)->root, \
  /external/selinux/libsepol/cil/test/unit/
test_cil_resolve_ast.c 80 cil_build_ast(test_db, test_tree->root, test_db->ast->root);
82 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head;
104 cil_build_ast(test_db, test_tree->root, test_db->ast->root);
106 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head;
118 test_db->ast->root = NULL;
120 int rc = cil_resolve_ast(test_db, test_db->ast->root);
143 cil_build_ast(test_db, test_tree->root, test_db->ast->root);
    [all...]
  /development/tools/checkstyle/gitlint/
git.py 23 """Returns the root of the repository as an absolute path."""
25 root = subprocess.check_output(['git', 'rev-parse', '--show-toplevel'],
28 return root.decode('utf-8')
36 root = subprocess.check_output(['git', 'rev-parse', 'HEAD'],
39 return root.decode('utf-8')
52 def modified_files(root, tracked_only=False, commit=None):
56 root: the root of the repository, it has to be an absolute path.
65 assert os.path.isabs(root), "Root has to be absolute, got: %s" % roo
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DisplayListLayersActivity.java 43 LinearLayout root = createContainer(); local
44 addChild(root, new LayerView(this, 0xffff0000, LAYER_TYPE_HARDWARE, "hardware"),
46 addChild(root, new LayerView(this, 0xff0000ff, LAYER_TYPE_SOFTWARE, "software"),
48 addChild(root, createButton(root), WRAP_CONTENT, WRAP_CONTENT);
50 setContentView(root);
53 private Button createButton(final LinearLayout root) {
59 for (int i = 0; i < root.getChildCount(); i++) {
60 View child = root.getChildAt(i);
71 private void addChild(LinearLayout root, View child, int width, int height)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Phaser.java 309 * The root of phaser tree. Equals this if not in a tree.
311 private final Phaser root; field in class:Phaser
317 * Subphasers share queues with root to speed up releases.
352 final Phaser root = this.root; local
354 long s = (root == this) ? state : reconcileState();
366 if (root == this) {
414 root.internalAwaitAdvance(phase, null);
419 else if (parent == null) { // 1st root registration
437 phase = (int)(root.state >>> PHASE_SHIFT)
458 final Phaser root = this.root; local
525 final Phaser root = parent.root; local
645 final Phaser root = this.root; local
691 final Phaser root = this.root; local
718 final Phaser root = this.root; local
756 final Phaser root = this.root; local
783 final Phaser root = this.root; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
WhiteSpaceInfo.java 82 public void recompose(StylesheetRoot root)
84 root.recomposeWhiteSpaceInfo(this);
  /external/chromium-trace/catapult/devil/devil/utils/
host_utils.py 12 for root, dirs, files in os.walk(path):
13 running_size += sum([os.path.getsize(os.path.join(root, f))
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
GroupCullingTest.java 34 private Table root; field in class:GroupCullingTest
42 root = new Table();
43 root.setFillParent(true);
44 stage.addActor(root);
49 root.add(new ScrollPane(labels, skin)).expand().fill();
50 root.row();
51 root.add(drawnLabel = new Label("", skin));
72 root.invalidate();
  /external/llvm/utils/
countloc.sh 28 TOPDIR=`llvm-config --src-root`
  /external/messageformat/java/com/ibm/icu/impl/
ICUData.java 42 private static InputStream getStream(final Class<?> root, final String resourceName, boolean required) {
48 return root.getResourceAsStream(resourceName);
52 i = root.getResourceAsStream(resourceName);
56 throw new MissingResourceException("could not locate data " +resourceName, root.getPackage().getName(), resourceName);
101 * Convenience override that calls getStream(root, resourceName, false);
103 public static InputStream getStream(Class<?> root, String resourceName) {
104 return getStream(root, resourceName, false);
108 * Convenience method that calls getStream(root, resourceName, true).
110 public static InputStream getRequiredStream(Class<?> root, String resourceName) {
111 return getStream(root, resourceName, true)
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ViewStubTest.java 35 LinearLayout root = new LinearLayout(ctxt); local
36 root.addView(new View(ctxt));
37 root.addView(viewStub);
38 root.addView(new View(ctxt));
42 assertSame(inflatedView, root.findViewById(inflatedId));
44 assertNull(root.findViewById(stubId));
46 assertEquals(1, root.indexOfChild(inflatedView));
47 assertEquals(3, root.getChildCount());
  /external/v8/src/ast/
ast-expression-visitor.h 22 AstExpressionVisitor(Isolate* isolate, Expression* root);
23 AstExpressionVisitor(uintptr_t stack_limit, Expression* root);
  /external/v8/tools/gyp/test/standalone/
gyptest-standalone.py 21 for root, dirs, files in os.walk("."):
26 file = os.path.join(root, file)
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SynchronizedHandler.java 28 public SynchronizedHandler(GLRoot root) {
29 mRoot = Utils.checkNotNull(root);
  /external/ImageMagick/MagickCore/
splay-tree.c 88 *root;
170 if (splay_tree->root != (NodeInfo *) NULL)
173 compare=splay_tree->compare(splay_tree->root->key,key);
175 compare=(splay_tree->root->key > key) ? 1 :
176 ((splay_tree->root->key < key) ? -1 : 0);
180 (splay_tree->root->value != (void *) NULL))
181 splay_tree->root->value=splay_tree->relinquish_value(
182 splay_tree->root->value);
184 (splay_tree->root->key != (void *) NULL))
185 splay_tree->root->key=splay_tree->relinquish_key
85 *root; member in struct:_SplayTreeInfo
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/
AbstractOneCamera.java 60 * The directory created is [root]/[folderName]/SSSS_YYYYMMDD_HHMMSS_XXX,
64 * @param root the root into which we put a session-specific sub-directory.
65 * @param folderName the sub-folder within 'root' where the data should be
70 protected static String makeDebugDir(File root, String folderName) {
71 if (root == null) {
74 if (!root.exists() || !root.isDirectory()) {
76 + root.getAbsolutePath());
96 File destFolder = new File(new File(root, folderName), burstFolderName)
    [all...]
  /packages/apps/Settings/
wrap_alpha.py 6 for root, dirs, files in os.walk('.'):
7 if "res/drawable-" not in root: continue
14 os.rename(os.path.join(root, before), os.path.join(root, after))
17 for root, dirs, files in os.walk('.'):
18 if "res/drawable-" not in root: continue
  /toolchain/binutils/binutils-2.25/libiberty/
splay-tree.c 141 if (sp->root == 0)
148 n = sp->root;
171 rotate_left (&sp->root, n, c);
173 rotate_right (&sp->root, n, c);
181 rotate_left (&sp->root, n, n->left);
186 rotate_right (&sp->root, n, n->right);
191 rotate_left (&sp->root, n, n->left);
196 rotate_right (&sp->root, n, n->right);
337 sp->root = 0;
353 splay_tree_delete_helper (sp, sp->root);
    [all...]

Completed in 1376 milliseconds

1 2 3 4 56 7 8 91011>>