Searched defs:root (Results 251 - 275 of 958) sorted by relevance

<<11121314151617181920>>

/external/python/cpython2/Demo/tkinter/guido/
H A Drmt.py20 root = Tk() variable
21 tk = root.tk
22 mBar = Frame(root, relief=RAISED, borderwidth=2)
25 f = Frame(root)
34 root.title('Tk Remote Controller')
35 root.iconname('Tk Remote')
108 if app == root.winfo_name():
136 names = root.winfo_interps()
141 root.send(name, 'winfo name .')
155 app = root
[all...]
/external/python/cpython2/Lib/lib-tk/
H A DTkdnd.py44 root widget. If none of the target widgets can produce a target
110 if h.root:
120 root = None variable in class:DndHandler
125 root = event.widget._root()
127 root.__dnd
130 root.__dnd = self
131 self.root = root
143 root = self.root
[all...]
H A DtkSimpleDialog.py318 root = Tk() variable
319 root.update()
/external/python/cpython2/Modules/zlib/
H A Dinftrees.c28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root
[all...]
/external/python/cpython3/Lib/tkinter/
H A Ddnd.py44 root widget. If none of the target widgets can produce a target
110 if h.root:
120 root = None variable in class:DndHandler
125 root = event.widget._root()
127 root.__dnd
130 root.__dnd = self
131 self.root = root
143 root = self.root
[all...]
/external/python/cpython3/Modules/zlib/
H A Dinftrees.c28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLayoutInflater.java42 public View inflate(int resource, ViewGroup root, boolean attachToRoot) { argument
43 return getResourceLoader().inflateView(context, resource, attachToRoot ? root : null);
47 public View inflate(int resource, ViewGroup root) { argument
48 return inflate(resource, root, root != null);
/external/skia/bench/
H A DShadowBench.cpp39 void computeName(const char root[]) { argument
47 fBaseName.printf("%s_%c_%c", root, kTransChars[fTransparent], kGeomChars[fForceGeometric]);
/external/skia/gm/
H A Dninepatchstretch.cpp12 static sk_sp<SkSurface> make_surface(SkCanvas* root, int N) { argument
14 return sk_tool_utils::makeSurface(root, info);
17 static sk_sp<SkImage> make_image(SkCanvas* root, SkIRect* center) { argument
22 auto surface(make_surface(root, kSize));
/external/skia/tests/
H A DSGTest.cpp24 static void check_inval(skiatest::Reporter* reporter, const sk_sp<sksg::Node>& root, argument
29 const auto bbox = root->revalidate(&ic, SkMatrix::I());
62 auto root = sksg::Transform::Make(grp, matrix); local
69 check_inval(reporter, root,
79 check_inval(reporter, root,
89 check_inval(reporter, root,
99 check_inval(reporter, root,
109 check_inval(reporter, root,
119 check_inval(reporter, root,
133 auto root local
[all...]
H A DSVGDeviceTest.cpp27 const SkDOM::Node* root,
31 if (root == nullptr) {
32 ERRORF(reporter, "root element not found.");
36 const SkDOM::Node* textElem = dom.getFirstChild(root, "text");
25 check_text_node(skiatest::Reporter* reporter, const SkDOM& dom, const SkDOM::Node* root, const SkPoint& offset, unsigned scalarsPerPos, const char* expected) argument
/external/skia/tools/sk_app/unix/
H A DGLWindowContext_unix.cpp104 XWindow root; local
107 XGetGeometry(fDisplay, fWindow, &root, &x, &y, (unsigned int*)&fWidth, (unsigned int*)&fHeight,
/external/skqp/bench/
H A DShadowBench.cpp39 void computeName(const char root[]) { argument
47 fBaseName.printf("%s_%c_%c", root, kTransChars[fTransparent], kGeomChars[fForceGeometric]);
/external/skqp/gm/
H A Dninepatchstretch.cpp12 static sk_sp<SkSurface> make_surface(SkCanvas* root, int N) { argument
14 return sk_tool_utils::makeSurface(root, info);
17 static sk_sp<SkImage> make_image(SkCanvas* root, SkIRect* center) { argument
22 auto surface(make_surface(root, kSize));
/external/skqp/tests/
H A DSGTest.cpp24 static void check_inval(skiatest::Reporter* reporter, const sk_sp<sksg::Node>& root, argument
29 const auto bbox = root->revalidate(&ic, SkMatrix::I());
62 auto root = sksg::Transform::Make(grp, matrix); local
69 check_inval(reporter, root,
79 check_inval(reporter, root,
89 check_inval(reporter, root,
99 check_inval(reporter, root,
109 check_inval(reporter, root,
119 check_inval(reporter, root,
133 auto root local
[all...]
H A DSVGDeviceTest.cpp27 const SkDOM::Node* root,
31 if (root == nullptr) {
32 ERRORF(reporter, "root element not found.");
36 const SkDOM::Node* textElem = dom.getFirstChild(root, "text");
25 check_text_node(skiatest::Reporter* reporter, const SkDOM& dom, const SkDOM::Node* root, const SkPoint& offset, unsigned scalarsPerPos, const char* expected) argument
/external/skqp/tools/sk_app/unix/
H A DGLWindowContext_unix.cpp104 XWindow root; local
107 XGetGeometry(fDisplay, fWindow, &root, &x, &y, (unsigned int*)&fWidth, (unsigned int*)&fHeight,
/external/sl4a/Utils/src/com/googlecode/android_scripting/
H A DFileUtils.java56 public static boolean recursiveChmod(File root, int mode) throws Exception { argument
57 boolean success = chmod(root, mode) == 0;
58 for (File path : root.listFiles()) {
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/
H A DInvocationTest.java51 java.util.logging.Logger root = java.util.logging.Logger.getLogger(""); field in class:InvocationTest
57 oldLevel = root.getLevel();
58 root.setLevel(Level.FINE);
59 // removeAllHandlers(root);
60 root.addHandler(listHandler);
65 root.setLevel(oldLevel);
66 removeListHandlers(root);
/external/swiftshader/src/OpenGL/compiler/
H A DintermOut.cpp473 void TIntermediate::outputTree(TIntermNode* root) argument
475 if (root == 0)
480 root->traverse(&it);
/external/syslinux/com32/lib/zlib/
H A Dinftrees.c28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */ local
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root
[all...]
/external/tensorflow/tensorflow/c/eager/
H A Druntime_test.cc111 Scope root = Scope::NewRootScope(); local
112 auto C = ops::Const(root, {{1.0, 2.0}, {3.0, 4.0}});
113 auto M = ops::MatMul(root, C, C);
114 TF_CHECK_OK(root.status());
121 Scope root = Scope::NewRootScope(); local
122 auto C = ops::Const(root, {{1.0, 2.0}, {3.0, 4.0}});
123 auto M = ops::MatMul(root, C, C);
127 ClientSession sess(root, opts);
139 Scope root = Scope::NewRootScope(); local
140 auto C = ops::Const(root, {{1.
[all...]
/external/tensorflow/tensorflow/cc/framework/
H A Dscope_test.cc22 Scope root = Scope::NewRootScope(); local
23 EXPECT_EQ(root.GetUniqueNameForOp("add"), "add");
24 EXPECT_EQ(root.GetUniqueNameForOp("add"), "add_1");
25 EXPECT_EQ(root.GetUniqueNameForOp("add"), "add_2");
26 EXPECT_EQ(root.GetUniqueNameForOp("mul"), "mul");
30 Scope root = Scope::NewRootScope(); local
31 Scope child = root.NewSubScope("child");
36 Scope child_1 = root.NewSubScope("child");
41 Scope c_c = root.NewSubScope("c").NewSubScope("c");
44 Scope c_1 = root
57 Scope root = Scope::NewRootScope(); local
90 Scope root = Scope::NewRootScope(); local
119 Scope root = Scope::NewRootScope(); local
129 Scope root = Scope::NewRootScope(); local
[all...]
/external/tensorflow/tensorflow/cc/ops/
H A Dconst_op_test.cc52 Scope root = Scope::NewRootScope(); local
53 auto c = ops::Const(root, 42.0f);
54 TF_EXPECT_OK(root.status());
60 Scope root = Scope::NewRootScope(); local
61 auto c = ops::Const(root, {{2.0}, {3.0}});
62 TF_CHECK_OK(root.status());
68 Scope root = Scope::NewRootScope(); local
70 auto c1 = ops::Const(root, {});
71 TF_CHECK_OK(root.status());
74 auto c2 = ops::Const(root, {{}});
91 Scope root = Scope::NewRootScope(); local
104 Scope root = Scope::NewRootScope(); local
118 Scope root = Scope::NewRootScope(); local
124 Scope root = Scope::NewRootScope(); local
143 Scope root = Scope::NewRootScope(); local
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dir_emitter_nested.cc62 const HloInstruction* root = nested_computation.root_instruction(); local
63 io_hlos->push_back(root);
64 const Shape& root_shape = root->shape();

Completed in 687 milliseconds

<<11121314151617181920>>