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

123

/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/mips/
H A Dlithium-mips.cc548 return graph_->LookupValue(operand->index())->representation();
835 if (instr->representation().IsTagged()) {
836 ASSERT(instr->left()->representation().IsTagged());
837 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble());
884 ASSERT(instr->right()->representation()
[all...]
/external/v8/src/x64/
H A Dlithium-x64.cc541 return graph_->LookupValue(operand->index())->representation();
830 if (instr->representation().IsTagged()) {
831 ASSERT(instr->left()->representation().IsTagged());
832 ASSERT(instr->right()->representation().IsTagged());
840 ASSERT(instr->representation().IsInteger32());
841 ASSERT(instr->left()->representation().IsInteger32());
842 ASSERT(instr->right()->representation().IsInteger32());
877 ASSERT(instr->representation().IsDouble());
878 ASSERT(instr->left()->representation().IsDouble());
879 ASSERT(instr->right()->representation()
[all...]
/external/v8/src/arm/
H A Dlithium-arm.cc548 return graph_->LookupValue(operand->index())->representation();
835 if (instr->representation().IsTagged()) {
836 ASSERT(instr->left()->representation().IsTagged());
837 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble());
884 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/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/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.ml11 * representation, the classes in the VMCore library.
/external/v8/src/ia32/
H A Dlithium-ia32.cc543 return graph_->LookupValue(operand->index())->representation();
834 if (instr->representation().IsTagged()) {
835 ASSERT(instr->left()->representation().IsTagged());
836 ASSERT(instr->right()->representation().IsTagged());
845 ASSERT(instr->representation().IsInteger32());
846 ASSERT(instr->left()->representation().IsInteger32());
847 ASSERT(instr->right()->representation().IsInteger32());
882 ASSERT(instr->representation().IsDouble());
883 ASSERT(instr->left()->representation().IsDouble());
884 ASSERT(instr->right()->representation()
[all...]
/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/clang/lib/include/
H A Dunwind.h106 _Unwind_VRS_DataRepresentation representation,
/external/clang/lib/Headers/
H A Dunwind.h106 _Unwind_VRS_DataRepresentation representation,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9Curve.java65 ASN1ObjectIdentifier 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/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas135 /// Returns a string representation of this IDictionary.
138 /// The string representation is a list of the collection's elements in the order
142 /// <param name="dict">Dictionary whose string representation will be returned</param>
143 /// <returns>A string representation of the specified dictionary or "null"</returns>
147 /// Returns a string representation of this IList.
150 /// The string representation is a list of the collection's elements in the order
154 /// <param name="coll">Collection whose string representation will be returned</param>
155 /// <returns>A string representation of the specified collection or "null"</returns>
/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/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/v8/src/
H A Dhydrogen-instructions.cc81 // The representation of the value is dictated by type feedback and
350 if (!other->representation().Equals(representation())) return false;
437 if (!representation().IsTagged() || type().Equals(HType::Tagged())) return;
852 if (!representation().IsInteger32()) return this;
870 if (!representation().IsInteger32()) return this;
877 if (!representation().IsInteger32()) return this;
1023 result->set_can_be_minus_zero(!representation().IsInteger32());
1054 if (representation().IsInteger32()) {
1072 if (representation()
[all...]

Completed in 632 milliseconds

123