Searched defs:representation (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/v8/test/cctest/
H A Dgay-shortest.h36 const char* representation; member in struct:v8::internal::PrecomputedShortest
H A Dgay-fixed.h37 const char* representation; member in struct:v8::internal::PrecomputedFixed
H A Dgay-precision.h37 const char* representation; member in struct:v8::internal::PrecomputedPrecision
H A Dtest-bignum-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
270 CHECK_EQ(current_test.representation, buffer.start());
291 CHECK_EQ(current_test.representation, buffer.start());
313 CHECK_EQ(current_test.representation, buffer.start());
H A Dtest-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
282 CHECK_EQ(current_test.representation, buffer.start());
305 CHECK_EQ(current_test.representation, buffer.start());
329 CHECK_EQ(current_test.representation, buffer.start());
H A Dtest-fast-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
249 CHECK_EQ(current_test.representation, buffer.start());
284 CHECK_EQ(current_test.representation, buffer.start());
288 // success rate than for the shortest representation.
/external/v8/test/cctest/
H A Dgay-shortest.h36 const char* representation; member in struct:v8::internal::PrecomputedShortest
H A Dgay-fixed.h37 const char* representation; member in struct:v8::internal::PrecomputedFixed
H A Dgay-precision.h37 const char* representation; member in struct:v8::internal::PrecomputedPrecision
H A Dtest-bignum-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
270 CHECK_EQ(current_test.representation, buffer.start());
291 CHECK_EQ(current_test.representation, buffer.start());
313 CHECK_EQ(current_test.representation, buffer.start());
H A Dtest-dtoa.cc46 static void TrimRepresentation(Vector<char> representation) { argument
47 int len = StrLength(representation.start());
50 if (representation[i] != '0') break;
52 representation[i + 1] = '\0';
282 CHECK_EQ(current_test.representation, buffer.start());
305 CHECK_EQ(current_test.representation, buffer.start());
329 CHECK_EQ(current_test.representation, buffer.start());
H A Dtest-fast-dtoa.cc21 static void TrimRepresentation(Vector<char> representation) { argument
22 int len = StrLength(representation.start());
25 if (representation[i] != '0') break;
27 representation[i + 1] = '\0';
224 CHECK_EQ(current_test.representation, buffer.start());
259 CHECK_EQ(current_test.representation, buffer.start());
263 // success rate than for the shortest representation.
/external/stlport/test/unit/
H A Dbitset_test.cpp67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); local
68 CPPUNIT_ASSERT( representation == "1000100010001" );
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java309 // * representation. Both trinomial (TPB) and pentanomial (PPB) polynomial
311 // * representation is not supported.
318 // * Indicates gaussian normal basis representation (GNB). Number chosen
324 // * Indicates trinomial basis representation (TPB). Number chosen
330 // * Indicates pentanomial basis representation (PPB). Number chosen
338 // private int representation;
398 // this.representation = TPB;
412 // this.representation = PPB;
459 // * (having the same representation).
465 // * representation)
797 private int representation; field in class:ECFieldElement.F2m
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_icon_image.cc27 // the image representation, the default icon's representation for the
34 // - The image will be updated with an appropriate image representation when
35 // the |ImageLoader| finishes. The image representation is chosen the same
37 // change, unless the added image representation is transparent (in which
39 // representation).
117 gfx::ImageSkiaRep representation; local
119 representation = host_->LoadImageForScaleFactor(scale_factor);
121 if (!representation.is_null())
122 return representation;
[all...]
H A Dextension_icon_image_unittest.cc53 // |GetImageForScale| simply returns image representation from the image given
242 // Gets representation for a scale factor.
243 gfx::ImageSkiaRep representation = local
246 // Before the image representation is loaded, image should contain blank
247 // image representation.
249 representation.sk_bitmap(),
256 representation = image.image_skia().GetRepresentation(ui::SCALE_FACTOR_100P);
258 // We should get the right representation now.
259 EXPECT_TRUE(gfx::BitmapsAreEqual(representation.sk_bitmap(), bitmap_16));
260 EXPECT_EQ(16, representation
303 gfx::ImageSkiaRep representation = local
343 gfx::ImageSkiaRep representation = local
378 gfx::ImageSkiaRep representation = local
420 gfx::ImageSkiaRep representation = local
463 gfx::ImageSkiaRep representation = local
503 gfx::ImageSkiaRep representation = local
547 gfx::ImageSkiaRep representation = local
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-bce.cc54 if (!check->index()->representation().IsSmiOrInteger32()) return NULL;
152 ASSERT(new_check->index()->representation().IsSmiOrInteger32());
165 new_check->index()->representation(),
181 new_check->index()->representation(),
258 Representation representation,
265 new_offset, representation);
269 (*add)->AssumeRepresentation(representation);
254 BuildOffsetAdd(HBoundsCheck* check, HInstruction** add, HConstant** constant, HValue* original_value, Representation representation, int32_t new_offset) argument
H A Dproperty-details.h182 Representation representation,
186 | RepresentationField::encode(EncodeRepresentation(representation))
194 PropertyDetails CopyWithRepresentation(Representation representation) { argument
195 return PropertyDetails(value_, representation);
207 static uint8_t EncodeRepresentation(Representation representation) { argument
208 return representation.kind();
225 Representation representation() { function in class:v8::internal::BASE_EMBEDDED
265 PropertyDetails(int value, Representation representation) { argument
267 value, EncodeRepresentation(representation));
180 PropertyDetails(PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
H A Dproperty.h88 Representation representation,
92 details_(attributes, type, representation, field_index) { }
103 Representation representation)
105 FIELD, representation, field_index) {}
208 return value->FitsRepresentation(details_.representation());
259 Representation representation() { function in class:v8::internal::BASE_EMBEDDED
263 return details_.representation();
84 Descriptor(Name* key, Object* value, PropertyAttributes attributes, PropertyType type, Representation representation, int field_index = 0) argument
100 FieldDescriptor(Name* key, int field_index, PropertyAttributes attributes, Representation representation) argument
H A Dlithium.h556 Representation representation,
559 if (representation.IsSmiOrTagged()) {
555 AddValue(LOperand* operand, Representation representation, bool is_uint32) argument
H A Dserialize.cc1665 HowToCode representation = rinfo->IsCodedSpecially() ? kFromCode : kPlain; local
1666 serializer_->SerializeObject(*current, representation, kStartOfObject, skip);
1692 int representation = rinfo->IsCodedSpecially() ? local
1694 sink_->Put(kExternalReference + representation, "ExternalRef");
1708 int representation; local
1711 representation = kStartOfObject + kFromCode;
1713 representation = kStartOfObject + kPlain;
1715 sink_->Put(kExternalReference + representation, "ExternalReference");
H A Dstub-cache.cc278 Representation representation) {
282 representation);
293 compiler.CompileLoadField(receiver, holder, name, field, representation);
395 Representation representation) {
400 representation);
411 compiler.CompileLoadField(receiver, holder, name, field, representation);
1603 Representation representation) {
1608 GenerateLoadField(reg, holder, field, representation);
1681 interceptor_reg, holder, field, lookup->representation());
1689 reg, holder, field, lookup->representation());
274 ComputeLoadField(Handle<Name> name, Handle<JSObject> receiver, Handle<JSObject> holder, PropertyIndex field, Representation representation) argument
391 ComputeKeyedLoadField(Handle<Name> name, Handle<JSObject> receiver, Handle<JSObject> holder, PropertyIndex field, Representation representation) argument
1598 CompileLoadField( Handle<JSObject> object, Handle<JSObject> holder, Handle<Name> name, PropertyIndex field, Representation representation) argument
[all...]
/external/v8/src/
H A Dlithium.h480 void AddValue(LOperand* operand, Representation representation) { argument
482 if (representation.IsTagged()) {
H A Dserialize.cc1502 HowToCode representation = rinfo->IsCodedSpecially() ? kFromCode : kPlain; local
1503 serializer_->SerializeObject(*current, representation, kStartOfObject);
1527 int representation = rinfo->IsCodedSpecially() ? local
1529 sink_->Put(kExternalReference + representation, "ExternalRef");
1542 int representation; local
1545 representation = kStartOfObject + kFromCode;
1547 representation = kStartOfObject + kPlain;
1549 sink_->Put(kExternalReference + representation, "ExternalReference");
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h32 /// Class representing optional flags with location and representation
37 : representation(Representation), flag(false) {}
49 const char *toString() const { return representation; }
58 const char *representation; member in class:clang::analyze_format_string::OptionalFlag

Completed in 438 milliseconds

12