HomeSort by relevance Sort by last modified time
    Searched refs:branch (Results 26 - 50 of 350) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/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/llvm/test/MC/Mips/
micromips-bad-branches.s 3 # CHECK: error: branch to misaligned address
5 # CHECK: error: branch target out of range
7 # CHECK: error: branch to misaligned address
9 # CHECK: error: branch target out of range
12 # CHECK: error: branch to misaligned address
14 # CHECK: error: branch target out of range
16 # CHECK: error: branch to misaligned address
18 # CHECK: error: branch target out of range
21 # CHECK: error: branch to misaligned address
23 # CHECK: error: branch target out of rang
    [all...]
mips-bad-branches.s 3 # CHECK: error: branch to misaligned address
5 # CHECK: error: branch to misaligned address
7 # CHECK: error: branch to misaligned address
9 # CHECK: error: branch target out of range
11 # CHECK: error: branch to misaligned address
13 # CHECK: error: branch to misaligned address
15 # CHECK: error: branch to misaligned address
17 # CHECK: error: branch target out of range
20 # CHECK: error: branch to misaligned address
22 # CHECK: error: branch to misaligned addres
    [all...]
micromips-diagnostic-fixup.s 8 nop # This instr makes the branch too long to fit into a 17-bit offset
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
BTree.java 46 BTree branch; local
50 branch = zero;
54 branch = one;
56 branch.addString(path.substring(1), value);
  /external/chromium_org/remoting/tools/
android_version.py 22 branch = int(version_components[2])
24 print branch * 1000 + patch
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 16 ASN1ObjectIdentifier(ASN1ObjectIdentifier oid, String branch)
18 super(oid, branch);
22 * Return an OID that creates a branch under the current one.
24 * @param branchID node numbers for the new branch.
25 * @return the OID for the new created branch.
27 public ASN1ObjectIdentifier branch(String branchID) method in class:ASN1ObjectIdentifier
33 * Return true if this oid is an extension of the passed in branch, stem.
34 * @param stem the arc or branch that is a possible parent.
35 * @return true if the branch is on the passed in stem, false otherwise.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509ObjectIdentifiers.java 61 static final ASN1ObjectIdentifier id_pe = id_pkix.branch("1");
71 static final ASN1ObjectIdentifier id_ad = id_pkix.branch("48");
73 static final ASN1ObjectIdentifier id_ad_caIssuers = id_ad.branch("2");
75 static final ASN1ObjectIdentifier id_ad_ocsp = id_ad.branch("1");
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
audit_runtime_enabled_features.py 12 def features_path(branch):
14 if branch <= 1453:
18 if branch <= 1547:
20 if branch <= 1650:
49 version_regexp = r"(?P<major>\d+)\.\d+\.(?P<branch>\d+)\.(?P<minor>\d+)"
54 return int(match.group('branch'))
76 def feature_file_url_for_branch(branch):
77 path = features_path(branch)
80 return BRANCH_FORMAT % (branch, path)
83 def feature_file_for_branch(branch)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
fake_host_file_system_provider.py 18 def GetBranch(self, branch):
19 return MockFileSystem(TestFileSystem(self._file_system_data[str(branch)]))
host_file_system_iterator.py 23 if channel_info.branch == 'master':
26 file_system = self._file_system_provider.GetBranch(channel_info.branch)
  /external/vixl/tools/
git.py 35 status, branches = util.getstatusoutput('git branch')
36 if status != 0: util.abort('Failed to run git branch.')
38 if not match: util.abort('Failed to find the current branch.')
40 branch = match.group(1);
42 # If we are not on a named branch, return the hash of the HEAD commit.
45 if branch == '(no branch)':
50 branch = match.group(0)
52 return branch
57 branch = get_current_branch(
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedPublish.sh 28 branch="HEAD"; # optional
37 cmd=$cmd" -Dbranch=$branch -Dversion=$version -DbuildID=$buildID -DbuildAlias=$buildAlias -DbuildType="${buildID:0:1};
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 36 public void branch(Clazz clazz, method in interface:BranchUnit
44 * conditional branch.
  /external/chromium_org/native_client_sdk/src/doc/doxygen/
generate_docs.py 22 ChannelInfo = collections.namedtuple('ChannelInfo', ['branch', 'version'])
52 branch = version_row['true_branch']
53 if branch is None:
54 branch = 'trunk'
58 if branch != existing_info.branch:
59 sys.stderr.write('Warning: found different branch numbers for '
61 channel, branch, existing_info.branch, existing_info.branch))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSObjectIdentifiers.java 40 static final ASN1ObjectIdentifier id_ri_ocsp_response = id_ri.branch("2");
42 static final ASN1ObjectIdentifier id_ri_scvp = id_ri.branch("4");
  /external/llvm/test/MC/MachO/ARM/
thumb-bl-jbits.s 15 # We are checking that the branch and link instruction which is:
18 # the branch is assembled with a label not a displacement.
  /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/chromium_org/v8/tools/push-to-trunk/
releases.py 9 # Requires a chromium checkout with branch heads:
82 cr_rev either refers to a chromium svn revision or a chromium branch number.
143 self, git_hash, bleeding_edge_rev, branch, version, patches, cl_body):
146 # The SVN revision on the branch.
150 # The branch name.
151 "branch": branch,
170 def GetRelease(self, git_hash, branch):
183 git_hash, self.GetBleedingEdgeFromPush(title), branch, version,
198 def GetReleasesFromBranch(self, branch)
    [all...]
  /external/chromium_org/v8/src/compiler/
change-lowering-unittest.cc 132 Capture<Node*> branch; local
136 IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
138 IsIfFalse(CaptureEq(&branch)))));
203 Capture<Node*> add, branch, heap_number, if_true; local
216 IsMerge(AllOf(CaptureEq(&if_true), IsIfTrue(CaptureEq(&branch))),
217 IsIfFalse(AllOf(CaptureEq(&branch),
233 Capture<Node*> branch, if_true; local
245 CaptureEq(&branch),
248 IsIfFalse(CaptureEq(&branch)))));
262 Capture<Node*> branch, if_true local
288 Capture<Node*> branch, if_true; local
314 Capture<Node*> branch, heap_number, if_false; local
370 Capture<Node*> branch, if_true; local
399 Capture<Node*> branch, if_true; local
426 Capture<Node*> branch, if_true; local
453 Capture<Node*> branch, heap_number, if_false; local
    [all...]
  /external/chromium_org/tools/
sync-webkit-git.py 37 """Returns the user-configured override branch name, if any."""
38 override_config_name = 'chromium.sync-branch'
43 """Returns the name of the magic branch that lets us know that DEPS is
45 # Is there an override branch specified?
48 return 'refs/heads/gclient' # No override, so return the default branch.
50 # Verify that the branch from config exists.
57 print ("The specified override branch ('%s') doesn't appear to exist." %
90 branch = GetOverrideShortBranchName()
91 if not branch:
92 branch = 'gclient
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 60 struct branch_info * branch; local
68 branch = &s->Branches[s->BranchCount++];
69 memset(branch, 0, sizeof(struct branch_info));
70 branch->If = inst;
90 struct branch_info * branch; local
99 branch = &s->Branches[s->BranchCount - 1];
100 branch->Else = inst;
199 struct branch_info * branch; local
210 branch = &s->Branches[s->BranchCount - 1];
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 60 struct branch_info * branch; local
68 branch = &s->Branches[s->BranchCount++];
69 memset(branch, 0, sizeof(struct branch_info));
70 branch->If = inst;
90 struct branch_info * branch; local
99 branch = &s->Branches[s->BranchCount - 1];
100 branch->Else = inst;
199 struct branch_info * branch; local
210 branch = &s->Branches[s->BranchCount - 1];
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst)
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/
math-expm1.js 67 // Test branch for k = 0.
69 // Test branch for k = -1.
71 // Test branch for k = 1.
73 // Test branch for k <= -2 || k > 56. k = -3.
75 // Test last branch for k < 20, k = 19.
77 // Test the else branch, k = 20.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-359491.js 27 // Gather type feedback for g, but only on one branch for f.
55 // Gather type feedback for g, but only on one branch for f.

Completed in 931 milliseconds

12 3 4 5 6 7 8 91011>>