Searched refs:representation (Results 1 - 25 of 49) sorted by relevance

12

/external/v8/test/cctest/
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 Dgay-shortest.h36 const char* representation; member in struct:v8::internal::PrecomputedShortest
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-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.
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());
/external/v8/src/ia32/
H A Dlithium-ia32.cc513 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());
823 ASSERT(instr->right()->representation()
[all...]
/external/v8/src/x64/
H A Dlithium-x64.cc514 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());
824 ASSERT(instr->right()->representation()
[all...]
/external/v8/src/arm/
H A Dlithium-arm.cc521 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());
829 ASSERT(instr->right()->representation()
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDataSource.mm71 id <WebDocumentRepresentation> representation;
101 [representation release];
127 - (void)_setRepresentation:(id<WebDocumentRepresentation>)representation
129 [_private->representation release];
130 _private->representation = [representation retain];
231 [[self representation] finishedLoadingWithDataSource:self];
239 [[self representation] receivedData:data withDataSource:self];
249 [[self representation] receivedError:error withDataSource:self];
363 if (![[self representation] isKindOfClas
[all...]
H A DWebDataSource.h46 representation of the data. WebDataSources manage a hierarchy of WebFrames.
72 @method representation
73 @discussion A representation holds a type specific representation
74 of the datasource's data. The representation class is determined by mapping
75 a MIME type to a class. The representation is created once the MIME type
77 @result Returns the representation associated with this datasource.
78 Returns nil if the datasource hasn't created it's representation.
80 - (id <WebDocumentRepresentation>)representation;
/external/bouncycastle/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/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.ml11 * representation, the classes in the VMCore library.
/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/skia/tests/
H A DPDFPrimitivesTest.cpp27 const std::string& representation,
30 REPORTER_ASSERT(reporter, directSize == representation.size());
35 REPORTER_ASSERT(reporter, memcmp(buffer.getStream(), representation.c_str(),
59 representation.c_str(), directSize) == 0);
26 CheckObjectOutput(skiatest::Reporter* reporter, SkPDFObject* obj, const std::string& representation, bool indirect) argument
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
H A DX9Curve.java65 DERObjectIdentifier representation
71 if (representation.equals(tpBasis))
73 // Trinomial basis representation
79 // Pentanomial basis representation
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebDataSource.idl53 representation of the data. WebDataSources manage a hierarchy of WebFrames.
83 @method representation
84 @discussion A representation holds a type specific representation
85 of the datasource's data. The representation class is determined by mapping
86 a MIME type to a class. The representation is created once the MIME type
88 @result Returns the representation associated with this datasource.
89 Returns nil if the datasource hasn't created it's representation.
90 - (id <WebDocumentRepresentation>)representation;
92 HRESULT representation([ou
[all...]
/external/llvm/bindings/ocaml/target/
H A Dllvm_target.mli24 (** [TargetData.create rep] parses the target data string representation [rep].
34 (** [as_string td] is the string representation of the target data [td].
/external/webkit/Source/WebKit/win/
H A DWebDataSource.h59 virtual HRESULT STDMETHODCALLTYPE representation(
/external/v8/src/
H A Dhydrogen-instructions.cc297 if (!other->representation().Equals(representation())) return false;
321 ASSERT(value == NULL || !value->representation().IsNone());
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()) {
834 if (representation().IsInteger32()) {
850 if (representation()
[all...]
H A Ddeoptimizer.h540 SlotRef(Address addr, SlotRepresentation representation)
541 : addr_(addr), representation_(representation) { }
H A Dlithium.h466 void AddValue(LOperand* operand, Representation representation) { argument
468 representations_.Add(representation);
/external/llvm/bindings/ocaml/analysis/
H A Dllvm_analysis.mli10 (** Intermediate representation analysis.
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
H A DWebKitSystemInterface.h182 CFURLRequestRef wkCFURLRequestCreateFromSerializableRepresentation(CFDictionaryRef representation, CFTypeRef tokenNull);
184 CFURLResponseRef wkCFURLResponseCreateFromSerializableRepresentation(CFDictionaryRef representation, CFTypeRef tokenNull);
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h30 /// Class representing optional flags with location and 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

Completed in 2519 milliseconds

12