OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Constraints
(Results
1 - 25
of
28
) sorted by null
1
2
/external/chromium_org/content/common/media/
media_stream_options.h
16
// MediaStreamConstraint keys for
constraints
that are passed to getUserMedia.
34
// StreamOptions is a Chromium representation of
constraints
52
typedef std::vector<Constraint>
Constraints
;
55
Constraints
mandatory_audio;
56
Constraints
optional_audio;
59
Constraints
mandatory_video;
60
Constraints
optional_video;
64
//
constraints
are searched, then optional.
74
//
constraints
are searched, then optional.
83
// from |
constraints
|
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
DOMExtension.js
217
function
Constraints
(minimum, preferred)
234
* @param {?
Constraints
}
constraints
237
Constraints
.prototype.isEqual = function(
constraints
)
239
return !!
constraints
&& this.minimum.isEqual(
constraints
.minimum) && this.preferred.isEqual(
constraints
.preferred);
243
* @param {!
Constraints
|number} value
244
* @return {!
Constraints
}
[
all
...]
/external/guava/guava/src/com/google/common/collect/
Constraints.java
41
public final class
Constraints
{
42
private
Constraints
() {}
85
/** @see
Constraints
#constrainedCollection */
124
/** @see
Constraints
#constrainedSet */
162
/** @see
Constraints
#constrainedSortedSet */
214
/** @see
Constraints
#constrainedList */
259
/** @see
Constraints
#constrainedList */
282
/** @see
Constraints
#constrainedListIterator */
336
/** @see
Constraints
#constrainedMultiset */
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediaconstraintsinterface.h
31
// used in WebRTC: http://dev.w3.org/2011/webrtc/editor/webrtc.html#
constraints
.
42
// Interface used for passing arguments about media
constraints
55
class
Constraints
: public std::vector<Constraint> {
60
virtual const
Constraints
& GetMandatory() const = 0;
61
virtual const
Constraints
& GetOptional() const = 0;
64
// Specified by draft-alvestrand-
constraints
-resolution-00b
101
//
Constraints
values.
106
// Temporary pseudo-
constraints
used to enable DTLS-SRTP
108
// Temporary pseudo-
constraints
used to enable DataChannels
142
// The prefix of internal-only
constraints
whose JS set values should b
[
all
...]
/external/clang/lib/Sema/
SemaStmtAsm.cpp
80
MultiExprArg
constraints
, MultiExprArg Exprs,
84
StringLiteral **
Constraints
=
85
reinterpret_cast<StringLiteral**>(
constraints
.data());
97
StringLiteral *Literal =
Constraints
[i];
129
StringLiteral *Literal =
Constraints
[i];
148
// Only allow void types for memory
constraints
.
206
NumInputs, Names,
Constraints
, Exprs.data(),
218
// Validate
constraints
and modifiers.
253
StringLiteral *Literal =
Constraints
[ConstraintIdx];
478
ArrayRef<StringRef>
Constraints
,
[
all
...]
TreeTransform.h
[
all
...]
/external/llvm/include/llvm/IR/
InlineAsm.h
50
std::string AsmString,
Constraints
;
56
const std::string &
Constraints
, bool hasSideEffects,
68
StringRef
Constraints
, bool hasSideEffects,
87
const std::string &getConstraintString() const { return
Constraints
; }
93
static bool Verify(FunctionType *Ty, StringRef
Constraints
);
154
/// isMultipleAlternative - '|': has multiple-alternative
constraints
.
157
/// multipleAlternatives - If there are multiple alternative
constraints
,
178
///
constraints
and their prefixes. If this returns an empty vector, and if
182
/// ParseConstraints - Parse the
constraints
of this inlineasm object,
185
return ParseConstraints(
Constraints
);
[
all
...]
/external/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java
39
* Tests for {@code
Constraints
}.
66
Constraint<? super String> constraint =
Constraints
.notNull();
77
Collection<String> constrained =
Constraints
.constrainedCollection(
89
Collection<String> constrained =
Constraints
.constrainedCollection(
105
Set<String> constrained =
Constraints
.constrainedSet(set, TEST_CONSTRAINT);
119
Set<String> constrained =
Constraints
.constrainedSet(set, TEST_CONSTRAINT);
134
SortedSet<String> constrained =
Constraints
.constrainedSortedSet(
152
SortedSet<String> constrained =
Constraints
.constrainedSortedSet(
180
List<String> constrained =
Constraints
.constrainedList(
209
List<String> constrained =
Constraints
.constrainedList
[
all
...]
/external/llvm/utils/TableGen/
CodeGenInstruction.h
105
std::vector<ConstraintInfo>
Constraints
;
118
for (unsigned j = 0, e =
Constraints
.size(); j != e; ++j) {
119
const CGIOperandList::ConstraintInfo &CI =
Constraints
[j];
/external/llvm/include/llvm/MC/
MCInstrDesc.h
30
// Operand
constraints
72
/// Lower 16 bits are used to specify which
constraints
are set. The higher 16
73
/// bits are used to specify the value of
constraints
(4 bits each).
74
uint32_t
Constraints
;
159
(OpInfo[OpNum].
Constraints
& (1 << Constraint))) {
161
return (int)(OpInfo[OpNum].
Constraints
>> Pos) & 0xf;
/external/clang/lib/CodeGen/
CGStmt.cpp
[
all
...]
/external/clang/lib/Serialization/
ASTReaderStmt.cpp
320
SmallVector<StringLiteral*, 16>
Constraints
;
324
Constraints
.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
328
//
Constraints
334
Names.data(),
Constraints
.data(),
370
SmallVector<StringRef, 16>
Constraints
;
373
Constraints
.reserve(NumOperands);
377
Constraints
.push_back(ConstraintsData.back());
381
Constraints
, Exprs, Clobbers);
[
all
...]
/external/clang/include/clang/AST/
Stmt.h
[
all
...]