Searched defs:branch (Results 1 - 25 of 33) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java17 * Return an OID that creates a branch under the current one.
19 * @param branchID node numbers for the new branch.
20 * @return the OID for the new created branch.
22 public ASN1ObjectIdentifier branch(String branchID) method in class:ASN1ObjectIdentifier
28 * Return true if this oid is an extension of the passed in branch, stem.
29 * @param stem the arc or branch that is a possible parent.
30 * @return true if the branch is on the passed in stem, false otherwise.
/external/proguard/src/proguard/evaluation/
H A DBranchUnit.java36 public void branch(Clazz clazz, method in interface:BranchUnit
44 * conditional branch.
H A DBasicBranchUnit.java28 * 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 target
[all...]
/external/nist-sip/java/javax/sip/header/
H A DViaHeader.java10 void setBranch(String branch) throws ParseException; argument
H A DHeaderFactory.java173 String branch) throws InvalidArgumentException, ParseException;
172 createViaHeader(String host, int port, String transport, String branch) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php21 array("regex" => "/branch: ?(\S+)/", "sql" => "`branch` LIKE '%%%s%%'", "sqlpart" => "having") //is a calculated value, won't work in WHERE
69 /* 1.1.2.x <- 1.1.0.2 = branch tag, likewise, 1.1.4.x <- 1.1.0.4 = branch tag, so dynamically rewrite a.b.c.d to a.b.0.c to find the branch tag */
70 $branch = "IF(`revision` LIKE '%.%.%.%', (SELECT `tagname` FROM `tags` NATURAL JOIN `filetags` WHERE `fid` = `ofid` AND `revision` = CONCAT(SUBSTRING_INDEX(`orev`, '.', 2), '.0.', SUBSTRING_INDEX(SUBSTRING_INDEX(`orev`, '.', -2), '.', 1))), 'HEAD')"; variable
71 $sql = "SELECT SQL_CALC_FOUND_ROWS `cvsname`, `revision`, `date`, `author`, `message`, `keyword_subs`, `bugid`, `revision` AS `orev`, `fid` AS `ofid`, $branch AS `branch`$ec FROM `cvsfiles` NATURAL JOIN `commits` NATURAL LEFT JOIN `bugs` $where GROUP BY `fid`, `revision`, `bugid` $having $order LIMIT $offset, $pagesize";
95 print "<a href=\"" . cvsfile($row["cvsname"]) . "\"><abbr title=\"{$row['cvsname']}\">$file</abbr></a> ({$row['branch']} " . showrev($row['revision'], $row["cvsname"]) . ")";
118 <li><a href="?q=branch
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp417 // (2) in a terminator, which represents the branch.
616 bool branch,
618 // If the branch has been marked infeasible we should not generate a node.
619 if (!isFeasible(branch))
622 ProgramPoint Loc = BlockEdge(C.Block, branch ? DstT:DstF,
615 generateNode(ProgramStateRef State, bool branch, ExplodedNode *NodePred) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
H A DRSSFeedAddEntryTask.java50 * branch - build's branch, eg., 2.2.0
54 * buildURL - URL of the build being added to the feed - eg., http://servername/path/to/project/branch/buildID/
94 * JUnitTestURL - URL of the build's JUnit test results - eg., http://servername/path/to/project/branch/buildID/testResults.php
95 * performanceTestURL - URL of the build's performance tests - eg., http://servername/path/to/project/branch/buildID/performance/performance.php
96 * APITestURL - URL of the build's API test results - eg., http://servername/path/to/project/branch/buildID/testResults.php
126 private String branch; field in class:RSSFeedAddEntryTask
172 public void setBranch(String branch) { argument
173 if (isNullString(branch))
176 { this.branch
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DVia.java63 /** The branch parameter is included by every forking proxy.
507 * Gets the branch paramater of the ViaHeader. Returns null if branch
510 * @return the string branch value of ViaHeader
517 * Sets the branch parameter of the ViaHeader to the newly supplied
518 * branch value.
520 * @param branch - the new string branch parmameter of the ViaHeader.
522 * unexpectedly while parsing the branch value.
524 public void setBranch(String branch) throw argument
[all...]
H A DHeaderFactoryImpl.java1057 * Creates a new ViaHeader based on the newly supplied uri and branch values.
1062 * @param branch the new string value of the branch.
1064 * unexpectedly while parsing the branch value.
1071 String branch)
1077 if (branch != null)
1078 via.setBranch(branch);
1067 createViaHeader( String host, int port, String transport, String branch) argument
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h97 Label* branch,
99 InNewSpace(object, scratch, zero, branch, distance);
106 Label* branch,
108 InNewSpace(object, scratch, not_zero, branch, distance);
384 // Check if the map of an object is equal to a specified map and branch to
394 // Check if the map of an object is equal to a specified map and branch to a
95 JumpIfNotInNewSpace(Register object, Register scratch, Label* branch, Label::Distance distance = Label::kFar) argument
104 JumpIfInNewSpace(Register object, Register scratch, Label* branch, Label::Distance distance = Label::kFar) argument
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h413 // The branch node builder does not generate autotransitions.
426 ExplodedNode *generateNode(ProgramStateRef State, bool branch,
429 const CFGBlock *getTargetBlock(bool branch) const {
430 return branch ? DstT : DstF;
433 void markInfeasible(bool branch) { argument
434 if (branch)
440 bool isFeasible(bool branch) { argument
441 return branch ? !InFeasibleTrue : !InFeasibleFalse;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java338 jump(label); // blocks must end with a branch, return or throw
354 * Registers {@code catchClause} as a branch target for all instructions
405 * @param branch the branches to follow; interpretation depends on the
408 private void addInstruction(Insn insn, Label branch) { argument
416 if (branch != null) {
417 throw new IllegalArgumentException("unexpected branch: " + branch);
422 if (branch != null) {
423 throw new IllegalArgumentException("unexpected branch: " + branch);
[all...]
/external/v8/src/arm/
H A Dmacro-assembler-arm.h78 // Don't load NaNs or infinities, branch to the non number case instead.
210 Label* branch) {
211 InNewSpace(object, scratch, ne, branch);
218 Label* branch) {
219 InNewSpace(object, scratch, eq, branch);
826 // Check if the map of an object is equal to a specified map and branch to
845 // Check if the map of an object is equal to a specified map and branch to a
914 // dest. If the HeapNumber does not fit into a 32bits signed integer branch
1294 Label* branch);
208 JumpIfNotInNewSpace(Register object, Register scratch, Label* branch) argument
216 JumpIfInNewSpace(Register object, Register scratch, Label* branch) argument
/external/v8/src/x64/
H A Dmacro-assembler-x64.h185 Label* branch,
187 InNewSpace(object, scratch, not_equal, branch, distance);
194 Label* branch,
196 InNewSpace(object, scratch, equal, branch, distance);
901 // Check if the map of an object is equal to a specified map and branch to
911 // Check if the map of an object is equal to a specified map and branch to a
1371 Label* branch,
183 JumpIfNotInNewSpace(Register object, Register scratch, Label* branch, Label::Distance distance = Label::kFar) argument
192 JumpIfInNewSpace(Register object, Register scratch, Label* branch, Label::Distance distance = Label::kFar) argument
H A Dmacro-assembler-x64.cc247 Label* branch,
263 j(cc, branch, distance);
275 j(cc, branch, distance);
244 InNewSpace(Register object, Register scratch, Condition cc, Label* branch, Label::Distance distance) argument
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransaction.java212 // Transaction branch ID
213 private String branch; field in class:SIPTransaction
263 return this.branch;
403 // If the message has an explicit branch value set,
410 // Override the default branch with the one
480 * Sets the Via header branch parameter used to identify this transaction.
483 * New string used as the branch for this transaction.
486 branch = newBranch;
490 * Gets the current setting for the branch parameter of this transaction.
495 if (this.branch
[all...]
/external/skia/src/animator/
H A DSkScriptTokenizer.cpp127 Branch branch(kUnassigned, 0, 0);
128 fBranchStack.push(branch);
142 Branch& branch = fBranchStack.index(index); local
143 if (branch.fPrimed == Branch::kIsPrimed)
144 resolveBranch(branch);
700 Branch& branch = fBranchStack.index(branchIndex++); local
701 if (branch.fPrimed == Branch::kIsPrimed)
703 Op branchOp = branch.fOperator;
708 if (branch.fOperator == kLogicalAnd)
709 branch
956 Branch& branch = fBranchStack.index(branchIndex++); local
1023 Branch& branch = fBranchStack.top(); local
1191 resolveBranch(SkScriptEngine2::Branch& branch) argument
[all...]
/external/v8/src/mips/
H A Dmacro-assembler-mips.h74 // Don't load NaNs or infinities, branch to the non number case instead.
259 // We NEED a nop in the branch delay slot, as it used by v8, for example in
261 // Currently the branch delay slot is filled by the MacroAssembler.
323 Label* branch) {
324 InNewSpace(object, scratch, ne, branch);
331 Label* branch) {
332 InNewSpace(object, scratch, eq, branch);
726 // Wrapper function for the different cmp/branch types.
745 // dest. If the HeapNumber does not fit into a 32bits signed integer branch
994 // Check if the map of an object is equal to a specified map and branch t
321 JumpIfNotInNewSpace(Register object, Register scratch, Label* branch) argument
329 JumpIfInNewSpace(Register object, Register scratch, Label* branch) argument
[all...]
H A Dmacro-assembler-mips.cc179 Label* branch) {
182 Branch(branch, cc, scratch,
1585 // Emulated condtional branches do not emit a nop in the branch delay slot.
1662 // Emit a nop in the branch delay slot if required.
1762 // branch instruction, as the location will be remember for patching the
1881 // Emit a nop in the branch delay slot if required.
1888 // We use branch_offset as an argument for the branch instructions to be sure
1889 // it is called just before generating the branch instruction, as needed.
1893 // Emit a nop in the branch delay slot if required.
1910 // branch instructio
176 InNewSpace(Register object, Register scratch, Condition cc, Label* branch) argument
[all...]
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCodeGenerator.h682 BranchRecord& branch = m_branches[i]; local
683 branch.jump.linkTo(m_blockHeads[branch.destination], &m_jit);
/external/v8/src/
H A Dlithium-allocator.cc1037 // We are going to insert a move before the branch instruction.
1038 // Some branch instructions (e.g. loops' back edges)
1043 // covering a branch instruction.
1045 LInstruction* branch = local
1047 if (branch->HasPointerMap()) {
1049 branch->pointer_map()->RecordPointer(phi_operand);
1051 branch->pointer_map()->RecordUntagged(phi_operand);
1143 // We are going to insert a move before the branch instruction.
1144 // Some branch instructions (e.g. loops' back edges)
1149 // covering a branch instructio
1151 LInstruction* branch = InstructionAt(pred->last_instruction_index()); local
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_s390_defs.h217 the mask field in the various branch opcodes. */
343 } branch; member in union:__anon13271::__anon13272
/external/clang/lib/Analysis/
H A DThreadSafety.cpp1532 // Find out which branch has the lock
1533 bool branch = 0; local
1535 branch = BLE->getValue();
1538 branch = ILE->getValue().getBoolValue();
1540 int branchnum = branch ? 0 : 1;
1543 // If we've taken the trylock branch, then add the lock
2057 /// of each branch being merged. For example, given the following sequence:
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DfeedTools.jar ... File file private String project private String version private String branch private String buildID private String feedURL private String buildURL private ...

Completed in 417 milliseconds

12