/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_function.cpp | 44 const exec_node *node_b = list_b->head; local 52 ; node_a = node_a->next, node_b = node_b->next) { 57 if (node_b->is_tail_sentinel()) 62 const ir_rvalue *const actual = (ir_rvalue *) node_b; 108 if (!node_b->is_tail_sentinel()) 184 const exec_node *node_b = list_b->head; local 187 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() 188 ; node_a = node_a->next, node_b = node_b->next) [all...] |
/external/mesa3d/src/glsl/ |
ir_function.cpp | 44 const exec_node *node_b = list_b->head; local 52 ; node_a = node_a->next, node_b = node_b->next) { 57 if (node_b->is_tail_sentinel()) 62 const ir_rvalue *const actual = (ir_rvalue *) node_b; 108 if (!node_b->is_tail_sentinel()) 184 const exec_node *node_b = list_b->head; local 187 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() 188 ; node_a = node_a->next, node_b = node_b->next) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
bookmarks_helper.cc | 272 // Checks if the favicon in |node_a| from |model_a| matches that of |node_b| 277 const BookmarkNode* node_b) { 279 FaviconData favicon_data_b = GetFaviconData(model_b, node_b); 303 bool NodesMatch(const BookmarkNode* node_a, const BookmarkNode* node_b) { 304 if (node_a == NULL || node_b == NULL) 305 return node_a == node_b; 306 if (node_a->is_folder() != node_b->is_folder()) { 310 if (node_a->GetTitle() != node_b->GetTitle()) { 312 << node_b->GetTitle(); 315 if (node_a->url() != node_b->url()) 343 const BookmarkNode* node_b = iterator_b.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; 891 node_b = b->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; 891 node_b = b->head; 895 if (node_a == NULL && node_b == NULL [all...] |
/external/chromium_org/cc/trees/ |
layer_sorter.cc | 312 GraphNode& node_b = nodes_[nb]; local 313 if (!node_b.layer->DrawsContent() && !node_b.layer->render_surface()) 317 &node_b.shape, 324 end_node = &node_b; 326 start_node = &node_b;
|
/external/chromium_org/content/renderer/accessibility/ |
renderer_accessibility_browsertest.cc | 395 WebAXObject node_b = node_a.childAt(0); local 396 WebAXObject node_c = node_b.childAt(0); 419 EXPECT_EQ(node_b.axID(), event.nodes[0].id);
|