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

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/opcodes/
xgate-dis.c 125 /* First we compare the shorthand format of the constraints. If we
128 if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_MON_R_C))
133 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_MON_C_R))
138 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_MON_R_P))
143 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_TRI))
149 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_IDR))
170 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_DYA))
177 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_IDO5))
182 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_MON))
188 else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_REL9)
    [all...]
avr-dis.c 32 char *constraints; member in struct:avr_opcodes_s
363 char *constraints = opcode->constraints; local
375 if (*constraints && *constraints != '?')
377 int regs = REGISTER_P (*constraints);
379 ok = avr_operand (insn, insn2, addr, *constraints, opcode_str, op1, comment1, 0, &sym_op1, &sym_addr1);
381 if (ok && *(++constraints) == ',')
382 ok = avr_operand (insn, insn2, addr, *(++constraints), opcode_str, op2,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
concept.hpp 40 void constraints() function in struct:boost::algorithm::FinderConcept
65 void constraints() function in struct:boost::algorithm::FormatterConcept
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 85 * Constraints that can be applied to a parameter which helps the UI add a
87 * of constraints via an EnumSet.
92 * when other constraints are specified, such as {@link #LAYOUT}, which
100 * when other constraints are specified, such as {@link #LAYOUT}, which
142 AdtPlugin.printErrorToConsole("Use | to separate constraints");
207 /** The constraints applicable for this parameter */
209 public final EnumSet<Constraint> constraints; field in class:Parameter
245 constraints = constraintSet;
247 constraints = EnumSet.noneOf(Constraint.class);
271 constraints = EnumSet.noneOf(Constraint.class)
    [all...]
  /external/webrtc/talk/app/webrtc/
mediaconstraintsinterface.cc 37 // Constraints declared as static members in mediastreaminterface.h
38 // Specified by draft-alvestrand-constraints-resolution-00b
48 // Audio constraints.
88 // Below constraints should be used during PeerConnection construction.
124 bool MediaConstraintsInterface::Constraints::FindFirst(
126 for (Constraints::const_iterator iter = begin(); iter != end(); ++iter) {
136 // |key| and return its value as |value|. |constraints| can be null.
138 // among the mandatory constraints.
142 // Note: Because this uses FindFirst, repeated optional constraints whose
145 bool FindConstraint(const MediaConstraintsInterface* constraints,
    [all...]
peerconnectioninterface_unittest.cc 537 void CreatePeerConnection(webrtc::MediaConstraintsInterface* constraints) {
538 CreatePeerConnection("", "", constraints);
543 webrtc::MediaConstraintsInterface* constraints) {
560 if (!constraints) {
561 constraints = &default_constraints;
569 if (FindConstraint(constraints,
576 config, constraints, std::move(port_allocator),
669 MediaConstraintsInterface* constraints) {
674 pc_->CreateOffer(observer, constraints);
676 pc_->CreateAnswer(observer, constraints);
1267 FakeConstraints constraints; local
1314 FakeConstraints constraints; local
1344 FakeConstraints constraints; local
1366 FakeConstraints constraints; local
1407 FakeConstraints constraints; local
1421 FakeConstraints constraints; local
1438 FakeConstraints constraints; local
1476 FakeConstraints constraints; local
1494 FakeConstraints constraints; local
1521 FakeConstraints constraints; local
1539 FakeConstraints constraints; local
1555 FakeConstraints constraints; local
1580 FakeConstraints constraints; local
1608 FakeConstraints constraints; local
1662 FakeConstraints constraints; local
1693 FakeConstraints constraints; local
1831 FakeConstraints constraints; local
1856 FakeConstraints constraints; local
1884 FakeConstraints constraints; local
1930 FakeConstraints constraints; local
1957 FakeConstraints constraints; local
1975 FakeConstraints constraints; local
2000 FakeConstraints constraints; local
2017 FakeConstraints constraints; local
2036 FakeConstraints constraints; local
2051 FakeConstraints constraints; local
2063 FakeConstraints constraints; local
2084 FakeConstraints constraints; local
2102 FakeConstraints constraints; local
2141 FakeConstraints constraints; local
2170 FakeConstraints constraints; local
2216 FakeConstraints constraints; local
    [all...]
videosource.h 44 // that honors the constraints.
64 // |constraints| can be NULL and in that case the camera is opened using a
69 const webrtc::MediaConstraintsInterface* constraints,
95 void Initialize(const webrtc::MediaConstraintsInterface* constraints);
  /external/webrtc/webrtc/api/objc/
RTCMediaConstraints+Private.h 23 const MediaConstraintsInterface::Constraints& mandatory,
24 const MediaConstraintsInterface::Constraints& optional);
25 virtual const Constraints& GetMandatory() const;
26 virtual const Constraints& GetOptional() const;
29 MediaConstraintsInterface::Constraints mandatory_;
30 MediaConstraintsInterface::Constraints optional_;
46 /** Return a native Constraints object representing these constraints */
47 + (webrtc::MediaConstraintsInterface::Constraints)
49 (NSDictionary<NSString *, NSString *> *)constraints;
    [all...]
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 74 const MediaConstraintsInterface* constraints) {
99 config, constraints, std::move(port_allocator),
154 const MediaConstraintsInterface* constraints) {
157 peer_connection_->CreateOffer(this, constraints);
161 const MediaConstraintsInterface* constraints) {
164 peer_connection_->CreateAnswer(this, constraints);
270 FakeConstraints constraints = audio_constraints; local
272 constraints.AddMandatory(
275 peer_connection_factory_->CreateAudioSource(&constraints);
284 FakeConstraints constraints = video_constraints local
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AlgorithmChecker.java 62 * specified certificate contains the required algorithm constraints.
66 * the specified algorithm constraints.
73 private final AlgorithmConstraints constraints; field in class:AlgorithmChecker
86 * constraints specified in security property
104 * @param constraints the algorithm constraints (or null)
106 public AlgorithmChecker(AlgorithmConstraints constraints) {
109 this.constraints = constraints;
118 * @param constraints the algorithm constraints (or null
    [all...]
Builder.java 244 * @param constraints Current NameConstraints; if null,
280 static int targetDistance(NameConstraintsExtension constraints,
284 /* ensure that certificate satisfies existing name constraints */
285 if (constraints != null && !constraints.verify(cert)) {
287 + "constraints");
329 if (constraints != null) {
330 constraints.merge(ncExt);
335 constraints = (NameConstraintsExtension) ncExt.clone();
339 debug.println("Builder.targetDistance() merged constraints:
    [all...]
  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnection.mm 173 constraints:(RTCMediaConstraints*)constraints {
177 self.peerConnection->CreateAnswer(observer, constraints.constraints);
181 constraints:(RTCMediaConstraints*)constraints {
185 self.peerConnection->CreateOffer(observer, constraints.constraints);
273 constraints:(const webrtc::MediaConstraintsInterface*)constraints {
    [all...]
  /libcore/ojluni/src/main/java/sun/security/ssl/
X509TrustManagerImpl.java 188 AlgorithmConstraints constraints = null; local
206 // create the algorithm constraints
216 constraints = new SSLAlgorithmConstraints(
219 constraints =
223 constraints = new SSLAlgorithmConstraints(sslSocket, false);
229 trustedChain = validate(v, chain, constraints, null);
231 trustedChain = validate(v, chain, constraints, authType);
243 AlgorithmConstraints constraints = null; local
258 // create the algorithm constraints
268 constraints = new SSLAlgorithmConstraints
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.pb_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.pb_2.3.5.v20130525.jar 
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
LinearOptimizer.java 34 * and there may be linear constraints too, of one of the forms:
47 * the constraints, the x<sub>i</sub> are the coordinates of the current point and
77 * @param constraints linear constraints
82 * @exception OptimizationException if no solution fulfilling the constraints
85 RealPointValuePair optimize(LinearObjectiveFunction f, Collection<LinearConstraint> constraints,
AbstractLinearOptimizer.java 47 * Linear constraints.
105 final Collection<LinearConstraint> constraints,
111 this.linearConstraints = constraints;
124 * @exception OptimizationException if no solution fulfilling the constraints
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/detail/
has_constraints.hpp 17 // constraints metafunction exists
32 inline yes has_constraints_(Model*, wrap_constraints<Model,&Model::constraints>* = 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
cloog.h 50 #include <cloog/constraints.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
cloog.h 50 #include <cloog/constraints.h>
  /toolchain/binutils/binutils-2.25/gas/config/
tc-xgate.c 123 /* Used to enable clipping of 16 bit operands into 8 bit constraints. */
407 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_IDR))
410 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_INH))
412 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_TRI))
414 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_DYA))
416 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_IMM3))
418 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_IMM4))
420 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_IMM8))
423 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_IMM16))
426 if (!strcmp (xgate_opcodes[i].constraints, XGATE_OP_MON_R_C)
    [all...]
  /frameworks/support/design/tests/src/android/support/design/widget/
DesignViewActions.java 32 * Overwrites the constraints of the specified {@link ViewAction}.
35 final Matcher<View> constraints) {
39 return constraints;
  /frameworks/wilhelm/src/itf/
IPlaybackRate.c 72 static SLresult IPlaybackRate_SetPropertyConstraints(SLPlaybackRateItf self, SLuint32 constraints)
77 if (constraints & ~(SL_RATEPROP_SILENTAUDIO | SL_RATEPROP_STAGGEREDAUDIO |
81 } else if (!(thiz->mCapabilities & constraints)) {
91 constraints);
99 thiz->mProperties = constraints;
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 429 // Name Constraints Extension (as specified in rfc 3280)
1787 NameConstraints constraints; local
1939 NameConstraints constraints; local
2050 NameConstraints constraints; local
2330 NameConstraints constraints; local
2446 NameConstraints constraints; local
2563 NameConstraints constraints; local
    [all...]
  /external/webrtc/talk/app/webrtc/objctests/
RTCPeerConnectionTest.mm 112 RTCMediaConstraints* constraints = [[RTCMediaConstraints alloc] init];
121 constraints:pcConstraints
129 constraints:pcConstraints
134 [factory videoSourceWithCapturer:capturer constraints:constraints];
155 [pcOffer createOfferWithDelegate:sdpObserver constraints:constraints];
178 [pcAnswer createAnswerWithDelegate:sdpObserver constraints:constraints];

Completed in 2014 milliseconds

12 3 4 5 6 7 8 91011>>