/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
TemplateSyntaxTree.java | 24 * Simple wrapper class to encapsulate the root node of the AST and allow additional information to 28 private final Start root; field in class:TemplateSyntaxTree 30 TemplateSyntaxTree(Start root) { 31 this.root = root; 35 return root; 40 root.apply(sw);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
ccolltst.c | 27 void addCollTest(TestNode** root); 29 void addCollTest(TestNode** root) 31 addCollAPITest(root); 32 addCurrencyCollTest(root); 34 addNormTest(root); 36 addGermanCollTest(root); 37 addSpanishCollTest(root); 38 addFrenchCollTest(root); 39 addKannaCollTest(root); 40 addTurkishCollTest(root); [all...] |
/external/icu/icu4c/source/test/cintltst/ |
ccolltst.c | 27 void addCollTest(TestNode** root); 29 void addCollTest(TestNode** root) 31 addCollAPITest(root); 32 addCurrencyCollTest(root); 34 addNormTest(root); 36 addGermanCollTest(root); 37 addSpanishCollTest(root); 38 addFrenchCollTest(root); 39 addKannaCollTest(root); 40 addTurkishCollTest(root); [all...] |
/external/chromium_org/ui/base/models/ |
tree_node_model_unittest.cc | 65 // root 71 TestNode* root = new TestNode; local 72 TreeNodeModel<TestNode > model(root); 76 model.Add(root, child1, 0); 84 model.Add(root, child2, 1); 88 EXPECT_EQ(2, root->child_count()); 96 TestNode* root = new TestNode; local 97 TreeNodeModel<TestNode > model(root); 101 root->Add(child1, 0); 103 EXPECT_EQ(1, model.GetChildCount(root)); 126 TestNode root; local 164 TestNode root; local 198 TestNode root; local 248 TestNode root; local 282 TestNode* root = new TestNode(ASCIIToUTF16("root"), 0); local 293 TestNode root; local 315 TestNode root; local [all...] |
tree_node_iterator_unittest.cc | 26 TestNode root; local 27 root.Add(new TestNode(), 0); 28 root.Add(new TestNode(), 1); 30 root.Add(f3, 2); 35 TreeNodeIterator<TestNode> iterator(&root); 37 ASSERT_EQ(root.GetChild(0), iterator.Next()); 40 ASSERT_EQ(root.GetChild(1), iterator.Next()); 43 ASSERT_EQ(root.GetChild(2), iterator.Next()); 60 TestNode root; local 61 root.Add(new TestNode(1), 0) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/ |
SourceTree.java | 36 * @param root The root of the source tree, which may or may not be a 40 public SourceTree(int root, String url) 42 m_root = root; 49 /** The root of the source tree, which may or may not be a
|
/external/chromium_org/net/quic/congestion_control/ |
cube_root.cc | 59 // Calculate the cube root using a table lookup followed by one Newton-Raphson 61 uint32 CubeRoot::Root(uint64 a) { 76 uint64 root = ((cube_root_table[down_shifted_to_6bit] + 10) << cubic_shift) local 82 root = 2 * root + (a / (root * (root - 1))); 83 root = ((root * 341) >> 10); // Div by 3, biased low. 84 return static_cast<uint32>(root); [all...] |
/external/chromium_org/remoting/host/installer/mac/Config/ |
org.chromium.chromoting.conf | 11 /var/log/org.chromium.chromoting.log root:admin 660 3 1000 * J
|
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/ |
spl_sqrt_floor.c | 35 * Successive approximation of the equation (root + delta) ^ 2 = N 48 try1 = root + (1 << (N)); \ 52 root |= 2 << (N); \ 57 int32_t root = 0, try1; local 76 return root >> 1;
|
/external/chromium_org/base/json/ |
json_writer_unittest.cc | 15 Value* root = Value::CreateNullValue(); local 16 EXPECT_TRUE(JSONWriter::Write(root, &output_js)); 18 delete root; 21 root = new DictionaryValue; 22 EXPECT_TRUE(JSONWriter::Write(root, &output_js)); 24 delete root; 27 root = new ListValue; 28 EXPECT_TRUE(JSONWriter::Write(root, &output_js)); 30 delete root; 33 root = new FundamentalValue(42) 132 Value* root = BinaryValue::CreateWithCopiedBuffer("asdf", 4); local [all...] |
json_string_value_serializer.cc | 15 bool JSONStringValueSerializer::Serialize(const Value& root) { 16 return SerializeInternal(root, false); 20 const Value& root) { 21 return SerializeInternal(root, true); 24 bool JSONStringValueSerializer::SerializeInternal(const Value& root, 35 return base::JSONWriter::WriteWithOptions(&root, options, json_string_);
|
/bionic/libc/bionic/ |
tdestroy.cpp | 23 void tdestroy(void* root, void (*destroy_func)(void*)) { 24 node_t* root_node = (node_t*) root; 35 free(root);
|
/external/chromium_org/ash/ |
root_window_settings.h | 19 // Per root window information should be stored here 20 // instead of using plain aura root window property because 21 // it can prevent mis-using on non root window. 25 // ID of the display associated with the root window. 28 // RootWindowController for the root window. This may be NULL 29 // for the root window used for mirroring. 33 // Initializes and returns RootWindowSettings for |root|. 34 // It is owned by the |root|. 35 RootWindowSettings* InitRootWindowSettings(aura::Window* root); 37 // Returns the RootWindowSettings for |root| [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
file_system_util.py | 11 for root, _, files in file_system.Walk(directory): 13 url = posixpath.join(urlprefix, root, f) 14 yield url, posixpath.join(directory, root, f)
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
Partitions.h | 44 ALWAYS_INLINE static PartitionRoot* getObjectModelPartition() { return m_objectModelAllocator.root(); } 45 ALWAYS_INLINE static PartitionRoot* getRenderingPartition() { return m_renderingAllocator.root(); } 49 return m_objectModelAllocator.root()->totalSizeOfCommittedPages;
|
/external/libcxx/test/containers/associative/ |
tree_remove.pass.cpp | 36 Node root; local 43 root.__left_ = &b; 45 b.__parent_ = &root; 70 std::__tree_remove(root.__left_, &y); 71 assert(std::__tree_invariant(root.__left_)); 73 assert(root.__parent_ == 0); 74 assert(root.__left_ == &d); 75 assert(root.__right_ == 0); 76 assert(root.__is_black_ == false); 78 assert(d.__parent_ == &root); 101 Node root; local 166 Node root; local 242 Node root; local 321 Node root; local 386 Node root; local 451 Node root; local 516 Node root; local 581 Node root; local 646 Node root; local 711 Node root; local 776 Node root; local 841 Node root; local 906 Node root; local 971 Node root; local 1036 Node root; local 1105 Node root; local 1375 Node root; local [all...] |
/external/chromium_org/cc/trees/ |
damage_tracker_unittest.cc | 25 void ExecuteCalculateDrawProperties(LayerImpl* root, 27 // Sanity check: The test itself should create the root layer's render 30 ASSERT_TRUE(root->render_surface()); 33 FakeLayerTreeHostImpl::RecursiveUpdateNumChildren(root); 35 root, root->bounds(), render_surface_layer_list); 48 void EmulateDrawingOneFrame(LayerImpl* root) { 56 ExecuteCalculateDrawProperties(root, &render_surface_layer_list); 72 root->ResetAllChangeTrackingForSubtree(); 80 scoped_ptr<LayerImpl> root local 106 scoped_ptr<LayerImpl> root = local 159 scoped_ptr<LayerImpl> root = CreateTestTreeWithOneSurface(); local 169 scoped_ptr<LayerImpl> root = CreateTestTreeWithTwoSurfaces(); local 188 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 204 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 226 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 266 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 318 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 360 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 409 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 459 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 497 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 531 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 570 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 697 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 749 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 779 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 811 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 857 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 895 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 921 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 975 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 1005 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 1024 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 1127 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 1218 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 1287 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local 1346 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 1379 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_.active_tree(), 1); local 1402 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local 1446 scoped_ptr<LayerImpl> root = CreateTestTreeWithOneSurface(); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/ |
packaging.properties | 11 # The chmod and links must indicate a path relative to the root directory. 13 # List the files and folders to be copied into the root of eclipse for all platform 15 root=epl-v10.html, notice.html, configuration/, startup.jar, .eclipseproduct, eclipse.ini, readme/ 16 root.permissions.755=eclipse,*.so* 17 root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse 19 root.win32.win32.x86=eclipse.exe, eclipsec.exe 20 root.linux.motif.x86=eclipse,libcairo-swt.so,libXm.so.2,about_files/,about.html,icon.xpm 21 root.linux.gtk.x86=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm 22 root.linux.gtk.x86_64=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm 23 root.linux.gtk.ppc=eclips [all...] |
/external/chromium_org/tools/grit/grit/node/ |
include_unittest.py | 26 root = misc.GritNode() 27 root.StartParsing(u'grit', None) 28 root.HandleAttribute(u'latest_public_release', u'0') 29 root.HandleAttribute(u'current_release', u'1') 30 root.HandleAttribute(u'base_dir', ur'..\resource') 32 release.StartParsing(u'release', root) 34 root.AddChild(release) 42 root.EndParsing() 44 self.assertEqual(root.ToRealPath(include_node.GetInputPath()), 49 root = misc.GritNode( [all...] |
/external/chromium_org/build/linux/ |
pkg-config-wrapper | 12 # LSB-compliant root filesystem mounted at the sysroot, and a board build 18 root="$1" 25 if [ -z "$root" -o -z "$target_arch" ] 41 config_path=$root/usr/$libpath/pkgconfig:$root/usr/share/pkgconfig 59 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
|
/external/e2fsprogs/intl/ |
os2compat.c | 51 char *root = getenv ("UNIXROOT"); local 57 if (root) 59 size_t sl = strlen (root); 61 memcpy (_nlos2_libdir, root, sl); 71 if (root) 73 size_t sl = strlen (root); 75 memcpy (_nlos2_localealiaspath, root, sl); 85 if (root) 87 size_t sl = strlen (root); 89 memcpy (_nlos2_localedir, root, sl) [all...] |
/external/chromium_org/content/browser/frame_host/ |
frame_tree_browsertest.cc | 44 // Load doc without iframes. Verify FrameTree just has root. 46 // Site-A Root 48 FrameTreeNode* root = local 50 GetFrameTree()->root(); 51 EXPECT_EQ(0U, root->child_count()); 55 // Site-A Root -- Site-A frame1 63 ASSERT_EQ(2U, root->child_count()); 64 EXPECT_EQ(0U, root->child_at(0)->child_count()); 65 EXPECT_EQ(0U, root->child_at(1)->child_count()); 76 FrameTreeNode* root = wc->GetFrameTree()->root() local 124 FrameTreeNode* root = wc->GetFrameTree()->root(); local 163 FrameTreeNode* root = wc->GetFrameTree()->root(); local 184 FrameTreeNode* root = static_cast<WebContentsImpl*>(shell()->web_contents()) local 228 FrameTreeNode* root = static_cast<WebContentsImpl*>(shell()->web_contents()) local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/ |
ElementShadow.cpp | 153 for (ShadowRoot* root = youngestShadowRoot(); root; root = root->olderShadowRoot()) 154 root->lazyReattachIfAttached(); 192 for (ShadowRoot* root = youngestShadowRoot(); root; root = root->olderShadowRoot()) { 193 if (root->needsAttach() 218 ShadowRoot* root = youngestShadowRoot(); local 282 ShadowRoot* root = shadowInsertionPoint->containingShadowRoot(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLShadowElement.cpp | 74 ShadowRoot* root = containingShadowRoot(); local 75 if (root && root->olderShadowRoot() && root->type() != root->olderShadowRoot()->type()) { 76 String message = String::format("<shadow> doesn't work for %s element host.", root->host()->tagName().utf8().data());
|
/external/deqp/framework/randomshaders/ |
rsgExpressionGenerator.cpp | 40 // Create root 42 Expression* root = Expression::createRandom(m_state, valueRange); local 47 generate(root); 51 delete root; 56 return root; 59 void ExpressionGenerator::generate (Expression* root) 64 m_expressionStack.push_back(root);
|