HomeSort by relevance Sort by last modified time
    Searched refs:predecessor (Results 1 - 25 of 32) sorted by null

1 2

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 140 //in the common case of an instruction that only has a single predecessor which is the previous
149 for (AnalyzedInstruction predecessor: analyzedInstruction.getPredecessors()) {
150 if (predecessor.getPostInstructionRegisterType(registerNum) != mergedRegisterType) {
182 for (AnalyzedInstruction predecessor: analyzedInstruction.getPredecessors()) {
183 RegisterType predecessorRegisterType = predecessor.getPostInstructionRegisterType(registerNum);
210 for (AnalyzedInstruction predecessor: analyzedInstruction.getPredecessors()) {
211 RegisterType predecessorRegisterType = predecessor.getPostInstructionRegisterType(registerNum);
217 if (predecessor.getInstructionIndex() == -1) {
222 writer.printUnsignedLongAsHex(methodAnalyzer.getInstructionAddress(predecessor));
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 137 * where we're also given a pointer to n (predecessor).
139 void llvm_gcda_increment_indirect_counter(uint32_t *predecessor,
144 pred = *predecessor;
156 state_table_row, *predecessor);
  /external/icu4c/i18n/
nfrule.h 45 const NFRule* predecessor,
79 void extractSubstitutions(const NFRuleSet* ruleSet, const NFRule* predecessor, const RuleBasedNumberFormat* rbnf, UErrorCode& status);
80 NFSubstitution* extractSubstitution(const NFRuleSet* ruleSet, const NFRule* predecessor, const RuleBasedNumberFormat* rbnf, UErrorCode& status);
nfsubs.h 59 const NFRule* predecessor,
nfrule.cpp 91 const NFRule *predecessor,
121 rule1->extractSubstitutions(ruleSet, predecessor, rbnf, status);
182 rule2->extractSubstitutions(ruleSet, predecessor, rbnf, status);
194 rule1->extractSubstitutions(ruleSet, predecessor, rbnf, status);
368 * @param predecessor The rule preseding this one in "owners" rule list
373 const NFRule* predecessor,
378 sub1 = extractSubstitution(ruleSet, predecessor, rbnf, status);
379 sub2 = extractSubstitution(ruleSet, predecessor, rbnf, status);
388 * @param predecessor The rule preceding this one in the rule set's
397 const NFRule* predecessor,
    [all...]
nfsubs.cpp 330 const NFRule* predecessor,
399 return new ModulusSubstitution(pos, rule->getDivisor(), predecessor,
819 const NFRule* predecessor,
    [all...]
  /external/llvm/runtime/libprofile/
GCDAProfiling.c 143 * where we're also given a pointer to n (predecessor).
145 void llvm_gcda_increment_indirect_counter(uint32_t *predecessor,
150 pred = *predecessor;
162 state_table_row, *predecessor);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 624 ConnectionWaiter predecessor = null; local
631 predecessor = successor;
634 if (predecessor != null) {
635 predecessor.mNext = waiter;
715 ConnectionWaiter predecessor = null; local
719 predecessor = current;
722 if (predecessor != null) {
723 predecessor.mNext = waiter.mNext;
784 ConnectionWaiter predecessor = null; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderQuote.cpp 86 for (RenderObject* predecessor = head->previousInPreOrder(); predecessor; predecessor = predecessor->previousInPreOrder()) {
87 if (!predecessor->isQuote())
89 head->m_previous = toRenderQuote(predecessor);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
AnalyzedInstruction.java 108 protected boolean addPredecessor(AnalyzedInstruction predecessor) {
109 return predecessors.add(predecessor);
154 * To determine this, we simply check if the first predecessor is the fake "StartOfMethod" instruction, which has
204 * given register. Any dead, unreachable, or odexed predecessor is ignored
210 for (AnalyzedInstruction predecessor: predecessors) {
211 RegisterType predecessorRegisterType = predecessor.postRegisterMap[registerNumber];