HomeSort by relevance Sort by last modified time
    Searched defs:Struct (Results 1 - 25 of 43) sorted by null

1 2

  /external/llvm/unittests/IR/
TypesTest.cpp 21 StructType *Struct = StructType::create(C, "FooBar");
22 EXPECT_EQ("FooBar", Struct->getName());
23 Struct->setName(Struct->getName().substr(0, 3));
24 EXPECT_EQ("Foo", Struct->getName());
25 Struct->setName("");
26 EXPECT_TRUE(Struct->getName().empty());
27 EXPECT_FALSE(Struct->hasName());
  /libcore/luni/src/main/java/java/sql/
Struct.java 24 * as a Java object. The {@code Struct} object has a value for each attribute of the SQL structured
27 public interface Struct {
31 * Struct} represents.
  /external/clang/test/CodeGen/
global-with-initialiser.c 19 struct Struct {
25 struct Struct globalStruct = { 1, 2.0f, "foobar"};
  /external/llvm/utils/Misc/
zkill 54 class Struct:
60 return 'Struct(%s)' % ', '.join(['%s=%r' % (k,getattr(self,k))
119 table.append(Struct(**record))
  /external/mesa3d/src/gallium/tools/trace/
model.py 83 class Struct(Node):
  /system/extras/tests/net_test/
cstruct.py 19 >>> # Declare a struct type by specifying name, field formats and field names.
20 ... # Field formats are the same as those used in the struct module.
22 >>> NLMsgHdr = cstruct.Struct("NLMsgHdr", "=LHHLL", "length type flags seq pid")
39 >>> # Parse the beginning of a byte stream as a struct, and return the struct
50 import struct namespace
53 def Struct(name, fmt, fields):
54 """Function that returns struct classes."""
74 _length = struct.calcsize(_format)
83 values = list(struct.unpack(self._format, data)
    [all...]
  /external/clang/test/SemaCXX/
altivec.cpp 71 struct Struct {
76 vector float initFloat = (vector float)(Struct().f); // expected-error {{did you mean to call it}}
77 vector int initInt = (vector int)(Struct().n); // expected-error {{did you mean to call it}}
constant-expression.cpp 15 struct Struct {
20 template <int itval, Enum etval> struct C {
26 v5 = Struct::sval,
27 v6 = Struct::seval,
31 v10 = sizeof(Struct),
32 v11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
39 b5 : Struct::sval,
40 b6 : Struct::seval
    [all...]
cxx98-compat.cpp 5 struct type_info;
7 template<typename T> struct initializer_list {
42 template<typename T> struct S {};
52 struct Ctor {
56 struct InitListCtor {
76 struct { int a; const int &r; } rr = { 0, {0} }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}}
79 struct DelayedDefaultArgumentParseInitList {
93 struct Defaulted {
98 struct RefQualifier {
114 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initiali (…)
    [all...]
nested-name-spec.cpp 3 struct C {
65 struct A::C c2;
66 struct S : public A::C {};
67 struct A::undef; // expected-error {{no struct named 'undef' in namespace 'A'}}
71 struct RC;
72 struct CC {
73 struct NC;
77 struct A2::RC {
81 struct A2::CC::NC
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 31 converterClass = Struct
178 class Struct(BaseConverter):
217 class Table(Struct):
379 "struct": Struct,
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 4 struct X;
5 typedef struct Y {
16 struct X {
20 struct Y {
37 template <typename T> struct X { };
38 template <typename T> struct Y { };
42 struct Z : public X<Y<T>*> {
50 struct S { };
64 struct Y { int foo(); };
71 struct S
    [all...]
  /external/llvm/include/llvm/IR/
Intrinsics.h 75 struct IITDescriptor {
78 Integer, Vector, Pointer, Struct,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 445 Constant *Struct = ConstantStruct::get(ST, V);
446 return InsertValueInst::Create(Struct, Result, 0);
  /external/clang/include/clang/AST/
APValue.h 51 Struct,
65 struct NoLValuePath {};
66 struct UninitArray {};
67 struct UninitStruct {};
71 struct ComplexAPSInt {
75 struct ComplexAPFloat {
79 struct LV;
80 struct Vec {
86 struct Arr {
92 struct StructData
    [all...]
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 43 // Provide a command-line option to aggregate function arguments into a struct
359 // arguments (or appropriate addressing into struct) instead.
424 // Emit a call to the new function, passing in: *pointer to struct (if
430 // Add inputs as params, or to be filled into the struct
451 AllocaInst *Struct = nullptr;
458 // Allocate a struct at the beginning of this function
460 Struct =
463 params.push_back(Struct);
470 StructArgTy, Struct, Idx, "gep_" + StructValues[i]->getName());
495 StructArgTy, Struct, Idx, "gep_reload_" + outputs[i]->getName())
    [all...]
  /external/v8/tools/
ll_prof.py 486 class Struct(ctypes.Structure):
488 return Struct
533 # Reference: struct perf_file_header in kernel/tools/perf/util/header.h
    [all...]
  /external/google-breakpad/src/testing/scripts/generator/cpp/
ast.py 355 class Struct(Class):
409 """Type used for any variable (eg class, primitive, struct, etc)."""
    [all...]
  /external/v8/src/
types.h 259 // struct Config {
262 // typedef Struct;
264 // template<class> struct Handle { typedef type; } // No template typedefs...
272 // static Handle<Struct>::type as_struct(Type*);
276 // static Handle<Type>::type from_struct(Handle<Struct>::type, int tag);
277 // static Handle<Struct>::type struct_create(int tag, int length, Region*);
278 // static void struct_shrink(Handle<Struct>::type, int length);
279 // static int struct_tag(Handle<Struct>::type);
280 // static int struct_length(Handle<Struct>::type);
281 // static Handle<Type>::type struct_get(Handle<Struct>::type, int)
    [all...]
factory.cc 782 Handle<Struct> Factory::NewStruct(InstanceType type) {
786 Struct);
    [all...]
  /external/v8/test/cctest/
test-types.cc 17 struct ZoneRep {
18 typedef void* Struct;
26 static Struct* AsStruct(Type* t) {
27 return reinterpret_cast<Struct*>(t);
32 static Struct* AsUnion(Type* t) {
35 static int Length(Struct* structured) {
41 struct BitsetType : Type::BitsetType {
50 struct HeapRep {
51 typedef FixedArray Struct;
59 static Struct* AsStruct(Handle<HeapType> t) { return FixedArray::cast(*t);
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 21 module TypeKind = struct
33 | Struct
41 module Linkage = struct
62 module Visibility = struct
69 module DLLStorageClass = struct
76 module CallConv = struct
84 module Attribute = struct
114 module Icmp = struct
128 module Fcmp = struct
148 module Opcode = struct
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 73 struct PDB_UniqueId {
334 enum class PDB_UdtType { Struct, Class, Union, Interface };
432 struct VersionInfo {
455 struct Variant {
503 template <> struct hash<llvm::PDB_SymType> {
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 1367 milliseconds

1 2