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

1 2 3 4

  /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...]
  /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...]
  /dalvik/vm/mterp/x86-atom/
zcmp.S 24 * Description: Branch to the given destination if the given register's
33 j${revcmp} ${opcode}_2f # goto next instruction or branch
34 FETCHs 1, %edx # %edx<- BBBB; branch offset
41 js common_periodicChecks2 # jump on backwards branch
OP_GOTO.S 19 * Code: Do an unconditional branch. Uses no substitutions.
24 * The branch uses an 8-bit offset that cannot be zero.
35 js common_periodicChecks2 # do check on backwards branch
OP_GOTO_16.S 19 * Code: Do an unconditional branch. Uses no substitutions.
24 * The branch uses a 16-bit offset that cannot be zero.
33 js common_periodicChecks2 # do check on backwards branch
OP_PACKED_SWITCH.S 44 call $func # call code-unit branch offset
48 jle common_periodicChecks2 # do backward branch
OP_GOTO_32.S 19 * Code: Do an unconditional branch. Uses no substitutions.
24 * The branch uses a 32-bit offset that can be zero.
36 jc common_periodicChecks2 # do check on backwards branch
  /dalvik/vm/mterp/armv5te/
zcmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic one-operand compare-and-branch operation. Provide a "revcmp"
13 mov r9, #4 @ r0<- BYTE branch dist for not-taken
15 b${revcmp} 1f @ branch to 1 if comparison failed
16 FETCH_S(r9, 1) @ r9<- branch offset, in code units
18 bmi common_backwardBranch @ backward branch, do periodic checks
bincmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
16 mov r9, #4 @ r0<- BYTE branch dist for not-taken
18 b${revcmp} 1f @ branch to 1 if comparison failed
19 FETCH_S(r9, 1) @ r9<- branch offset, in code units
OP_PACKED_SWITCH.S 19 bl $func @ r0<- code-unit branch offset
20 movs r9, r0, asl #1 @ r9<- branch byte offset, check sign
21 bmi common_backwardBranch @ backward branch, do periodic checks
  /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...]
  /external/webkit/WebKitTools/BuildSlaveSupport/
build-launcher-app 65 my ($url, $branch);
73 ($branch) = ($url =~ m/\/webkit\/(trunk|branches\/[^\/]+)/);
74 die "Unable to determine current SVN branch in $sourceDir" unless (defined $branch);
75 $branch =~ s/^branches\///;
76 return $branch;
82 my $branch = currentBranch();
86 my $branchFile = "$nightlyLauncherStagingPath/Contents/Resources/BRANCH";
103 open(OUT, ">$branchFile") or die "Couldn't open BRANCH in built application for writing";
104 print OUT "$branch\n"
    [all...]
  /dalvik/vm/mterp/armv6t2/
bincmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
15 mov r9, #4 @ r0<- BYTE branch dist for not-taken
17 b${revcmp} 1f @ branch to 1 if comparison failed
18 FETCH_S(r9, 1) @ r9<- branch offset, in code units
  /dalvik/vm/mterp/x86/
zcmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic one-operand compare-and-branch operation. Provide a "revcmp"
14 movl $$2,%eax # assume branch not taken
bincmp.S 1 %verify "branch taken"
2 %verify "branch not taken"
4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
16 movswl 2(rPC),rINST_FULL # Get signed branch offset
  /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...]
  /external/webkit/JavaScriptCore/wtf/
AVLTree.h 215 branch[d] = cmp > 0;
228 branch.reset();
246 branch.set();
275 } while (branch[depth]);
277 branch[depth] = true;
283 branch[depth] = false;
301 } while (!branch[depth]);
303 branch[depth] = false;
309 branch[depth] = true;
324 // Records a path into the tree. If branch[n] is true, indicate
    [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.
  /external/dbus/test/data/valid-config-files/
debug-allow-all-sha1.conf 8 <servicedir>/home/quinticent/devel/dbus-branch/dbus_1_0/test/data/valid-service-files</servicedir>
  /external/webkit/WebKitTools/Scripts/
bisect-builds 36 # $branch = "branch-name";
64 my %validBranches = map { $_ => 1 } qw(feature-branch trunk);
65 my $branch = $Settings::branch;
82 "b|branch=s" => \$branch,
93 $branch = "feature-branch" if $branch eq "feature"
    [all...]
  /external/libvpx/vpx_mem/memory_manager/include/
cavl_impl.h 359 ** take greater branch from the nth node in the path, otherwise
360 ** take the less branch. bit 0 gives branch from root, and
362 L_BIT_ARR_DEFN(branch)
388 L_BIT_ARR_1(branch, depth)
393 L_BIT_ARR_0(branch, depth)
413 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
436 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
463 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
573 ** take greater branch from the nth node in the path, otherwis
    [all...]
  /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");
  /build/core/
build_id.mk 17 # BUILD_ID is usually used to specify the branch name
18 # (like "MAIN") or a branch name and a release candidate
  /external/nist-sip/java/javax/sip/header/
ViaHeader.java 10 void setBranch(String branch) throws ParseException;

Completed in 395 milliseconds

1 2 3 4