HomeSort by relevance Sort by last modified time
    Searched refs:Representation (Results 1 - 21 of 21) sorted by null

  /external/v8/src/
hydrogen-instructions.h 254 class Representation {
265 Representation() : kind_(kNone) { }
267 static Representation None() { return Representation(kNone); }
268 static Representation Tagged() { return Representation(kTagged); }
269 static Representation Integer32() { return Representation(kInteger32); }
270 static Representation Double() { return Representation(kDouble);
    [all...]
hydrogen.cc 497 Representation::Tagged());
978 if (!value->representation().IsNone()) {
    [all...]
hydrogen-instructions.cc 56 const char* Representation::Mnemonic() const {
297 if (!other->representation().Equals(representation())) return false;
321 ASSERT(value == NULL || !value->representation().IsNone());
367 void HValue::ReplaceFirstAtUse(HValue* use, HValue* other, Representation r) {
469 if (representation().IsTagged() && !type().Equals(HType::Tagged())) {
772 if (representation().IsTagged()) {
778 } else if (representation().IsNone()) {
799 if (representation().IsInteger32()) {
817 if (representation().IsInteger32())
    [all...]
lithium.h 466 void AddValue(LOperand* operand, Representation representation) {
468 representations_.Add(representation);
500 ZoneList<Representation> representations_;
hydrogen.h 284 Representation to);
287 ZoneList<Representation>* rep_list);
781 void AssumeRepresentation(HValue* value, Representation r);
782 static Representation ToRepresentation(TypeInfo info);
    [all...]
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 44 typedef SmallVector<value_type, InitialCapacity> Representation;
45 Representation Rep;
72 typedef typename Representation::iterator iterator;
73 typedef typename Representation::const_iterator const_iterator;
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 438 : Representation(0), Buffer(0), BufferSize(0), BufferCapacity(0) { }
442 : Representation(Other.Representation), Buffer(0),
465 Representation = Other.Representation;
511 Representation = NestedNameSpecifier::Create(Context, Representation,
524 Representation = NestedNameSpecifier::Create(Context, Representation,
536 Representation = NestedNameSpecifier::Create(Context, Representation,
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 319 /// \brief The current representation of the nested-name-specifier we're
321 NestedNameSpecifier *Representation;
349 /// \brief Retrieve the representation of the nested-name-specifier.
350 NestedNameSpecifier *getRepresentation() const { return Representation; }
428 return NestedNameSpecifierLoc(Representation, Buffer).getSourceRange();
443 return NestedNameSpecifierLoc(Representation, Buffer);
449 Representation = 0;
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 32 class Representation {};
33 friend class Representation;
  /frameworks/base/core/java/android/net/
Uri.java 342 * Compares the string representation of this Uri with that of
350 * Returns the encoded string representation of this URI.
356 * Return a string representation of the URI that is safe to print
459 /** URI string representation. */
2073 int representation = parcel.readInt(); local
2258 int representation = parcel.readInt(); local
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 30 /// Class representing optional flags with location and representation
34 OptionalFlag(const char *Representation)
35 : representation(Representation), flag(false) {}
47 const char *toString() const { return representation; }
56 const char *representation; member in class:clang::analyze_format_string::OptionalFlag
  /external/v8/src/arm/
lithium-arm.cc 519 Representation LChunk::LookupLiteralRepresentation(
521 return graph_->LookupValue(operand->index())->representation();
805 if (instr->representation().IsInteger32()) {
806 ASSERT(instr->left()->representation().IsInteger32());
807 ASSERT(instr->right()->representation().IsInteger32());
813 ASSERT(instr->representation().IsTagged());
814 ASSERT(instr->left()->representation().IsTagged());
815 ASSERT(instr->right()->representation().IsTagged());
827 if (instr->representation().IsTagged()) {
828 ASSERT(instr->left()->representation().IsTagged())
    [all...]
lithium-codegen-arm.cc 316 Representation r = chunk_->LookupLiteralRepresentation(const_op);
353 Representation r = chunk_->LookupLiteralRepresentation(const_op);
    [all...]
lithium-arm.h     [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 511 Representation LChunk::LookupLiteralRepresentation(
513 return graph_->LookupValue(operand->index())->representation();
799 if (instr->representation().IsInteger32()) {
800 ASSERT(instr->left()->representation().IsInteger32());
801 ASSERT(instr->right()->representation().IsInteger32());
807 ASSERT(instr->representation().IsTagged());
808 ASSERT(instr->left()->representation().IsTagged());
809 ASSERT(instr->right()->representation().IsTagged());
821 if (instr->representation().IsTagged()) {
822 ASSERT(instr->left()->representation().IsTagged())
    [all...]
lithium-codegen-ia32.cc 296 Representation r = chunk_->LookupLiteralRepresentation(const_op);
    [all...]
lithium-ia32.h     [all...]
  /external/v8/src/x64/
lithium-x64.cc 512 Representation LChunk::LookupLiteralRepresentation(
514 return graph_->LookupValue(operand->index())->representation();
800 if (instr->representation().IsInteger32()) {
801 ASSERT(instr->left()->representation().IsInteger32());
802 ASSERT(instr->right()->representation().IsInteger32());
808 ASSERT(instr->representation().IsTagged());
809 ASSERT(instr->left()->representation().IsTagged());
810 ASSERT(instr->right()->representation().IsTagged());
822 if (instr->representation().IsTagged()) {
823 ASSERT(instr->left()->representation().IsTagged())
    [all...]
lithium-codegen-x64.cc     [all...]
lithium-x64.h     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 13 representation, the classes in the VMCore library. *)
24 (** The top-level container for all other LLVM Intermediate Representation (IR)
358 (** [dump_module m] prints the .ll representation of the module [m] to standard
580 (** [dump_value v] prints the .ll representation of the value [v] to standard
    [all...]

Completed in 876 milliseconds