HomeSort by relevance Sort by last modified time
    Searched defs:branch (Results 1 - 25 of 28) sorted by null

1 2

  /packages/apps/Email/src/org/apache/commons/io/input/
TeeInputStream.java 43 private final OutputStream branch; field in class:TeeInputStream
57 * @param branch output stream that will receive a copy of all bytes read
59 public TeeInputStream(InputStream input, OutputStream branch) {
60 this(input, branch, false);
70 * @param branch output stream that will receive a copy of all bytes read
75 InputStream input, OutputStream branch, boolean closeBranch) {
77 this.branch = branch;
93 branch.close();
108 branch.write(ch);
    [all...]
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 36 public void branch(Clazz clazz, method in interface:BranchUnit
44 * conditional branch.
BasicBranchUnit.java 28 * This BranchUnit remembers the branch unit commands that are invoked on it.
41 * Resets the flag that tells whether any of the branch unit commands was
50 * Sets the flag that tells whether any of the branch unit commands was
59 * Returns whether any of the branch unit commands was called.
68 * Sets the initial branch targets, which will be updated as the branch
69 * methods of the branch unit are called.
84 public void branch(Clazz clazz, method in class:BasicBranchUnit
89 // Override the branch targets.
102 // Accumulate the branch targets
    [all...]
Processor.java 734 branchUnit.branch(clazz,
829 branchUnit.branch(clazz, codeAttribute, offset, branchTarget);
837 branchUnit.branch(clazz, codeAttribute, offset, branchTarget);
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
TeeOutputStream.java 32 protected OutputStream branch; field in class:TeeOutputStream
37 * @param branch the second OutputStream
39 public TeeOutputStream( OutputStream out, OutputStream branch ) {
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch.close();
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
TracedBranchUnit.java 29 * This BranchUnit remembers the branch unit commands that are invoked on it.
46 // Always branch.
47 super.branch(clazz, codeAttribute, offset, branchTarget);
51 // Maybe branch.
  /dalvik/vm/compiler/codegen/arm/
CodegenFactory.c 289 ArmLIR *branch = opCondBranch(cUnit, cond); local
290 genCheckCommon(cUnit, dOffset, branch, pcrLabel);
CodegenDriver.c 226 /* Branch to mem op decode template */
238 /* Generate conditional branch instructions */
243 ArmLIR *branch = opCondBranch(cUnit, cond); local
244 branch->generic.target = (LIR *) target;
245 return branch;
248 /* Generate a unconditional branch to go to the interpreter */
252 ArmLIR *branch = opNone(cUnit, kOpUncondBr); local
253 return genCheckCommon(cUnit, dOffset, branch, pcrLabel);
898 /* Generate unconditional branch instructions */
901 ArmLIR *branch = opNone(cUnit, kOpUncondBr) local
915 ArmLIR *branch = genUnconditionalBranch(cUnit, NULL); local
3497 ArmLIR *branch = newLIR0(cUnit, kThumbBUncond); local
    [all...]
  /dalvik/vm/compiler/codegen/arm/FP/
Thumb2VFP.c 185 ArmLIR *branch; local
195 branch = newLIR2(cUnit, kThumbBCond, 0, kArmCondEq);
204 branch->generic.target = (LIR *)label;
  /system/core/libacc/tests/data/
flops.c 110 int branch(double d) { function
118 printf("branching: %d %d %d\n", branch(-1.0), branch(0.0), branch(1.0));
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 59 * @param branch
63 String branch) {
66 add(exception, branch);
70 * Adds new exception type and branch label to current "from-to" block
79 * @param branch
82 void add(String exception, String branch) {
90 if (s != null && s.compareToIgnoreCase(branch) != 0)
93 + ") but different branch addresses (" + s
94 + " and " + branch + ")");
95 type_branch.put(type, branch);
196 String branch = uc.type_branch.get(type); local
    [all...]
  /dalvik/vm/compiler/
Loop.c 159 * 2) The loop back branch compares the BIV with a constant
187 MIR *branch = loopBranch->lastMIRInsn; local
188 OpCode opCode = branch->dalvikInsn.opCode;
194 if (branch->ssaRep->numUses == 0 || branch->ssaRep->numDefs != 0) {
202 if (branch->ssaRep->uses[0] != loopAnalysis->ssaBIV) {
221 int endReg = dvmConvertSSARegToDalvik(cUnit, branch->ssaRep->uses[1]);
223 !dvmIsBitSet(cUnit->isConstantV, branch->ssaRep->uses[1])) {
238 branch->ssaRep->uses[1]);
Compiler.h 115 u4 branch; /* Branch to chained destination */ member in struct:PredictedChainingCell
153 kSVSBackwardBranch = 8, // Exiting compiled code with backward branch trace
160 kJitHintTaken = 1, // Last inst in run was taken branch
161 kJitHintNotTaken = 2, // Last inst in run was not taken branch
162 kJitHintNoBias = 3, // Last inst in run was unbiased branch
  /external/nist-sip/java/gov/nist/javax/sip/
Utils.java 39 * convert byte arrays to hex strings etc. Generate tags and branch identifiers
164 * generate a branch identifier.
167 * used as a branch identifier.
184 String branch = topmostVia.getBranch(); local
185 return branch != null && branch.endsWith(this.signature);
197 throw new RuntimeException("Duplicate Branch ID");
SipProviderImpl.java 304 * User decided to give us his own via header branch. Lets see if it
374 // If the user has set his own branch Id and the
375 // branch id starts with a valid prefix, then take it.
376 // otherwise, generate one. If branch ID checking has
377 // been requested, set the branch ID.
693 * JvB: Via branch should already be OK, dont touch it here? Some
695 * not set already, dont overwrite CANCEL branch here..
699 String branch = via.getBranch(); local
700 if (branch == null || branch.length() == 0)
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb/
Factory.c 877 ArmLIR *branch = newLIR2(cUnit, kThumbBCond, 0, cond); local
878 return genCheckCommon(cUnit, dOffset, branch, pcrLabel);
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Gen.c 197 ArmLIR *branch; local
217 branch = newLIR2(cUnit, kThumb2Cbz, r2, 0);
243 branch->generic.target = (LIR *)target;
256 ArmLIR *branch; local
278 branch = opNone(cUnit, kOpUncondBr);
303 branch->generic.target = (LIR *)target;
Factory.c 1101 ArmLIR *branch; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 620 * Sets the Via branch for CANCEL or ACK requests
627 String branch; local
630 branch = getTopmostVia().getBranch(); // non-2xx ACK uses same branch
632 branch = Utils.getInstance().generateBranchId(); // 2xx ACK gets new branch
635 branch = getTopmostVia().getBranch(); // CANCEL uses same branch
639 via.setBranch( branch );
  /system/core/libacc/tests/
disassem.cpp 84 * b - branch address
85 * t - thumb branch address (bits 24, 0-23)
306 int branch; local
410 /* b - branch address */
412 branch = ((insn << 2) & 0x03ffffff);
413 if (branch & 0x02000000)
414 branch |= 0xfc000000;
415 di->di_printaddr(loc + 8 + branch);
419 branch = ((insn << 2) & 0x03ffffff) |
421 if (branch & 0x02000000
    [all...]
  /system/core/libpixelflinger/codeflinger/
disassem.c 84 * b - branch address
85 * t - thumb branch address (bits 24, 0-23)
307 int branch; local
415 /* b - branch address */
417 branch = ((insn << 2) & 0x03ffffff);
418 if (branch & 0x02000000)
419 branch |= 0xfc000000;
420 di->di_printaddr(loc + 8 + branch);
424 branch = ((insn << 2) & 0x03ffffff) |
426 if (branch & 0x02000000
    [all...]
  /external/skia/src/animator/
SkScriptTokenizer.cpp 119 Branch branch(kUnassigned, 0, 0);
120 fBranchStack.push(branch);
134 Branch& branch = fBranchStack.index(index); local
135 if (branch.fPrimed == Branch::kIsPrimed)
136 resolveBranch(branch);
139 while (fBranchStack.top().fDone == Branch::kIsDone)
691 Branch& branch = fBranchStack.index(branchIndex++) local
946 Branch& branch = fBranchStack.index(branchIndex++); local
1013 Branch& branch = fBranchStack.top(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 212 // Transaction branch ID
213 private String branch; field in class:SIPTransaction
263 return this.branch;
376 // Branch value of topmost Via header
403 // If the message has an explicit branch value set,
408 sipStack.getStackLogger().logDebug("Setting Branch id : " + newBranch);
410 // Override the default branch with the one
416 sipStack.getStackLogger().logDebug("Branch id is null - compute TID!"
480 * Sets the Via header branch parameter used to identify this transaction.
483 * New string used as the branch for this transaction
    [all...]
  /system/core/libacc/
acc.cpp 1140 int branch = l ? 0x1A000000 : 0x0A000000; \/\/ bne : beq local
    [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 1074 milliseconds

1 2