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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/v8/test/mjsunit/
number-literal.js 22 test('overflow-inf-exact', '1.797693134862315808e+308', 'Infinity');
23 test('non-overflow-inf-exact', '1.797693134862315807e+308',
26 test('underflow-0-exact', '2.4703282292062E-324', '0');
27 test('non-underflow-0-exact', '2.4703282292063E-324', '5e-324');
  /external/chromium_org/third_party/sqlite/src/test/
mallocAll.test 53 if {[lsearch -exact $EXCLUDE $tail]>=0} continue
54 if {[llength $INCLUDE]>0 && [lsearch -exact $INCLUDE $tail]<0} continue
async.test 66 if {[lsearch -exact $ASYNC_INCLUDE $tail]<0} continue
  /external/lldb/source/Breakpoint/
BreakpointResolverFileRegex.cpp 68 bool exact = false; local
74 start_idx = cu->FindLineEntry (start_idx, line_matches[i], NULL, exact, &line_entry);
77 exact = true;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
InstructionOffsetMap.java 58 public int getInstructionIndexAtCodeOffset(int codeOffset, boolean exact) {
61 if (exact) {
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 99 bool exact = true; local
113 exact = false;
119 if (exact) {
126 *exactPtr = exact;
186 SkBool exact; local
187 Result result = timeToT(time, &T, &index, &exact);
191 if (exact) {
  /external/lldb/source/API/
SBCompileUnit.cpp 105 const bool exact = true; local
106 return FindLineEntryIndex (start_idx, line, inline_file_spec, exact);
110 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec, bool exact) const
127 exact,
  /external/lldb/include/lldb/Symbol/
CompileUnit.h 215 /// @param[in] exact
230 bool exact,
366 /// @param[in] exact
392 bool exact,
  /external/chromium_org/third_party/cython/src/Cython/Utility/
FunctionArguments.c 4 const char *name, int exact); /*proto*/
15 const char *name, int exact)
22 else if (exact) {
37 static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
48 int exact,
63 if (exact) {
  /external/skia/src/utils/
SkInterpolator.cpp 99 bool exact = true; local
113 exact = false;
119 if (exact) {
126 *exactPtr = exact;
186 SkBool exact; local
187 Result result = timeToT(time, &T, &index, &exact);
191 if (exact) {
  /external/chromium_org/third_party/skia/src/animator/
SkOperandIterpolator.cpp 63 SkBool exact; local
64 Result result = timeToT(time, &T, &index, &exact);
69 if (exact)
  /external/skia/src/animator/
SkOperandIterpolator.cpp 63 SkBool exact; local
64 Result result = timeToT(time, &T, &index, &exact);
69 if (exact)
  /external/lldb/scripts/Python/interface/
SBCompileUnit.i 78 bool exact) const;
  /external/chromium_org/third_party/re2/re2/
prefilter.cc 225 set<string>& exact() { return exact_; } function in class:re2::Prefilter::Info
235 // are placed in exact_. When it is no longer an exact
301 // Concats a and b. Requires that both are exact sets.
302 // Forms an exact set that is a crossproduct of a and b.
319 // Used only when a or b is not exact or when the
320 // exact cross product is likely to be too big.
374 // Constructs Info for a+ given a. If a was exact set, it isn't
578 // Exact is concat of recent contiguous exact nodes.
580 Info* exact = NULL local
    [all...]
  /external/regex-re2/re2/
prefilter.cc 225 set<string>& exact() { return exact_; } function in class:re2::Prefilter::Info
235 // are placed in exact_. When it is no longer an exact
309 // Concats a and b. Requires that both are exact sets.
310 // Forms an exact set that is a crossproduct of a and b.
327 // Used only when a or b is not exact or when the
328 // exact cross product is likely to be too big.
382 // Constructs Info for a+ given a. If a was exact set, it isn't
586 // Exact is concat of recent contiguous exact nodes.
588 Info* exact = NULL local
    [all...]
  /external/chromium_org/components/query_parser/
query_parser.h 43 // Returns true if this node matches |word|. If |exact| is true, the string
45 virtual bool Matches(const base::string16& word, bool exact) const = 0;
query_parser.cc 79 virtual bool Matches(const base::string16& word, bool exact) const OVERRIDE;
113 bool QueryNodeWord::Matches(const base::string16& word, bool exact) const {
114 if (exact || !QueryParser::IsWordLongEnoughForPrefixSearch(word_))
163 virtual bool Matches(const base::string16& word, bool exact) const OVERRIDE;
212 bool QueryNodeList::Matches(const base::string16& word, bool exact) const {
  /external/chromium_org/third_party/skia/include/utils/
SkInterpolator.h 62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
  /external/lldb/include/lldb/API/
SBCompileUnit.h 52 bool exact) const;
  /external/skia/include/utils/
SkInterpolator.h 62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
  /external/lldb/source/Symbol/
CompileUnit.cpp 282 CompileUnit::FindLineEntry (uint32_t start_idx, uint32_t line, const FileSpec* file_spec_ptr, bool exact, LineEntry *line_entry_ptr)
305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr);
318 bool exact,
367 line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_indexes.front(), line, exact, &line_entry);
369 // If "exact == true", then "found_line" will be the same
370 // as "line". If "exact == false", the "found_line" will be the
372 // we will use this for our subsequent line exact matches below.
398 line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_indexes, line, exact, &line_entry);
400 // If "exact == true", then "found_line" will be the same
401 // as "line". If "exact == false", the "found_line" will be th
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 484 or is an exact match for some defined option. If they have an
630 int exact = 0;
638 /* Test all long options for either exact match
646 /* Exact match found. */
649 exact = 1;
663 if (ambig && !exact)
786 int exact = 0;
825 /* Test all long options for either exact match
832 /* Exact match found. */
835 exact = 1
627 int exact = 0; local
783 int exact = 0; local
    [all...]
  /device/htc/flounder/audio/soundtrigger/
Android.mk 18 # device specific modules are present. The exact load order can be seen in
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 503 of 32768/25200 instead of the exact value to avoid critical cases
534 FIXP_SGL exact, temp; local
538 exact = (FIXP_SGL)(stop << (FRACT_BITS-8)); /* Shift left to gain some accuracy */
542 exact = FX_DBL2FX_SGL(fMult(exact,bandfactor));
546 temp = exact + FL2FXCONST_SGL(128.0/32768.0);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 223 ANTLR3_BOOLEAN exact);

Completed in 1162 milliseconds

1 2 3 4 5 6 7 8 910