Home
last modified time | relevance | path

Searched refs:predecessor (Results 1 – 25 of 70) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/html/imports/
DHTMLImportStateResolver.cpp54 …for (HTMLImport* predecessor = ancestor->previous(); predecessor; predecessor = predecessor->previ… in shouldBlockScriptExecution() local
55 if (isBlockingFollowers(predecessor)) in shouldBlockScriptExecution()
/external/chromium_org/sync/internal_api/
Dwrite_node.cc331 const BaseNode* predecessor) { in InitBookmarkByCreation() argument
334 if (predecessor && predecessor->GetParentId() != parent.GetId()) { in InitBookmarkByCreation()
356 return PutPredecessor(predecessor); in InitBookmarkByCreation()
452 const BaseNode* predecessor) { in SetPosition() argument
454 if (predecessor && predecessor->GetParentId() != new_parent.GetId()) { in SetPosition()
464 if ((!predecessor && old.IsRoot()) || in SetPosition()
465 (predecessor && (old == predecessor->GetEntry()->GetId()))) { in SetPosition()
473 return PutPredecessor(predecessor); in SetPosition()
507 bool WriteNode::PutPredecessor(const BaseNode* predecessor) { in PutPredecessor() argument
508 syncable::Id predecessor_id = predecessor ? in PutPredecessor()
[all …]
/external/bison/src/
DAnnotationList.c230 state **predecessor; in AnnotationList__computePredecessorAnnotations() local
231 for (predecessor = predecessors[s->number]; *predecessor; ++predecessor) in AnnotationList__computePredecessorAnnotations()
252 Sbitset__new_on_obstack ((*predecessor)->nitems, in AnnotationList__computePredecessorAnnotations()
284 *predecessor, in AnnotationList__computePredecessorAnnotations()
299 items, (*predecessor)->nitems); in AnnotationList__computePredecessorAnnotations()
311 predecessor_item < (*predecessor)->nitems; in AnnotationList__computePredecessorAnnotations()
313 if ((*predecessor)->items[predecessor_item] in AnnotationList__computePredecessorAnnotations()
316 aver (predecessor_item != (*predecessor)->nitems); in AnnotationList__computePredecessorAnnotations()
317 if (ielr_item_has_lookahead (*predecessor, 0, in AnnotationList__computePredecessorAnnotations()
332 (*predecessor)->nitems, biter, i) in AnnotationList__computePredecessorAnnotations()
[all …]
Dielr.c426 state **predecessor; in ielr_item_has_lookahead() local
428 for (predecessor = predecessors[s->number]; in ielr_item_has_lookahead()
429 *predecessor; in ielr_item_has_lookahead()
430 ++predecessor) in ielr_item_has_lookahead()
433 goto_follows[map_goto ((*predecessor)->number, in ielr_item_has_lookahead()
440 state **predecessor; in ielr_item_has_lookahead() local
441 for (predecessor = predecessors[s->number]; in ielr_item_has_lookahead()
442 *predecessor; in ielr_item_has_lookahead()
443 ++predecessor) in ielr_item_has_lookahead()
447 predecessor_item < (*predecessor)->nitems; in ielr_item_has_lookahead()
[all …]
/external/chromium_org/v8/src/
Dhydrogen-mark-unreachable.cc23 HBasicBlock* predecessor = it.Current(); in MarkUnreachableBlocks() local
28 if (predecessor->IsReachable() && !predecessor->IsDeoptimizing()) { in MarkUnreachableBlocks()
31 predecessor->end()->KnownSuccessorBlock(&pred_succ); in MarkUnreachableBlocks()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderQuote.cpp320 …for (RenderObject* predecessor = previousInPreOrder(); predecessor; predecessor = predecessor->pre… in attachQuote() local
323 if (!predecessor->isQuote() || !toRenderQuote(predecessor)->isAttached()) in attachQuote()
325 m_previous = toRenderQuote(predecessor); in attachQuote()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DPreInstructionRegisterInfoMethodItem.java158 for (AnalyzedInstruction predecessor: analyzedInstruction.getPredecessors()) { in addMergeRegs()
159 … RegisterType predecessorRegisterType = predecessor.getPostInstructionRegisterType(registerNum); in addMergeRegs()
181 for (AnalyzedInstruction predecessor: analyzedInstruction.getPredecessors()) { in writeFullMerge()
182 … RegisterType predecessorRegisterType = predecessor.getPostInstructionRegisterType(registerNum); in writeFullMerge()
188 if (predecessor.getInstructionIndex() == -1) { in writeFullMerge()
193 writer.printUnsignedLongAsHex(methodAnalyzer.getInstructionAddress(predecessor)); in writeFullMerge()
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
Dxmlelement.cc331 void XmlElement::InsertChildAfter(XmlChild* predecessor, XmlChild* next) { in InsertChildAfter() argument
332 if (predecessor == NULL) { in InsertChildAfter()
337 next->next_child_ = predecessor->next_child_; in InsertChildAfter()
338 predecessor->next_child_ = next; in InsertChildAfter()
342 void XmlElement::RemoveChildAfter(XmlChild* predecessor) { in RemoveChildAfter() argument
345 if (predecessor == NULL) { in RemoveChildAfter()
350 next = predecessor->next_child_; in RemoveChildAfter()
351 predecessor->next_child_ = next->next_child_; in RemoveChildAfter()
355 last_child_ = predecessor; in RemoveChildAfter()
Dxmlelement.h196 void InsertChildAfter(XmlChild* predecessor, XmlChild* new_child);
197 void RemoveChildAfter(XmlChild* predecessor);
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
Dxmlelement.cc348 void XmlElement::InsertChildAfter(XmlChild* predecessor, XmlChild* next) { in InsertChildAfter() argument
349 if (predecessor == NULL) { in InsertChildAfter()
354 next->next_child_ = predecessor->next_child_; in InsertChildAfter()
355 predecessor->next_child_ = next; in InsertChildAfter()
359 void XmlElement::RemoveChildAfter(XmlChild* predecessor) { in RemoveChildAfter() argument
362 if (predecessor == NULL) { in RemoveChildAfter()
367 next = predecessor->next_child_; in RemoveChildAfter()
368 predecessor->next_child_ = next->next_child_; in RemoveChildAfter()
372 last_child_ = predecessor; in RemoveChildAfter()
Dxmlelement.h213 void InsertChildAfter(XmlChild* predecessor, XmlChild* new_child);
214 void RemoveChildAfter(XmlChild* predecessor);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DAnalyzedInstruction.java104 protected boolean addPredecessor(AnalyzedInstruction predecessor) { in addPredecessor() argument
105 return predecessors.add(predecessor); in addPredecessor()
202 for (AnalyzedInstruction predecessor: predecessors) {
203 RegisterType predecessorRegisterType = predecessor.postRegisterMap[registerNumber];
/external/chromium_org/sync/internal_api/public/
Dwrite_node.h75 const BaseNode* predecessor);
112 bool SetPosition(const BaseNode& new_parent, const BaseNode* predecessor);
193 bool PutPredecessor(const BaseNode* predecessor) WARN_UNUSED_RESULT;
/external/chromium_org/third_party/icu/source/i18n/
Dnfrule.h45 const NFRule* predecessor,
79 …void extractSubstitutions(const NFRuleSet* ruleSet, const NFRule* predecessor, const RuleBasedNumb…
80 …NFSubstitution* extractSubstitution(const NFRuleSet* ruleSet, const NFRule* predecessor, const Rul…
Dnfrule.cpp90 const NFRule *predecessor, in makeRules() argument
120 rule1->extractSubstitutions(ruleSet, predecessor, rbnf, status); in makeRules()
181 rule2->extractSubstitutions(ruleSet, predecessor, rbnf, status); in makeRules()
193 rule1->extractSubstitutions(ruleSet, predecessor, rbnf, status); in makeRules()
372 const NFRule* predecessor, in extractSubstitutions() argument
377 sub1 = extractSubstitution(ruleSet, predecessor, rbnf, status); in extractSubstitutions()
378 sub2 = extractSubstitution(ruleSet, predecessor, rbnf, status); in extractSubstitutions()
396 const NFRule* predecessor, in extractSubstitution() argument
410 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution()
438 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution()
[all …]
Dnfsubs.h59 const NFRule* predecessor,
/external/icu/icu4c/source/i18n/
Dnfrule.h45 const NFRule* predecessor,
79 …void extractSubstitutions(const NFRuleSet* ruleSet, const NFRule* predecessor, const RuleBasedNumb…
80 …NFSubstitution* extractSubstitution(const NFRuleSet* ruleSet, const NFRule* predecessor, const Rul…
Dnfrule.cpp91 const NFRule *predecessor, in makeRules() argument
121 rule1->extractSubstitutions(ruleSet, predecessor, rbnf, status); in makeRules()
182 rule2->extractSubstitutions(ruleSet, predecessor, rbnf, status); in makeRules()
194 rule1->extractSubstitutions(ruleSet, predecessor, rbnf, status); in makeRules()
373 const NFRule* predecessor, in extractSubstitutions() argument
378 sub1 = extractSubstitution(ruleSet, predecessor, rbnf, status); in extractSubstitutions()
379 sub2 = extractSubstitution(ruleSet, predecessor, rbnf, status); in extractSubstitutions()
397 const NFRule* predecessor, in extractSubstitution() argument
411 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution()
439 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution()
[all …]
Dnfsubs.h59 const NFRule* predecessor,
/external/chromium_org/sync/internal_api/public/base/
Dunique_position_unittest.cc253 const UniquePosition& predecessor = kSortedPositionArray[i]; in TEST_P() local
255 if (IsSuffixInUse(predecessor, suffix)) in TEST_P()
266 UniquePosition::Between(predecessor, successor, suffix); in TEST_P()
268 EXPECT_PRED_FORMAT2(LessThan, predecessor, midpoint); in TEST_P()
291 const UniquePosition& predecessor = kSortedPositionArray[i]; in TEST_P() local
293 if (IsSuffixInUse(predecessor, suffix)) in TEST_P()
296 UniquePosition after = UniquePosition::After(predecessor, suffix); in TEST_P()
298 EXPECT_PRED_FORMAT2(LessThan, predecessor, after); in TEST_P()
/external/chromium_org/sync/syncable/
Dmutable_entry.cc228 MutableEntry predecessor(write_transaction(), GET_BY_ID, predecessor_id); in PutPredecessor() local
229 if (!predecessor.good()) in PutPredecessor()
231 dir()->PutPredecessor(kernel_, predecessor.kernel_); in PutPredecessor()
/external/compiler-rt/lib/profile/
DGCDAProfiling.c331 void llvm_gcda_increment_indirect_counter(uint32_t *predecessor, in llvm_gcda_increment_indirect_counter() argument
336 pred = *predecessor; in llvm_gcda_increment_indirect_counter()
349 *counter, *predecessor); in llvm_gcda_increment_indirect_counter()
/external/dexmaker/src/dx/java/com/android/dx/ssa/
DSsaConverter.java209 SsaBasicBlock predecessor = blocks.get(j); in edgeSplitMoveExceptionsAndResults() local
211 = predecessor.insertNewSuccessor(block); in edgeSplitMoveExceptionsAndResults()
/external/llvm/test/CodeGen/Generic/
Dundef-phi.ll4 ; inserts an IMPLICIT_DEF instruction in the predecessor so all paths to the use
/external/chromium_org/chrome/browser/sync/
Dprofile_sync_service_bookmark_unittest.cc90 syncer::ReadNode predecessor(trans_); in AddWithMetaInfo() local
91 EXPECT_EQ(BaseNode::INIT_OK, predecessor.InitByIdLookup(predecessor_id)); in AddWithMetaInfo()
92 EXPECT_EQ(predecessor.GetParentId(), parent.GetId()); in AddWithMetaInfo()
93 EXPECT_TRUE(node.InitBookmarkByCreation(parent, &predecessor)); in AddWithMetaInfo()
203 syncer::ReadNode predecessor(trans_); in ModifyPosition() local
204 EXPECT_EQ(BaseNode::INIT_OK, predecessor.InitByIdLookup(predecessor_id)); in ModifyPosition()
205 EXPECT_EQ(predecessor.GetParentId(), parent.GetId()); in ModifyPosition()
206 EXPECT_TRUE(node.SetPosition(parent, &predecessor)); in ModifyPosition()
469 syncer::ReadNode* predecessor = NULL; in CreatePermanentBookmarkNodes() local
473 predecessor = &predecessor_node; in CreatePermanentBookmarkNodes()
[all …]

123