Searched defs:supported (Results 1 - 25 of 67) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DSupportedParser.java48 * @param supported the header to parse
50 public SupportedParser(String supported) { argument
51 super(supported);
77 Supported supported = new Supported();
78 supported.setHeaderName(SIPHeaderNames.SUPPORTED);
83 supported.setOptionTag(token.getTokenValue());
86 supportedList.add(supported);
92 supported = new Supported();
97 supported.setOptionTag(token.getTokenValue());
100 supportedList.add(supported);
[all...]
/external/webrtc/webrtc/voice_engine/
H A Dvoe_audio_processing_unittest.cc50 bool supported = VoEAudioProcessing::DriftCompensationSupported(); local
51 if (supported) {
/external/deqp/modules/gles2/functional/
H A Des2fNegativeTextureApiTests.cpp75 static void getCompressedTexSubImage2DFormat(const vector<deInt32>& supported, vector<deInt32>& accepted) argument
77 // Find a supported compressed texture format that is accepted by compressedTexSubImage2D()
89 for (int i = 0; i < (int)supported.size(); i++)
91 vector<deInt32>::const_iterator fmt = std::find(supported.begin(), supported.end(), compressedTexSubImage2DFormats[i]);
92 if (fmt != supported.end())
158 m_log << TestLog::Section("", "GL_INVALID_ENUM is generated if internalformat is not a supported format returned in GL_COMPRESSED_TEXTURE_FORMATS.");
165 m_log << TestLog::Section("", "GL_INVALID_ENUM is generated if internalformat is not a supported format returned in GL_COMPRESSED_TEXTURE_FORMATS.");
1999 vector<deInt32> supported;
2001 getSupportedExtensions(GL_NUM_COMPRESSED_TEXTURE_FORMATS, GL_COMPRESSED_TEXTURE_FORMATS, supported);
[all...]
/external/boringssl/src/crypto/x509v3/
H A Dv3_prn.c70 unsigned long flag, int indent, int supported);
195 unsigned long flag, int indent, int supported)
203 if (supported)
194 unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported) argument
/external/fmtlib/support/
H A Drst2md.py116 supported = ('md',) variable in class:MDWriter
/external/icu/icu4c/source/common/
H A Dservlkf.cpp62 const Hashtable* supported = getSupportedIDs(status); local
63 if (supported) {
66 return supported->get(id) != NULL;
73 const Hashtable* supported = getSupportedIDs(status); local
74 if (supported) {
78 while ((elem = supported->nextElement(pos)) != NULL) {
/external/libdrm/tegra/
H A Dtegra.c79 bool supported = false; local
87 supported = true;
91 if (!supported)
/external/squashfs-tools/squashfs-tools/
H A Dcompressor.h28 int supported; member in struct:compressor
/external/webrtc/talk/media/base/
H A Dfakevideocapturer.h57 // Default supported formats. Use ResetSupportedFormats to over write.
142 cricket::VideoFormat supported; local
143 if (GetBestCaptureFormat(format, &supported)) {
144 SetCaptureFormat(&supported);
/external/webrtc/talk/media/devices/
H A Dyuvframescapturer.cc127 // Enumerate the supported formats. We have only one supported format.
130 std::vector<VideoFormat> supported; local
131 supported.push_back(format);
132 SetSupportedFormats(supported);
H A Dfilevideocapturer.cc192 // Read the first frame's header to determine the supported format.
206 // Enumerate the supported formats. We have only one supported format. We set
212 std::vector<VideoFormat> supported; local
213 supported.push_back(format);
215 // TODO(thorcarpenter): Report the actual file video format as the supported
218 SetSupportedFormats(supported);
/external/deqp/modules/egl/
H A DteglGetProcAddressTests.cpp133 // EGL_BAD_DISPLAY is generated if client extensions are not supported.
190 bool supported = isSupported(m_extName); local
195 log << TestLog::Message << m_extName << ": " << (supported ? "supported" : "not supported") << TestLog::EndMessage;
206 if (supported && funcPtr == 0)
208 log << TestLog::Message << "Fail, received null pointer for supported extension function: " << funcName << TestLog::EndMessage;
240 log << TestLog::Message << "EGL_KHR_get_all_proc_addresses: " << (funcPtrSupported ? "supported" : "not supported") << TestLog::EndMessage;
245 log << TestLog::Message << eglu::getConfigAttribValueStr(EGL_RENDERABLE_TYPE, m_apiBit) << " not supported b
[all...]
/external/libvncserver/client_examples/
H A Dscrap.c503 Atom supported[] = { local
511 (unsigned char*)supported,
512 sizeof(supported) / sizeof(supported[0]));
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_ENUM_FRAMESIZES.c339 int supported = 0; local
358 supported = 1;
361 return supported;
366 int supported = 0; local
368 supported =
371 if (!supported) {
372 supported =
375 if (!supported) {
376 supported =
379 if (!supported) {
[all...]
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Ddecode.c53 bool supported; local
75 supported = screen->get_video_param
81 if (!supported) {
/external/mesa3d/src/mesa/main/
H A Dtexparam.c52 * Check if a coordinate wrap mode is supported for the texture target.
60 bool supported; local
67 supported = (ctx->API == API_OPENGL)
72 supported = true;
76 supported = is_desktop_gl && e->ARB_texture_border_clamp
82 supported = (target != GL_TEXTURE_RECTANGLE_NV)
88 supported = is_desktop_gl
95 supported = is_desktop_gl && e->EXT_texture_mirror_clamp
101 supported = false;
105 if (!supported)
[all...]
/external/openssh/
H A Dgss-serv.c73 * list of supported mechanisms before privsep is set up.
151 gss_OID_set supported; local
154 gss_indicate_mechs(&min_status, &supported);
158 &supported_mechs[i]->oid, supported, &present)))
166 gss_release_oid_set(&min_status, &supported);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DRobolectricPackageManager.java183 * or is not supported.
186 * @param supported
188 public void setSystemFeature(String name, boolean supported) { argument
189 systemFeatureList.put(name, supported);
/external/skia/src/core/
H A DSkRasterPipelineBlitter.cpp78 static bool supported(const SkImageInfo& info) { function
106 if (!supported(dst.info()) || !SkBlendMode_AppendStages(*blend)) {
163 SkASSERT(supported(fDst.info()));
191 SkASSERT(supported(fDst.info()));
/external/skia/tools/viewer/sk_app/
H A DVulkanWindowContext.cpp73 VkBool32 supported; local
76 &supported);
/external/swiftshader/src/D3D9/
H A DDirect3DSwapChain9.cpp253 bool supported = frameBuffer->getScanline(inVerticalBlank, scanline); local
255 if(supported)
/external/v8/src/compiler/
H A Dmachine-operator.h22 // For operators that are not supported on all platforms.
25 OptionalOperator(bool supported, const Operator* op) argument
26 : supported_(supported), op_(op) {}
29 // Gets the operator only if it is supported.
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvideocapturer.cc189 // Enumerate the supported formats.
191 std::vector<VideoFormat> supported; local
198 supported.push_back(format);
207 if (supported.empty()) {
221 SetSupportedFormats(supported);
/external/webrtc/webrtc/p2p/base/
H A Dsessiondescription.h164 void set_msid_supported(bool supported) { msid_supported_ = supported; } argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DLocaleMatcherTest.java435 private void showDistance(LocaleMatcher matcher, String desired, String supported) { argument
437 ULocale supported2 = new ULocale(supported);
439 logln(desired + " to " + supported + " :\t" + distance);
614 long timeShort = timeLocaleMatcher("Duration (few supported):\t", desired, matcherShort, showMessage, iterations, 0);
616 long timeMedium = timeLocaleMatcher("Duration (med. supported):\t", desired, matcherLong, showMessage, iterations, timeShort);
618 long timeLong = timeLocaleMatcher("Duration (many supported):\t", desired, matcherVeryLong, showMessage, iterations, timeShort);

Completed in 6888 milliseconds

123