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...]