Searched refs:exact (Results 1 - 25 of 138) sorted by relevance

123456

/external/chromium_org/third_party/sqlite/src/test/
H A DmallocAll.test53 if {[lsearch -exact $EXCLUDE $tail]>=0} continue
54 if {[llength $INCLUDE]>0 && [lsearch -exact $INCLUDE $tail]<0} continue
H A Dasync.test66 if {[lsearch -exact $ASYNC_INCLUDE $tail]<0} continue
/external/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp68 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/
H A DInstructionOffsetMap.java58 public int getInstructionIndexAtCodeOffset(int codeOffset, boolean exact) { argument
61 if (exact) {
/external/chromium_org/third_party/skia/src/utils/
H A DSkInterpolator.cpp99 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/
H A DSBCompileUnit.cpp105 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/chromium_org/third_party/cython/src/Cython/Utility/
H A DFunctionArguments.c4 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) {
14 __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, const char *name, int exact) argument
46 __Pyx_RaiseArgtupleInvalid( const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found) argument
/external/skia/src/utils/
H A DSkInterpolator.cpp99 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/
H A DSkOperandIterpolator.cpp63 SkBool exact; local
64 Result result = timeToT(time, &T, &index, &exact);
69 if (exact)
/external/skia/src/animator/
H A DSkOperandIterpolator.cpp63 SkBool exact; local
64 Result result = timeToT(time, &T, &index, &exact);
69 if (exact)
/external/lldb/include/lldb/Symbol/
H A DCompileUnit.h215 /// @param[in] exact
230 bool exact,
366 /// @param[in] exact
392 bool exact,
/external/lldb/scripts/Python/interface/
H A DSBCompileUnit.i78 bool exact) const;
/external/chromium_org/third_party/re2/re2/
H A Dprefilter.cc225 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
584 (exact
[all...]
/external/regex-re2/re2/
H A Dprefilter.cc225 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
592 (exact
[all...]
/external/chromium_org/components/query_parser/
H A Dquery_parser.h43 // 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;
H A Dquery_parser.cc79 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/lldb/include/lldb/API/
H A DSBCompileUnit.h52 bool exact) const;
/external/lldb/source/Symbol/
H A DCompileUnit.cpp282 CompileUnit::FindLineEntry (uint32_t start_idx, uint32_t line, const FileSpec* file_spec_ptr, bool exact, LineEntry *line_entry_ptr) argument
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
313 ResolveSymbolContext( const FileSpec& file_spec, uint32_t line, bool check_inlines, bool exact, uint32_t resolve_scope, SymbolContextList &sc_list ) argument
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkInterpolator.h62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
/external/skia/include/utils/
H A DSkInterpolator.h62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp503 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/
H A Dantlr3baserecognizer.h223 ANTLR3_BOOLEAN exact);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters_neon.S10 @ Reference code in filters.c. Output is bit-exact.
/external/e2fsprogs/e2fsck/
H A Dmtrace.h178 __ptr_t exact; /* The address that malloc returned. */ member in struct:alignlist
/external/lldb/source/Target/
H A DPlatform.cpp180 // First try exact arch matches across all platform plug-ins
181 bool exact = true; local
187 if (platform_sp && platform_sp->IsCompatibleArchitecture(arch, exact, platform_arch_ptr))
192 exact = false;
198 if (platform_sp && platform_sp->IsCompatibleArchitecture(arch, exact, platform_arch_ptr))
734 // Try for an exact architecture match first.

Completed in 1311 milliseconds

123456