/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_function.cpp | 43 const exec_node *node_a = list_a->head; local 51 ; !node_a->is_tail_sentinel() 52 ; node_a = node_a->next, node_b = node_b->next) { 61 const ir_variable *const param = (ir_variable *) node_a; 183 const exec_node *node_a = list_a->head; local 187 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() 188 ; node_a = node_a->next, node_b = node_b->next) { 189 ir_variable *a = (ir_variable *) node_a; [all...] |
/external/mesa3d/src/glsl/ |
ir_function.cpp | 43 const exec_node *node_a = list_a->head; local 51 ; !node_a->is_tail_sentinel() 52 ; node_a = node_a->next, node_b = node_b->next) { 61 const ir_variable *const param = (ir_variable *) node_a; 183 const exec_node *node_a = list_a->head; local 187 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() 188 ; node_a = node_a->next, node_b = node_b->next) { 189 ir_variable *a = (ir_variable *) node_a; [all...] |
/external/chromium_org/cc/output/ |
bsp_tree.cc | 105 BspCompareResult BspTree::GetNodePositionRelative(const DrawPolygon& node_a, 107 return DrawPolygon::SideCompare(node_a, node_b);
|
bsp_tree.h | 106 static BspCompareResult GetNodePositionRelative(const DrawPolygon& node_a,
|
/external/chromium_org/content/renderer/accessibility/ |
renderer_accessibility_browsertest.cc | 374 WebAXObject node_a = root_obj.childAt(0); local 375 WebAXObject node_b = node_a.childAt(0); 387 node_a, 397 EXPECT_EQ(node_a.axID(), event.update.node_id_to_clear); 398 EXPECT_EQ(node_a.axID(), event.update.nodes[0].id); 432 WebAXObject node_a = root_obj.childAt(0); local 433 WebAXObject node_b = node_a.childAt(0); 437 node_a, 445 EXPECT_EQ(node_a.axID(), event.update.node_id_to_clear); 446 EXPECT_EQ(node_a.axID(), event.update.nodes[0].id) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
bookmarks_helper.cc | 286 // Checks if the favicon in |node_a| from |model_a| matches that of |node_b| 290 const BookmarkNode* node_a, 292 FaviconData favicon_data_a = GetFaviconData(model_a, node_a); 317 bool NodesMatch(const BookmarkNode* node_a, const BookmarkNode* node_b) { 318 if (node_a == NULL || node_b == NULL) 319 return node_a == node_b; 320 if (node_a->is_folder() != node_b->is_folder()) { 324 if (node_a->GetTitle() != node_b->GetTitle()) { 325 LOG(ERROR) << "Title mismatch: " << node_a->GetTitle() << " vs. " 329 if (node_a->url() != node_b->url()) 361 const BookmarkNode* node_a = iterator_a.Next(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp-parse.y | 661 string_node_t *node_a, *node_b; 669 for (node_a = a->head, node_b = b->head; 670 node_a && node_b; 671 node_a = node_a->next, node_b = node_b->next) 673 if (strcmp (node_a->str, node_b->str)) 680 return node_a == node_b; 882 token_node_t *node_a, *node_b; 890 node_a = a->head; 895 if (node_a == NULL && node_b == NULL [all...] |
/external/mesa3d/src/glsl/glcpp/ |
glcpp-parse.y | 661 string_node_t *node_a, *node_b; 669 for (node_a = a->head, node_b = b->head; 670 node_a && node_b; 671 node_a = node_a->next, node_b = node_b->next) 673 if (strcmp (node_a->str, node_b->str)) 680 return node_a == node_b; 882 token_node_t *node_a, *node_b; 890 node_a = a->head; 895 if (node_a == NULL && node_b == NULL [all...] |
/external/chromium_org/cc/trees/ |
layer_sorter.cc | 309 GraphNode& node_a = nodes_[na]; local 310 if (!node_a.layer->DrawsContent() && !node_a.layer->render_surface()) 317 ABCompareResult overlap_result = CheckOverlap(&node_a.shape, 324 start_node = &node_a; 328 end_node = &node_a;
|