HomeSort by relevance Sort by last modified time
    Searched defs:Struct (Results 1 - 25 of 44) 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/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 83 class Struct(Node):
  /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):
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 98 class Struct(Kind):
215 struct=Struct(name, module=self)
216 self.structs.append(struct)
217 return struct
  /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...]
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...]
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...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 31 converterClass = Struct
178 class Struct(BaseConverter):
217 class Table(Struct):
379 "struct": Struct,
  /external/llvm/include/llvm/IR/
Intrinsics.h 81 struct IITDescriptor {
84 Integer, Vector, Pointer, Struct,
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 157 "Struct or Union"
189 class Struct(Compound):
416 elif lexer.tok=='struct':
437 node = Struct()
443 if not isinstance( _node, Struct ):
450 # refer to the previously defined struct
454 # refer to the previously defined struct
459 # But what about any future reference to the struct ?
519 if isinstance( node, Struct ):
548 elif lexer.tok=='struct'
    [all...]
genpyx.py 22 " just a record (struct) "
200 " the tag of a Struct, Union or Enum "
204 "Struct, Union or Enum "
208 "Struct or Union"
219 if isinstance(self,Struct):
220 descr = 'struct'
234 toks = [ descr+' '+tag ] # struct foo
240 # define empty struct here, it's the best we're gonna get
250 class Struct(Compound):
350 toks.append( ' '*indent + 'struct __unknown_builtin '
    [all...]
ir.py 352 " the tag of a Struct, Union or Enum "
356 "Struct, Union or Enum "
378 #print "# WARNING : anonymous struct " # OK i think
391 "Struct or Union"
398 if isinstance(self,Struct):
399 l=[ 'struct%s '%tag ]
411 # XX empty struct with no tag -> "struct" XX
420 class Struct(genpyx.Struct, Compound)
509 struct = property(get_struct) variable in class:Declarator
768 struct = property(get_struct) variable in class:TypeSpecifiers
    [all...]
  /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/chromium_org/third_party/libevent/
event_rpcgen.py 24 # Holds everything that makes a struct
25 class Struct:
30 print >>sys.stderr, ' Created struct: %s' % name
68 print >>file, 'struct %s;' % self._name
72 print >>file, 'struct %s_access_ {' % self._name
83 print >>file, 'struct %s {' % self._name
84 print >>file, ' struct %s_access_ *base;\n' % self._name
94 """struct %(name)s *%(name)s_new(void);
95 void %(name)s_free(struct %(name)s *);
96 void %(name)s_clear(struct %(name)s *)
    [all...]
  /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
450 AllocaInst *Struct = nullptr;
457 // Allocate a struct at the beginning of this function
459 Struct =
462 params.push_back(Struct);
469 GetElementPtrInst::Create(Struct, Idx,
495 = GetElementPtrInst::Create(Struct, Idx
    [all...]
  /external/chromium_org/v8/tools/
ll_prof.py 485 class Struct(ctypes.Structure):
487 return Struct
532 # Reference: struct perf_file_header in kernel/tools/perf/util/header.h
    [all...]
  /external/chromium_org/v8/src/
types.h 216 // struct Config {
219 // typedef Struct;
221 // template<class> struct Handle { typedef type; } // No template typedefs...
229 // static Handle<Struct>::type as_struct(Type*);
233 // static Handle<Type>::type from_struct(Handle<Struct>::type, int tag);
234 // static Handle<Struct>::type struct_create(int tag, int length, Region*);
235 // static void struct_shrink(Handle<Struct>::type, int length);
236 // static int struct_tag(Handle<Struct>::type);
237 // static int struct_length(Handle<Struct>::type);
238 // static Handle<Type>::type struct_get(Handle<Struct>::type, int)
    [all...]
factory.cc 775 Handle<Struct> Factory::NewStruct(InstanceType type) {
779 Struct);
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 38 struct ZoneRep {
39 typedef void* Struct;
52 static Struct* AsStruct(Type* t) {
53 return reinterpret_cast<Struct*>(t);
67 static Struct* AsUnion(Type* t) {
70 static int Length(Struct* structured) {
76 struct BitsetType : Type::BitsetType {
85 struct HeapRep {
86 typedef FixedArray Struct;
101 static Struct* AsStruct(Handle<HeapType> t) { return FixedArray::cast(*t);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 370 // Create a simple add instruction, and insert it into the struct.
378 Constant *Struct = ConstantStruct::get(ST, V);
379 return InsertValueInst::Create(Struct, Add, 0);
384 // Create a simple add instruction, and insert it into the struct.
392 Constant *Struct = ConstantStruct::get(ST, V);
393 return InsertValueInst::Create(Struct, Add, 0);
419 Constant *Struct =
421 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
434 Constant *Struct = ConstantStruct::get(ST, V);
435 return InsertValueInst::Create(Struct, Add, 0)
    [all...]

Completed in 994 milliseconds

1 2