Searched defs:constant (Results 1 - 8 of 8) sorted by relevance

/frameworks/rs/
H A DrsProgram.cpp59 uint32_t constant = 0; local
67 mConstantTypes[constant].set(reinterpret_cast<Type *>(params[ct+1]));
68 mHal.state.constantTypes[constant++] = reinterpret_cast<Type *>(params[ct+1]);
/frameworks/data-binding/compiler/src/test/java/android/databinding/
H A DBindingExpressionParserTest.java344 private void compareIntLiteral(String constant) throws Exception { argument
345 LiteralContext literal = parseLiteral(constant);
347 assertEquals(constant, token);
350 private void compareFloatLiteral(String constant) throws Exception { argument
351 LiteralContext literal = parseLiteral(constant);
353 assertEquals(constant, token);
356 private void compareBoolLiteral(String constant) throws Exception { argument
357 LiteralContext literal = parseLiteral(constant);
359 assertEquals(constant, token);
/frameworks/rs/api/
H A DGenerateHeaderFiles.cpp113 static void writeConstantComment(GeneratedFile* file, const Constant& constant) { argument
114 const string name = constant.getName();
115 writeComment(file, name, constant.getSummary(), constant.getDescription(),
116 constant.deprecated(), true);
120 const Constant* constant = spec.getConstant(); local
122 writeVersionGuardStart(file, info, constant->getFinalVersion());
123 *file << "#define " << constant->getName() << " " << spec.getValue() << "\n\n";
348 Constant* constant = spec->getConstant(); local
349 if (documentedConstants.find(constant)
[all...]
H A DGenerateDocumentation.cpp480 static bool writeDetailedConstant(GeneratedFile* file, Constant* constant) { argument
481 if (constant->hidden()) {
484 const string& name = constant->getName();
490 *file << " <span class='normal'>: " << constant->getSummary() << "</span>\n";
495 auto specifications = constant->getSpecifications();
508 writeDeprecatedWarning(file, constant);
509 if (!generateHtmlParagraphs(file, constant->getDescription())) {
643 // Write the full details of each constant, type, and function.
H A DSpecification.cpp375 Constant* constant = systemSpecification.findOrCreateConstant(name, &created); local
376 ConstantSpecification* spec = new ConstantSpecification(constant);
377 constant->addSpecification(spec);
378 constant->updateFinalVersion(info);
385 constant->scanDocumentationTags(scanner, created, specFile);
778 Constant* constant = spec->getConstant(); local
779 mDocumentedConstants.insert(pair<string, Constant*>(constant->getName(), constant));
840 } else if (tag == "constant:") {
843 scanner.error() << "Expected function:, type:, or constant
[all...]
H A DSpecification.h185 /* Represents a constant, like M_PI. This is a grouping of the version specific specifications.
261 /* Defines one of the many variations of a constant. There's a one to one correspondance between
270 ConstantSpecification(Constant* constant) : mConstant(constant) {} argument
275 // Parse a constant specification and add it to specFile.
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java640 * Returns a shallow copy of the container's constant state to be used as
643 * @return a shallow copy of the constant state
780 // Create futures for drawables with constant states. If a
781 // drawable doesn't have a constant state, then we can't clone
1045 public final void setConstantSize(boolean constant) { argument
1046 mConstantSize = constant;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 107 milliseconds