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

1 2 34 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/
peerconnection.h 54 // Populates |session_options| from |constraints|, and returns true if all
55 // mandatory constraints are satisfied.
56 bool ParseConstraintsForAnswer(const MediaConstraintsInterface* constraints,
76 const MediaConstraintsInterface* constraints,
119 const MediaConstraintsInterface* constraints) override;
123 const MediaConstraintsInterface* constraints) override;
223 // |constraints|, the local MediaStreams and DataChannels.
225 const MediaConstraintsInterface* constraints,
peerconnection.cc 474 bool ParseConstraintsForAnswer(const MediaConstraintsInterface* constraints,
480 if (!FindConstraint(constraints,
491 if (!FindConstraint(constraints,
498 if (FindConstraint(constraints,
504 if (FindConstraint(constraints, MediaConstraintsInterface::kUseRtpMux, &value,
512 if (FindConstraint(constraints, MediaConstraintsInterface::kIceRestart,
524 if (!constraints) {
527 return mandatory_constraints_satisfied == constraints->GetMandatory().size();
590 const MediaConstraintsInterface* constraints,
617 if (FindConstraint(constraints, MediaConstraintsInterface::kEnableIPv6
    [all...]
webrtcsession.cc 444 // constraints if the key is found and has a valid value.
447 const MediaConstraintsInterface* constraints,
450 if (!constraints) {
455 if (constraints->GetOptional().FindFirst(key, &string_value)) {
599 const MediaConstraintsInterface* constraints,
619 // TODO(perkj): Take |constraints| into consideration. Return false if not all
620 // mandatory constraints can be fulfilled. Note that |constraints|
629 // |constraints| can override the default |dtls_enabled_| value.
630 if (FindConstraint(constraints, MediaConstraintsInterface::kEnableDtlsSrtp
    [all...]
  /libcore/ojluni/src/main/java/sun/security/ssl/
X509KeyManagerImpl.java 150 // Gets algorithm constraints of the socket.
182 // Gets algorithm constraints of the engine.
331 CheckType checkType, AlgorithmConstraints constraints) {
341 issuerSet, false, checkType, constraints);
384 CheckType checkType, AlgorithmConstraints constraints) {
395 issuerSet, true, checkType, constraints);
612 AlgorithmConstraints constraints) throws Exception {
679 // check the algorithm constraints
680 if (constraints != null &&
681 !conformsToAlgorithmConstraints(constraints, chain))
    [all...]
SSLContextImpl.java 54 // The default algrithm constraints
851 // try the best to check the algorithm constraints
854 AlgorithmConstraints constraints = null; local
862 constraints = new SSLAlgorithmConstraints(
865 constraints =
869 constraints = new SSLAlgorithmConstraints(sslSocket, true);
872 checkAlgorithmConstraints(chain, constraints);
896 AlgorithmConstraints constraints = null; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
question.py 279 class Constraints(OrderedContent):
280 template = '<Constraints>%(content)s</Constraints>'
283 content = super(Constraints, self).get_as_xml()
349 def __init__(self, default=None, constraints=None, num_lines=None):
351 if constraints is None:
352 self.constraints = Constraints()
354 self.constraints = Constraints(constraints
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ImageCaptureManager.java 118 * Callback for placing constraints on which images to capture. See
124 * TotalCaptureResults satisfies constraints necessary for the intended
291 * The set of constraints which must be satisfied for a newly acquired image
570 * available image which satisfies the given constraints can be captured,
575 * @param constraints the set of constraints which must be satisfied in
579 final List<CapturedImageConstraint> constraints) {
581 mPendingImageCaptureConstraints = constraints;
602 // Check to see if the image satisfies all constraints.
615 // constraints
    [all...]
  /external/llvm/test/MC/ARM/
multi-section-mapping.s 24 @ With all those constraints, we want:
  /external/proguard/src/proguard/gui/
ClassSpecificationDialog.java 88 // Create some constraints that can be reused.
89 GridBagConstraints constraints = new GridBagConstraints(); local
90 constraints.anchor = GridBagConstraints.WEST;
91 constraints.insets = new Insets(1, 2, 1, 2);
97 constraintsStretch.insets = constraints.insets;
102 constraintsLast.insets = constraints.insets;
109 constraintsLastStretch.insets = constraints.insets;
117 panelConstraints.insets = constraints.insets;
125 stretchPanelConstraints.insets = constraints.insets;
  /hardware/qcom/display/msm8996/sdm/libs/core/
strategy.cpp 118 DisplayError Strategy::GetNextStrategy(StrategyConstraints *constraints) {
122 error = strategy_intf_->GetNextStrategy(constraints);
comp_manager.h 75 StrategyConstraints constraints; member in struct:sdm::CompManager::DisplayCompositionContext
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.h 75 SLpermille rate, SLuint32 constraints);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXExtendedParameters.java 70 CertSelector constraints = baseParameters.getTargetCertConstraints(); local
71 if (constraints != null)
73 this.targetConstraints = new PKIXCertStoreSelector.Builder(constraints).build();
281 * Returns the required constraints on the target certificate.
282 * The constraints are returned as an instance of
283 * <code>Selector</code>. If <code>null</code>, no constraints are
286 * @return a <code>Selector</code> specifying the constraints on the
  /external/llvm/lib/IR/
InlineAsm.cpp 28 StringRef Constraints, bool hasSideEffects,
30 InlineAsmKeyType Key(AsmString, Constraints, FTy, hasSideEffects,
37 const std::string &constraints, bool hasSideEffects,
40 AsmString(asmString), Constraints(constraints), FTy(FTy),
45 assert(Verify(getFunctionType(), constraints) &&
46 "Function type not legal for constraints!");
139 // Parse the various constraints.
185 // FIXME: For now assuming these are 2-character constraints.
211 InlineAsm::ParseConstraints(StringRef Constraints) {
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIX.java 86 private CertSelector constraints; field in class:PKIX.ValidatorParams
105 // Make sure that none of the trust anchors include name constraints
110 ("name constraints in trust anchor not supported");
165 constraints = params.getTargetCertConstraints();
168 return constraints;
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoDatabase.java 173 protected static void addToTable(List<String[]> createTable, String[][] columns, String[][] constraints) {
179 if (constraints != null) {
180 for (String[] constraint: constraints) {
  /device/linaro/hikey/gralloc/
alloc_device.cpp 185 ump_alloc_constraints constraints; local
191 constraints = UMP_REF_DRV_CONSTRAINT_USE_CACHE;
195 constraints = UMP_REF_DRV_CONSTRAINT_NONE;
208 ump_mem_handle = ump_ref_drv_allocate(size, constraints);
249 AERR("gralloc_alloc_buffer() failed to allocate UMP memory. size:%d constraints: %d", size, constraints);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/
APPRTCViewController.m 68 [self removeConstraints:[self constraints]];
95 NSArray* constraints =
100 for (NSLayoutConstraint* constraint in constraints) {
  /libcore/ojluni/src/main/java/sun/security/validator/
PKIXValidator.java 204 AlgorithmConstraints constraints,
211 // add new algorithm constraints checker
215 if (constraints != null) {
216 algorithmChecker = new AlgorithmChecker(constraints);
362 // setup target constraints
  /external/autotest/client/common_lib/
test.py 186 def analyze_perf_constraints(self, constraints):
197 for constraint in constraints:
266 def _call_run_once_with_retry(self, constraints, profile_only,
283 self._call_run_once(constraints, profile_only,
295 def _call_run_once(self, constraints, profile_only,
317 self.analyze_perf_constraints(constraints)
328 constraints=(), *args, **dargs):
379 self._call_run_once_with_retry(constraints, profile_only,
396 self._call_run_once_with_retry(constraints, profile_only,
    [all...]
  /external/ceres-solver/internal/ceres/
suitesparse.h 243 // ordering. constraints is an array which associates with each
247 // that obeys these constraints.
256 int* constraints,
  /external/clang/lib/AST/
Stmt.cpp 402 /// output operand. All output constraints are known to be non-empty (either
416 /// constraints, these can be empty.
423 StringLiteral **Constraints,
443 C.Deallocate(this->Constraints);
444 this->Constraints = new (C) StringLiteral*[NumExprs];
445 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
482 // "Simple" inline asms have no constraints or operands, just convert the asm
687 StringLiteral **constraints, Expr **exprs
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 11 wrap_constraints<Model,&Model::constraints>* = 0); // expected-note 2{{in instantiation}}
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.cc 121 webrtc::FakeConstraints constraints; local
123 constraints.AddOptional(webrtc::MediaConstraintsInterface::kEnableDtlsSrtp,
126 constraints.AddOptional(webrtc::MediaConstraintsInterface::kEnableDtlsSrtp,
131 config, &constraints, NULL, NULL, this);
  /external/webrtc/webrtc/tools/rtcbot/bot/browser/
bot.js 16 function getUserMedia(constraints, onSuccessCallback, onFailCallback){
18 navigator.webkitGetUserMedia(constraints,

Completed in 2231 milliseconds

1 2 34 5 6 7 8 91011>>