OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Feature
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/MC/
SubtargetFeature.cpp
29
/// hasFlag - Determine if a
feature
has a flag; '+' or '-'
31
static inline bool hasFlag(const StringRef
Feature
) {
32
assert(!
Feature
.empty() && "Empty string");
34
char Ch =
Feature
[0];
41
static inline std::string StripFlag(const StringRef
Feature
) {
42
return hasFlag(
Feature
) ?
Feature
.substr(1) :
Feature
;
47
static inline bool isEnabled(const StringRef
Feature
) {
48
assert(!
Feature
.empty() && "Empty string")
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java
48
* Simple storage class for data about an Android
feature
.
50
static class
Feature
{
52
* The name of the
feature
. Should be one of the PackageManager.
FEATURE
*
74
public
Feature
(String name, boolean required) {
84
} else if (o == null || !(o instanceof
Feature
)) {
87
Feature
feature
= (
Feature
) o;
local
88
return name.equals(
feature
.name)
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java
55
private static class
Feature
{
73
if (name.equals(
Feature
.VALIDATION)
74
|| name.equals(
Feature
.EXTERNAL_GENERAL_ENTITIES)
75
|| name.equals(
Feature
.EXTERNAL_PARAMETER_ENTITIES)) {
79
if (name.equals(
Feature
.NAMESPACES)) {
83
if (name.equals(
Feature
.NAMESPACE_PREFIXES)) {
87
if (name.equals(
Feature
.STRING_INTERNING)) {
100
if (name.equals(
Feature
.VALIDATION)
101
|| name.equals(
Feature
.EXTERNAL_GENERAL_ENTITIES)
102
|| name.equals(
Feature
.EXTERNAL_PARAMETER_ENTITIES))
[
all
...]
/external/llvm/utils/TableGen/
SubtargetEmitter.cpp
82
// Begin
feature
table
86
// For each
feature
89
// Next
feature
90
Record *
Feature
= FeatureList[i];
92
const std::string &Name =
Feature
->getName();
93
const std::string &CommandLineName =
Feature
->getValueAsString("Name");
94
const std::string &Desc =
Feature
->getValueAsString("Desc");
98
// Emit as { "
feature
", "description", featureEnum, i1 | i2 | ... | in }
105
Feature
->getValueAsListOfDefs("Implies");
125
// End
feature
tabl
[
all
...]
/external/harfbuzz/src/
harfbuzz-open.h
37
/* Use this if a
feature
applies to all glyphs */
49
HB_UShort* FeatureIndex; /* array of
Feature
indices */
52
HB_UShort FeatureCount; /* number of
Feature
indices */
95
/*
Feature
list related structures */
110
HB_Feature
Feature
; /*
Feature
table */
/external/webkit/Source/WebKit/qt/Api/
qwebpage.h
210
enum
Feature
{
317
void setFeaturePermission(QWebFrame* frame,
Feature
feature
, PermissionPolicy policy);
403
void featurePermissionRequested(QWebFrame* frame, QWebPage::
Feature
feature
);
404
void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::
Feature
feature
);
Completed in 580 milliseconds