HomeSort by relevance Sort by last modified time
    Searched defs:Struct (Results 1 - 25 of 29) 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/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/llvm/include/llvm/IR/
Intrinsics.h 80 struct IITDescriptor {
83 Integer, Vector, Pointer, Struct,
  /external/chromium/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 41 // Provide a command-line option to aggregate function arguments into a struct
358 // 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 = 0;
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/v8/tools/
ll_prof.py 469 class Struct(ctypes.Structure):
471 return Struct
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 355 class Struct(Class):
409 """Type used for any variable (eg class, primitive, struct, etc)."""
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 368 // Create a simple add instruction, and insert it into the struct.
376 Constant *Struct = ConstantStruct::get(ST, V);
377 return InsertValueInst::Create(Struct, Add, 0);
382 // Create a simple add instruction, and insert it into the struct.
390 Constant *Struct = ConstantStruct::get(ST, V);
391 return InsertValueInst::Create(Struct, Add, 0);
417 Constant *Struct =
419 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
438 Constant *Struct =
440 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0)
    [all...]
  /external/v8/src/
factory.cc 340 Handle<Struct> Factory::NewStruct(InstanceType type) {
344 Struct);
    [all...]
objects.h 109 // - Struct
425 // A struct is a simple object a set of object-valued fields. Including an
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 20 module TypeKind = struct
32 | Struct
39 module Linkage = struct
58 module Visibility = struct
65 module CallConv = struct
73 module Attribute = struct
103 module Icmp = struct
117 module Fcmp = struct
137 module Opcode = struct
208 module ValueKind = struct
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 1674 milliseconds

1 2