HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 251 - 275 of 3186) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/i18n/
nfsubs.cpp 52 const UnicodeString& description,
78 const UnicodeString& description,
80 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor)
137 const UnicodeString& description,
189 const UnicodeString& description,
191 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
215 const UnicodeString& description,
249 const UnicodeString& description,
251 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
283 const UnicodeString& description,
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
ProgramCache.cpp 24 #include "Description.h"
118 ProgramCache::Key ProgramCache::computeKey(const Description& description) {
121 !description.mTextureEnabled ? Key::TEXTURE_OFF :
122 description.mTexture.getTextureTarget() == GL_TEXTURE_EXTERNAL_OES ? Key::TEXTURE_EXT :
123 description.mTexture.getTextureTarget() == GL_TEXTURE_2D ? Key::TEXTURE_2D :
126 (description.mPlaneAlpha < 1) ? Key::PLANE_ALPHA_LT_ONE : Key::PLANE_ALPHA_EQ_ONE)
128 description.mPremultipliedAlpha ? Key::BLEND_PREMULT : Key::BLEND_NORMAL)
130 description.mOpaque ? Key::OPACITY_OPAQUE : Key::OPACITY_TRANSLUCENT)
132 description.mColorMatrixEnabled ? Key::COLOR_MATRIX_ON : Key::COLOR_MATRIX_OFF)
    [all...]
  /external/deqp/framework/common/
tcuTestLog.cpp 48 LogImage::LogImage (const std::string& name, const std::string& description, const Surface& surface, qpImageCompressionMode compression)
50 , m_description (description)
58 LogImage::LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, qpImageCompressionMode compression)
60 , m_description (description)
131 void TestLog::startImageSet (const char* name, const char* description)
133 if (qpTestLog_startImageSet(m_log, name, description) == DE_FALSE)
166 void TestLog::writeImage (const char* name, const char* description, const ConstPixelBufferAccess& access, const Vec4& pixelScale, const Vec4& pixelBias, qpImageCompressionMode compressionMode)
187 writeImage(name, description, compressionMode,
199 longDesc << description << " (p' = p * " << pixelScale << " + " << pixelBias << ")";
258 longDesc << description << " (p' = p * " << pixelScale << " + " << pixelBias << ")"
    [all...]
  /external/junit/src/org/junit/experimental/max/
MaxHistory.java 14 import org.junit.runner.Description;
80 Long getFailureTimestamp(Description key) {
84 void putTestFailureTimestamp(Description key, long end) {
88 boolean isNewTest(Description key) {
92 Long getTestDuration(Description key) {
96 void putTestDuration(Description description, long duration) {
97 fDurations.put(description.toString(), duration);
103 private Map<Description, Long> starts= new HashMap<Description, Long>()
    [all...]
MaxCore.java 13 import org.junit.runner.Description;
97 List<Description> leaves= findLeaves(request);
102 private Request constructLeafRequest(List<Description> leaves) {
104 for (Description each : leaves)
118 private Runner buildRunner(Description each) {
129 throw new RuntimeException("Can't build a runner from description [" + each + "]");
136 private Class<?> getMalformedTestClass(Description each) {
149 public List<Description> sortedLeavesForTest(Request request) {
153 private List<Description> findLeaves(Request request) {
154 List<Description> results= new ArrayList<Description>()
    [all...]
  /external/libpcap/
inet.c 131 u_int flags, const char *description, char *errbuf)
233 if (description != NULL) {
235 * We have a description for this interface.
237 curdev->description = strdup(description);
238 if (curdev->description == NULL) {
249 curdev->description = NULL;
362 * "dev.{adapter family name}.{adapter unit}.%desc" to get a description
365 * "dev.an.0.%pnpinfo" has a better description, although one might argue
368 * that in the description
415 char *description = NULL; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ChooseLockSettingsHelper.java 85 * @param description description of the confirmation screen
94 @Nullable CharSequence header, @Nullable CharSequence description,
96 return launchConfirmationActivity(request, title, header, description,
110 @Nullable CharSequence header, @Nullable CharSequence description,
112 return launchConfirmationActivity(request, title, header, description,
117 @Nullable CharSequence header, @Nullable CharSequence description,
126 launched = launchConfirmationActivity(request, title, header, description,
137 launched = launchConfirmationActivity(request, title, header, description,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
BaseSettingsActivity.java 71 String description = descResId != 0 ? mResources.getString(descResId) : null; local
72 setView(title, breadcrumb, description, iconResId);
75 protected void setView(String title, String breadcrumb, String description, int iconResId) {
76 mContentFragment = ContentFragment.newInstance(title, breadcrumb, description, iconResId,
87 protected void setView(String title, String breadcrumb, String description, Uri uri) {
96 String description = descResId != 0 ? mResources.getString(descResId) : null; local
97 setView(title, breadcrumb, description, uri);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
ActionType.java 94 Action toAction(Resources resources, String description) {
95 return toAction(resources, description, true/*enabled*/, false /* not checked */);
98 Action toAction(Resources resources, String description, boolean enabled) {
99 return toAction(resources, description, enabled, false /* not checked */);
102 Action toAction(Resources resources, String description, boolean enabled, boolean checked) {
106 .description(description)
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.java 58 @Command(name = Main.NAME, description = "A curl for the next-generation web.")
87 @Option(name = { "-X", "--request" }, description = "Specify request command to use")
90 @Option(name = { "-d", "--data" }, description = "HTTP POST data")
93 @Option(name = { "-H", "--header" }, description = "Custom header to pass to server")
96 @Option(name = { "-A", "--user-agent" }, description = "User-Agent to send to server")
99 @Option(name = "--connect-timeout", description = "Maximum time allowed for connection (seconds)")
102 @Option(name = "--read-timeout", description = "Maximum time allowed for reading data (seconds)")
105 @Option(name = { "-L", "--location" }, description = "Follow redirects")
109 description = "Allow connections to SSL sites without certs")
112 @Option(name = { "-i", "--include" }, description = "Include protocol headers in the output"
    [all...]
  /frameworks/rs/api/
rs_object_info.spec 19 description:
72 description:
84 description:
96 description:
107 description:
119 description:
131 description:
142 description:
155 description:
171 description
    [all...]
rs_io.spec 19 description:
31 description:
42 description:
52 description:
75 description:
rs_vector_math.spec 19 description:
46 description:
60 description:
76 description:
90 description:
108 description:
126 description:
147 description:
163 description:
178 description
    [all...]
  /system/media/camera/docs/
CameraMetadataKeys.mako 33 description = ""
34 if entry.description:
35 description = dedent(entry.description) + "\n\n"
42 concatenated_info = description + details + extra_detail
44 ## Glue description and details together before javadoc-izing. Otherwise @see in middle of javadoc.
  /external/deqp/modules/gles2/functional/
es2fTextureCompletenessTests.cpp 126 Tex2DCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description);
139 Tex2DCompletenessCase::Tex2DCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description)
140 : TestCase (testCtx, name, description)
178 TexCubeCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description);
191 TexCubeCompletenessCase::TexCubeCompletenessCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description)
192 : TestCase (testCtx, name, description)
240 Incomplete2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, IVec2 invalidLevelSize, int invalidLevelNdx, const glu::ContextInfo& ctxInfo);
252 Incomplete2DSizeCase::Incomplete2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, IVec2 invalidLevelSize, int invalidLevelNdx, const glu::ContextInfo& ctxInfo)
253 : Tex2DCompletenessCase (testCtx, renderCtx, name, description)
316 Incomplete2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, IVec2 size, deUint32 format, deUint32 invalidFormat, int invalidLevelNdx)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 104 RangesMatcher(String description, char[] rangeStarts, char[] rangeEnds) {
105 super(description);
413 String description = "CharMatcher.is('" + showCharacter(match) + "')"; local
414 return new FastMatcher(description) {
443 String description = "CharMatcher.isNot('" + showCharacter(match) + "')"; local
444 return new FastMatcher(description) {
481 StringBuilder description = new StringBuilder("CharMatcher.anyOf(\"");
483 description.append(showCharacter(c));
485 description.append("\")");
486 return new CharMatcher(description.toString())
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderMultisampleInterpolationTests.cpp 87 MultisampleShadeCountRenderCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target);
102 MultisampleShadeCountRenderCase::MultisampleShadeCountRenderCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target)
103 : MultisampleShaderRenderUtil::MultisampleRenderCase(context, name, description, numSamples, target, RENDER_SIZE, MultisampleShaderRenderUtil::MultisampleRenderCase::FLAG_PER_ITERATION_SHADER)
182 SampleQualifierRenderCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target);
193 SampleQualifierRenderCase::SampleQualifierRenderCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target)
194 : MultisampleShadeCountRenderCase(context, name, description, numSamples, target)
364 InterpolateAtSampleRenderCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target, IndexingMode mode);
378 InterpolateAtSampleRenderCase::InterpolateAtSampleRenderCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target, IndexingMode mode)
379 : MultisampleShadeCountRenderCase (context, name, description, numSamples, target)
623 SingleSampleInterpolateAtSampleCase (Context& context, const char* name, const char* description, int numSamples, RenderTarget target, SampleCase sampleCase)
    [all...]
  /build/tools/
merge-event-log-tags.py 70 # Tag names must be unique. (If the tag number and description are
91 description = t.description variable
103 t.description == orig.description):
104 # if the name and description are identical, issue a warning
179 if t.description:
180 buffer.write("%d %s %s\n" % (t.tagnum, t.tagname, t.description))
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3rewritestreams.c 187 antlr3RewriteRuleElementStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description)
245 // Install the description
247 stream->elementDescription = description;
257 antlr3RewriteRuleElementStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement)
263 stream = antlr3RewriteRuleElementStreamNewAE(adaptor, rec, description);
280 antlr3RewriteRuleElementStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector)
286 stream = antlr3RewriteRuleElementStreamNewAE(adaptor, rec, description);
309 antlr3RewriteRuleTOKENStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description)
315 stream = antlr3RewriteRuleElementStreamNewAE(adaptor, rec, description);
333 antlr3RewriteRuleTOKENStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement
    [all...]
  /external/skia/include/utils/
SkRTConf.h 39 SkRTConf(const char *name, const T &defaultValue, const char *description);
54 #define SK_CONF_DECLARE(confType, varName, confName, defaultValue, description) static SkRTConf<confType> varName(confName, defaultValue, description)
63 #define SK_CONF_DECLARE(confType, varName, confName, defaultValue, description) static confType varName = defaultValue
108 SkRTConf<T>::SkRTConf(const char *name, const T &defaultValue, const char *description)
112 , fDescription(description) {
  /frameworks/base/media/java/android/media/
MediaRouterClientState.java 97 public String description; field in class:MediaRouterClientState.RouteInfo
121 description = other.description;
136 description = in.readString();
157 dest.writeString(description);
173 + ", description=" + description
RemoteDisplayState.java 105 public String description; field in class:RemoteDisplayState.RemoteDisplayInfo
122 description = other.description;
133 description = in.readString();
154 dest.writeString(description);
166 + ", description=" + description
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
PasswordInputWizardFragment.java 53 private static final String EXTRA_DESCRIPTION = "description";
58 String title, String description, String prefill) {
62 args.putString(EXTRA_DESCRIPTION, description);
75 final ViewGroup descriptionArea = (ViewGroup) view.findViewById(R.id.description);
90 final String description = args.getString(EXTRA_DESCRIPTION); local
100 if (description != null) {
101 descriptionText.setText(description);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ListenConnectorTest.java 72 String description = reply.getNextValueAsString(); local
78 logWriter.println("description\t= " + description);
84 if (!(description.length() > 0)) {
85 logWriter.println("\n## FAILURE: description.length = 0");
86 fail("description.length = 0");
  /external/deqp/modules/gles3/functional/
es3fIndexedStateQueryTests.cpp 69 TransformFeedbackCase (Context& context, const char* name, const char* description)
70 : ApiCase(context, name, description)
138 TransformFeedbackBufferBindingCase (Context& context, const char* name, const char* description)
139 : TransformFeedbackCase(context, name, description)
183 TransformFeedbackBufferBufferCase (Context& context, const char* name, const char* description)
184 : TransformFeedbackCase(context, name, description)
245 UniformBufferCase (Context& context, const char* name, const char* description)
246 : ApiCase (context, name, description)
302 UniformBufferBindingCase (Context& context, const char* name, const char* description)
303 : UniformBufferCase(context, name, description)
    [all...]

Completed in 733 milliseconds

<<11121314151617181920>>