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

1 2 3 4

  /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());
  /external/clang/test/SemaCXX/
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...]
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}}
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 8 struct type_info;
10 template<typename T> struct initializer_list {
45 template<typename T> struct S {};
55 struct Ctor {
59 struct InitListCtor {
79 struct { int a; const int &r; } rr = { 0, {0} }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}}
82 struct DelayedDefaultArgumentParseInitList {
96 struct Defaulted {
101 struct RefQualifier {
117 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initiali (…)
    [all...]
  /external/clang/test/CodeGen/
global-with-initialiser.c 19 struct Struct {
25 struct Struct globalStruct = { 1, 2.0f, "foobar"};
  /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.
SQLOutput.java 262 * Write an SQL {@code Struct} value into the output stream.
265 * the {@code java.sql.Struct} object to write.
268 * @see Struct
270 public void writeStruct(Struct theStruct) throws SQLException;
Connection.java     [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 5 Parameter = Struct.new( :name, :default )
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 11 TrivialToken = Struct.new(:type) do
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
deprecated_idl_serializer.pm 37 use Class::Struct;
  /external/llvm/include/llvm/IR/
Intrinsics.h 78 struct IITDescriptor {
81 Integer, Vector, Pointer, Struct,
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 34 import java.sql.Struct;
217 public Struct createStruct(String typeName, Object[] attributes)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
diff.rb 3 Match = Struct.new(:start_in_old, :start_in_new, :size)
14 Operation = Struct.new(:action, :start_in_old, :end_in_old, :start_in_new, :end_in_new)
  /external/clang/lib/AST/
APValue.cpp 27 struct LVBase {
35 struct APValue::LV : LVBase {
70 struct MemberPointerBase {
76 struct APValue::MemberPointerData : MemberPointerBase {
166 case Struct:
204 else if (Kind == Struct)
220 case Struct:
310 case Struct:
311 OS << "Struct ";
486 case APValue::Struct:
    [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/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/chromium_org/tools/grit/grit/gather/
chrome_scaled_image_unittest.py 10 import struct namespace
40 pack_int32 = struct.Struct('>i').pack
  /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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
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/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/llvm/lib/IR/
Function.cpp 541 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct, 0));
547 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Struct,StructElts));
617 case IITDescriptor::Struct: {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_struct.py 4 import struct namespace
19 struct.pack('q', 5)
20 except struct.error:
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
53 self.assertRaises(struct.error, struct.calcsize, 'Z')
55 sz = struct.calcsize('i'
    [all...]

Completed in 839 milliseconds

1 2 3 4