/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerInformation.java | 19 import org.bouncycastle.asn1.cms.Attribute; 218 * the OID of the attribute. 232 * the OID of the attribute. 261 The countersignature attribute MUST be an unsigned attribute; it MUST 262 NOT be a signed attribute, an authenticated attribute, an 263 unauthenticated attribute, or an unprotected attribute. 276 the countersignature attribute [all...] |
/external/llvm/lib/IR/ |
Verifier.cpp | [all...] |
/external/droiddriver/src/io/appium/droiddriver/finders/ |
Predicates.java | 148 * if its {@code attribute} is {@code true}. 150 public static Predicate<UiElement> attributeTrue(final Attribute attribute) { 154 Boolean actual = element.get(attribute); 160 return String.format("{%s}", attribute); 167 * if its {@code attribute} is {@code false}. 169 public static Predicate<UiElement> attributeFalse(final Attribute attribute) { 173 Boolean actual = element.get(attribute); 179 return String.format("{not %s}", attribute); [all...] |
/frameworks/base/tools/aapt2/ |
ResourceValues.h | 258 struct Attribute : public BaseValue<Attribute> { 269 Attribute(bool w, uint32_t t = 0u); 271 Attribute* clone(StringPool* newPool) const override; 336 inline ::std::ostream& operator<<(::std::ostream& out, const Attribute::Symbol& s) {
|
/frameworks/base/tools/aapt2/java/ |
ProguardRules.cpp | 114 xml::Attribute* attr = node->findAttribute(xml::kSchemaAndroid, u"fragment"); 132 xml::Attribute* attr = node->findAttribute({}, u"class"); 150 xml::Attribute* attr = node->findAttribute({}, u"package"); 156 xml::Attribute* attr = node->findAttribute(xml::kSchemaAndroid, u"backupAgent"); 171 xml::Attribute* attr = node->findAttribute(xml::kSchemaAndroid, u"name");
|
/external/deqp/executor/tools/ |
xeBatchResultToJUnit.cpp | 119 << Writer::Attribute("name", caseName) 120 << Writer::Attribute("classname", groupName); 124 << Writer::Attribute("type", xe::getTestStatusCodeName(result.statusCode))
|
xeBatchResultToXml.cpp | 193 writer << Writer::Attribute(xe::getTestStatusCodeName((xe::TestStatusCode)code), de::toString(totals.countByCode[code]).c_str()); 197 writer << Writer::Attribute("All", de::toString(totalCases).c_str()) 215 << xe::xml::Writer::Attribute("FileName", de::FilePath(batchResultFilename).getBaseName()); 296 << Writer::Attribute("Name", testNode->getName()); 314 << Writer::Attribute("Name", testNode->getName()) 315 << Writer::Attribute("Type", xe::getTestCaseTypeName(result->caseType)) 316 << Writer::Attribute("StatusCode", xe::getTestStatusCodeName(result->statusCode)) 317 << Writer::Attribute("StatusDetails", result->statusDetails.c_str())
|
/external/llvm/lib/CodeGen/ |
Analysis.cpp | 281 if (cast<CallInst>(I)->paramHasAttr(attrInd, Attribute::Returned) && 292 if (cast<InvokeInst>(I)->paramHasAttr(attrInd, Attribute::Returned) && 342 // call. In the simple case with no "returned" attribute, the hope is actually 354 // a "returned" attribute, the search will be blocked immediately and the loop 549 CallerAttrs = CallerAttrs.removeAttribute(Attribute::NoAlias); 550 CalleeAttrs = CalleeAttrs.removeAttribute(Attribute::NoAlias); 553 if (CallerAttrs.contains(Attribute::ZExt)) { 554 if (!CalleeAttrs.contains(Attribute::ZExt)) 558 CallerAttrs.removeAttribute(Attribute::ZExt); 559 CalleeAttrs.removeAttribute(Attribute::ZExt) [all...] |
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfHeader.cpp | 117 // If an OpenEXR file contains any attribute names, attribute type names 132 if (strlen (i.name()) >= 32 || strlen (i.attribute().typeName()) >= 32) 288 Header::insert (const char name[], const Attribute &attribute) 291 THROW (Iex::ArgExc, "Image attribute name cannot be an empty string."); 297 Attribute *tmp = attribute.copy(); 311 if (strcmp (i->second->typeName(), attribute.typeName())) 313 "type \"" << attribute.typeName() << "\" [all...] |
/frameworks/base/tools/aapt2/process/ |
SymbolTable.h | 60 Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr) : 64 Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr, bool pub) : 65 id(i), attribute(attr), isPublic(pub) { 74 std::shared_ptr<Attribute> attribute; member in struct:aapt::SymbolTable::Symbol
|
/frameworks/base/tools/aapt2/test/ |
Context.h | 107 std::unique_ptr<Attribute> attr = {}) { 117 std::unique_ptr<Attribute> attr = {}) { 159 if (sym->attribute) { 160 clone->attribute = std::unique_ptr<Attribute>(sym->attribute->clone(nullptr));
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
AttributeListParser.java | 19 import com.android.dx.cf.iface.Attribute; 33 /** attribute parsing context */ 39 /** {@code non-null;} attribute factory to use */ 56 * @param context attribute parsing context (see {@link AttributeFactory}) 58 * @param attributeFactory {@code non-null;} attribute factory to use 141 Attribute attrib =
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
FilterClassAdapter.java | 22 import org.objectweb.asm.Attribute; 138 public void visitAttribute(Attribute attr) {
|
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
ClassSourcer.java | 22 import org.objectweb.asm.Attribute; 111 public void visitAttribute(Attribute attr) { 112 mOutput.write("%s /* non-standard class attribute */ ", attr.type);
|
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUTargetTransformInfo.cpp | 145 if (F->getAttributes().hasAttribute(A->getArgNo() + 1, Attribute::InReg) || 146 F->getAttributes().hasAttribute(A->getArgNo() + 1, Attribute::ByVal))
|
/external/llvm/lib/Target/Mips/ |
Mips16HardFloat.cpp | 279 FStub->addFnAttr(llvm::Attribute::Naked); 280 FStub->addFnAttr(llvm::Attribute::NoInline); 281 FStub->addFnAttr(llvm::Attribute::NoUnwind); 424 Attribute::ReadNone); 426 Attribute::NoInline); 475 FStub->addFnAttr(llvm::Attribute::Naked); 476 FStub->addFnAttr(llvm::Attribute::NoUnwind); 477 FStub->addFnAttr(llvm::Attribute::NoInline); 500 // remove the use-soft-float attribute
|
/external/proguard/src/proguard/classfile/util/ |
StringSharer.java | 24 import proguard.classfile.attribute.Attribute; 25 import proguard.classfile.attribute.visitor.AttributeVisitor; 53 // Replace attribute name strings in the constant pool by internalized 166 public void visitAnyAttribute(Clazz clazz, Attribute attribute) 168 // Put the internalized attribute's name string in the class pool. 169 name = attribute.getAttributeName(clazz).intern(); 170 clazz.constantPoolEntryAccept(attribute.u2attributeNameIndex, this);
|
/art/compiler/debug/dwarf/ |
debug_abbrev_writer.h | 58 // Add attribute specification. 59 void AddAbbrevAttribute(Attribute name, Form type) { 76 this->PushUint8(0); // Attribute list end. 77 this->PushUint8(0); // Attribute list end.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
RuleLabelScope.java | 88 public Attribute getAttribute(String name) {
|
/external/autotest/site_utils/ |
server_manager_utils.py | 232 def delete_attribute(server, attribute): 233 """Delete the attribute from the host. 236 @param attribute: Name of an attribute of the server. 238 attributes = server.attributes.filter(attribute=attribute) 240 raise ServerActionError('Server %s does not have attribute %s' % 241 (server.hostname, attribute)) 243 print 'Attribute %s is deleted from server %s.' % (attribute, [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/ |
rfc5208.py | 28 componentType = rfc2251.Attribute()
|
/external/chromium-trace/catapult/third_party/webapp2/docs/_themes/webapp2/ |
pygapp2.py | 32 Name.Attribute: "nobold noitalic #000",
|
/external/emma/core/java12/com/vladium/emma/report/ |
IItemAttribute.java | 53 if ($assert.ENABLED) $assert.ASSERT (attributeID >= ATTRIBUTE_NAME_ID && attributeID <= ATTRIBUTE_LINE_COVERAGE_ID, "invalid attribute ID: " + attributeID); 66 private static abstract class Attribute implements IItemAttribute 73 protected Attribute (final String name) 86 private static final class NameAttribute extends Attribute 130 private static final class FractionAttribute extends Attribute
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
ISimpleElement.java | 54 getAttributes ().set (Attribute.CLASS, classID);
|
/external/google-breakpad/src/common/dwarf/ |
dwarf2reader_test_common.h | 127 // Add an attribute to the current abbreviation code whose name is |name| 129 TestAbbrevTable &Attribute(DwarfAttribute name, DwarfForm form) {
|