HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 726 - 750 of 1285) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
cciss_defs.h 112 BYTE Attribute:3;
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 171 /// The set of attribute groups.
379 std::error_code parseAttrKind(uint64_t Code, Attribute::AttrKind *Kind);
    [all...]
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 25 import com.android.dx.cf.iface.Attribute;
76 Attribute att;
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
MethodSourcer.java 22 import org.objectweb.asm.Attribute;
161 public void visitAttribute(Attribute attr) {
162 mOutput.write("%s /* non-standard method attribute */ ", attr.type);
  /external/clang/include/clang/AST/
Comment.h 421 class Attribute {
431 Attribute() { }
433 Attribute(SourceLocation NameLocBegin, StringRef Name) :
439 Attribute(SourceLocation NameLocBegin, StringRef Name,
457 ArrayRef<Attribute> Attributes;
482 const Attribute &getAttr(unsigned Idx) const {
486 void setAttrs(ArrayRef<Attribute> Attrs) {
489 const Attribute &Attr = Attrs.back();
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 92 MCSymbolAttr Attribute) {
100 switch (Attribute) {
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
ASMifierAbstractVisitor.java 33 import org.mockito.asm.Attribute;
92 * Prints the ASM code that generates the given attribute.
94 * @param attr an attribute.
96 public void visitAttribute(final Attribute attr) {
98 buf.append("// ATTRIBUTE ").append(attr.type).append('\n');
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wdspxe.h 103 DWORD PXEAPI PxeProviderSetAttribute(HANDLE hProvider,PXE_PROVIDER_ATTRIBUTE Attribute,PVOID pParameterBuffer,ULONG uParamLen);
111 DWORD PXEAPI PxeProviderSetAttribute(HANDLE hProvider,PXE_PROVIDER_ATTRIBUTE Attribute,PVOID pParameterBuffer,ULONG uParamLen);
  /external/clang/include/clang/Serialization/
ASTWriter.h 316 const Attr *Attribute;
330 DeclUpdate(unsigned Kind, const Attr *Attribute)
331 : Kind(Kind), Attribute(Attribute) {}
341 const Attr *getAttr() const { return Attribute; }
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 118 struct Attribute
120 Attribute (const std::string& name_, const glu::VarType& type_, int offset_)
135 bool operator() (const Attribute& attr) const { return attr.name == name; }
152 vector<const Attribute*> inputs;
257 return false; // Vertex attribute count exceeded.
282 return false; // Per-attribute component count exceeded.
397 // Vertex: assign from attribute.
437 static void computeInputLayout (vector<Attribute>& attributes, int& inputStride, const vector<Varying>& varyings, bool usePointSize)
442 attributes.push_back(Attribute("a_position", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP), inputStride));
447 attributes.push_back(Attribute("a_pointSize", glu::VarType(glu::TYPE_FLOAT, glu::PRECISION_HIGHP), inputStride))
724 const Attribute& attribute = *output.inputs[attrNdx]; local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 388 if (Options.NoRedZone) RegisterF->addFnAttr(Attribute::NoRedZone);
421 User->addFnAttr(Attribute::NoInline);
422 if (Options.NoRedZone) User->addFnAttr(Attribute::NoRedZone);
473 F->addFnAttr(Attribute::NoInline);
474 if (Options.NoRedZone) F->addFnAttr(Attribute::NoRedZone);
  /frameworks/base/tools/aapt2/
ResourceUtils.cpp 272 std::unique_ptr<BinaryPrimitive> tryParseEnumSymbol(const Attribute* enumAttr,
275 for (const Attribute::Symbol& symbol : enumAttr->symbols) {
289 std::unique_ptr<BinaryPrimitive> tryParseFlagSymbol(const Attribute* flagAttr,
304 for (const Attribute::Symbol& symbol : flagAttr->symbols) {
532 * We successively try to parse the string as a resource type that the Attribute
536 const StringPiece16& str, const Attribute* attr,
  /external/llvm/lib/AsmParser/
LLParser.cpp 84 // Handle any function attribute group forward references.
104 // If the alignment was parsed as an attribute, move to the alignment
108 FnAttrs.removeAttribute(Attribute::Alignment);
139 llvm_unreachable("invalid object with forward attribute group reference");
897 return TokError("expected attribute group id");
908 ParseToken(lltok::rbrace, "expected end of attribute group"))
912 return Error(AttrGrpLoc, "attribute group has no attributes");
933 return Error(Lex.getLoc(), "unterminated attribute group");
939 // Allow a function to reference an attribute group:
945 "cannot have an attribute group reference in an attribute group")
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 197 if (Fn.hasFnAttribute(Attribute::Naked)) {
343 if (Fn.hasFnAttribute(Attribute::Naked))
536 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca)) {
544 if (F.hasFnAttribute(Attribute::Naked)) {
756 // attribute, since that belongs to the return value.
769 if (B.contains(Attribute::Returned))
792 // 1) Eliminate the return value and take off the 'returned' attribute on the
794 // 2) Retain the 'returned' attribute and treat the return value (but not the
799 // is free to use the 'returned' attribute to do things like eliding
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 153 // Only used by Attribute::Query functions
226 /** Return the position, in the original source file, of this node or attribute.
454 /// Appends the XML node or attribute to a std::string.
772 /** An attribute is a name-value pair. Elements have an arbitrary
784 /// Construct an empty attribute.
802 /// Construct an attribute with a name and value.
811 const char* Name() const { return name.c_str(); } ///< Return the name of this attribute.
812 const char* Value() const { return value.c_str(); } ///< Return the value of this attribute.
814 const std::string& ValueStr() const { return value; } ///< Return the value of this attribute.
816 int IntValue() const; ///< Return the value of this attribute, converted to an integer
    [all...]

Completed in 795 milliseconds

<<21222324252627282930>>