HomeSort by relevance Sort by last modified time
    Searched refs:features (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
isSupported12.java 73 java.util.List features = new java.util.ArrayList(); local
74 features.add("Core");
75 features.add("XML");
76 features.add("HTML");
77 features.add("Views");
78 features.add("StyleSheets");
79 features.add("CSS");
80 features.add("CSS2");
81 features.add("Events");
82 features.add("UIEvents")
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationSource.java 17 * implementations, based upon requested features and versions, as specified
27 * specified features.
28 * @param features A string that specifies which features and versions
41 * features, or <code>null</code> if this source has none.
43 public DOMImplementation getDOMImplementation(String features);
47 * specified features and versions, as specified in .
48 * @param features A string that specifies which features and versions
54 * features
    [all...]
  /external/ipsec-tools/src/include-glibc/
glibc-bugs.h 9 #include <features.h>
  /ndk/sources/android/cpufeatures/
Android.mk 5 LOCAL_SRC_FILES := cpu-features.c
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 32 * The easiest way to test validity of features to set is to use
42 * This Map contains explicitly set features that can be succesfully
50 private HashMap features = null; field in class:SAXFactoryImpl
67 return SAXParserImpl.newInstance(features);
87 if (features == null) {
89 features = new LinkedHashMap();
91 features.put(name, value ? Boolean.TRUE : Boolean.FALSE);
  /dalvik/vm/alloc/
clz.h 32 # include <machine/cpu-features.h>
  /cts/apps/CtsVerifier/tests/src/com/android/cts/verifier/features/
FeatureSummaryActivityTest.java 17 package com.android.cts.verifier.features;
19 import com.android.cts.verifier.features.FeatureSummaryActivity.Feature;
53 Set<String> features = new HashSet<String>(); local
58 features.add(feature);
61 return features;
  /external/webkit/WebCore/page/
WindowFeatures.h 54 WindowFeatures(const String& features);
58 static bool boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue = false);
59 static float floatFeature(const HashMap<String, String>& features, const char* key, float min, float max, float defaultValue);
WindowFeatures.cpp 40 WindowFeatures::WindowFeatures(const String& features)
49 The IE rule is: all features except for channelmode and fullscreen default to YES, but
50 if the user specifies a feature string, all features default to NO. (There is no public
57 if (features.length() == 0) {
79 int length = features.length();
80 String buffer = features.lower();
160 bool WindowFeatures::boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue)
162 HashMap<String, String>::const_iterator it = features.find(key);
163 if (it == features.end())
169 float WindowFeatures::floatFeature(const HashMap<String, String>& features, const char* key, float min, float max, float defaultValue
    [all...]
  /external/bluetooth/bluez/tools/
hcieventmask.c 86 if (di.features[5] & LMP_SNIFF_SUBR)
89 if (di.features[5] & LMP_PAUSE_ENC)
92 if (di.features[6] & LMP_EXT_INQ)
95 if (di.features[6] & LMP_NFLUSH_PKTS)
98 if (di.features[7] & LMP_LSTO)
101 if (di.features[6] & LMP_SIMPLE_PAIR) {
111 * Features Notification */
  /external/srec/srec/ca/
cnfd_scr.c 131 static int CA_ConfScorerGetFeatures(CA_Recog* recog, CA_NBestList *nbestlist, float* features, int *num_features,
137 float features[12]; local
150 rc = CA_ConfScorerGetFeatures(recog, nbestlist, features, &num_features, current_choice, num_choices_left);
169 features[i]) + hConfidenceScorer->one_nbest.offset[i]));
179 features[i]) + hConfidenceScorer->many_nbest.offset[i]));
193 PLogMessage("confidence %d features ", (int)final_value);
195 PLogMessage(" %s %f", conf_feature_names[i], features[i]);
201 int CA_ConfScorerGetFeatures(CA_Recog* recog, CA_NBestList *nbestlist, float* features, int *num_features,
217 ASSERT(features);
233 features[CONF_FEATURE_ABSOLUTE_SCORE] = ((float)(speech_cost0))
    [all...]
  /bionic/libc/private/
bionic_atomic_inline.h 52 #include <machine/cpu-features.h>
  /external/icu4c/common/unicode/
ptypes.h 40 /* The features header is needed to get (u)int64_t sometimes. */
41 #include <features.h>
  /external/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
  /ndk/sources/android/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/asm/
posix_types.h 13 #include <features.h>
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 34 = "http://xml.org/sax/features/namespaces";
37 = "http://xml.org/sax/features/validation";
39 private Map<String, Boolean> features = new HashMap<String, Boolean>(); field in class:SAXParserFactoryImpl
47 if (!name.startsWith("http://xml.org/sax/features/")) {
51 return Boolean.TRUE.equals(features.get(name));
80 return new SAXParserImpl(features);
92 if (!name.startsWith("http://xml.org/sax/features/")) {
97 features.put(name, Boolean.TRUE);
99 // This is needed to disable features that are enabled by default.
100 features.put(name, Boolean.FALSE)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 206 List<String> features = new ArrayList<String>(); local
207 features.add("Core");
208 features.add("XML");
209 features.add("HTML");
210 features.add("Views");
211 features.add("StyleSheets");
212 features.add("CSS");
213 features.add("CSS2");
214 features.add("Events");
215 features.add("UIEvents")
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebwindowfeatures.cpp 42 * To be safe listen to the notify::window-features signal of the #WebKitWebView
48 * WebKitWebWindowFeatures *features = webkit_web_view_get_window_features (my_webview);
51 * g_signal_connect (G_OBJECT(features), "notify::menubar-visible", G_CALLBACK(make_menu_bar_visible), NULL);
52 * g_signal_connect (G_OBJECT(features), "notify::statusbar-visible", G_CALLBACK(make_status_bar_visible), NULL);
382 WebKitWebWindowFeatures* webkit_web_window_features_new_from_core_features(const WebCore::WindowFeatures& features)
386 if(features.xSet)
387 g_object_set(webWindowFeatures, "x", static_cast<int>(features.x), NULL);
389 if(features.ySet)
390 g_object_set(webWindowFeatures, "y", static_cast<int>(features.y), NULL);
392 if(features.widthSet
    [all...]
  /external/webkit/JavaScriptCore/parser/
Nodes.cpp 98 ScopeNode::ScopeNode(JSGlobalData* globalData, const SourceCode& source, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, CodeFeatures features, int numConstants)
102 , m_features(features)
114 inline ProgramNode::ProgramNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, const SourceCode& source, CodeFeatures features, int numConstants)
115 : ScopeNode(globalData, source, children, varStack, funcStack, features, numConstants)
119 PassRefPtr<ProgramNode> ProgramNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, const SourceCode& source, CodeFeatures features, int numConstants)
121 RefPtr<ProgramNode> node = new ProgramNode(globalData, children, varStack, funcStack, source, features, numConstants);
132 inline EvalNode::EvalNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, const SourceCode& source, CodeFeatures features, int numConstants)
133 : ScopeNode(globalData, source, children, varStack, funcStack, features, numConstants)
137 PassRefPtr<EvalNode> EvalNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, const SourceCode& source, CodeFeatures features, int numConstants)
139 RefPtr<EvalNode> node = new EvalNode(globalData, children, varStack, funcStack, source, features, numConstants)
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleHello.java 146 * Handle request for list of supported features.
149 // TODO: query the VM to ensure that support for these features
151 final String[] features = Debug.getVmFeatureList(); local
156 int size = 4 + 4 * features.length;
157 for (int i = features.length-1; i >= 0; i--)
158 size += features[i].length() * 2;
162 out.putInt(features.length);
163 for (int i = features.length-1; i >= 0; i--) {
164 out.putInt(features[i].length());
165 putString(out, features[i])
    [all...]
  /external/stlport/src/
stlport_prefix.h 21 #include <stl/config/features.h>
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 39 private Set<String> features = new HashSet<String>(); field in class:MockFilter
51 return features.contains(name);
63 features.add(name);
65 features.remove(name);
  /ndk/sources/android/stlport/src/
stlport_prefix.h 21 #include <stl/config/features.h>
  /external/webkit/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 57 wxWebKitWindowFeatures wkFeaturesforWindowFeatures(const WindowFeatures& features)
60 wkFeatures.menuBarVisible = features.menuBarVisible;
61 wkFeatures.statusBarVisible = features.statusBarVisible;
62 wkFeatures.toolBarVisible = features.toolBarVisible;
63 wkFeatures.locationBarVisible = features.locationBarVisible;
64 wkFeatures.scrollbarsVisible = features.scrollbarsVisible;
65 wkFeatures.resizable = features.resizable;
66 wkFeatures.fullscreen = features.fullscreen;
67 wkFeatures.dialog = features.dialog;
134 Page* ChromeClientWx::createWindow(Frame*, const FrameLoadRequest& request, const WindowFeatures& features)
    [all...]

Completed in 2128 milliseconds

1 2 3 4 5 6 7 8 910