/external/selinux/policycoreutils/restorecond/ |
H A D | stringslist.c | 58 int strings_list_find(struct stringsList *ptr, const char *string, int *exact) argument 61 *exact = strcmp(ptr->string, string) == 0;
|
H A D | watch.c | 122 int exact=0; local 123 if (strings_list_find(ptr->files, file, &exact) == 0) {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
H A D | InstructionOffsetMap.java | 58 public int getInstructionIndexAtCodeOffset(int codeOffset, boolean exact) { argument 61 if (exact) {
|
/external/lldb/source/Breakpoint/ |
H A D | 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/e2fsprogs/e2fsck/ |
H A D | mtrace.h | 178 __ptr_t exact; /* The address that malloc returned. */ member in struct:alignlist
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
H A D | stw_ext_pixelformat.c | 270 BOOL exact; member in struct:attrib_match_info 349 if (ami->exact) { 350 /* For an exact match criteria, if the actual and expected values differ, 390 * points for a mismatch when the match does not have to be exact. 391 * Set a score to 0 if there is a mismatch for an exact match criteria.
|
/external/skia/src/animator/ |
H A D | SkOperandIterpolator.cpp | 63 SkBool exact; local 64 Result result = timeToT(time, &T, &index, &exact); 69 if (exact)
|
/external/bison/lib/ |
H A D | getopt.c | 328 or is an exact match for some defined option. If they have an 494 int exact = 0; 502 /* Test all long options for either exact match 512 exact = 1; 534 if (ambig_list != NULL && !exact) 841 int exact = 0; 905 /* Test all long options for either exact match 915 exact = 1; 931 if (ambig && !exact) 490 int exact = 0; local 837 int exact = 0; local
|
/external/lldb/source/API/ |
H A D | 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,
|
H A D | SBThread.cpp | 856 const bool exact = false; local 862 exact,
|
/external/lldb/source/Symbol/ |
H A D | CompileUnit.cpp | 282 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...] |
H A D | LineTable.cpp | 294 bool exact, 328 else if (!exact) 347 LineTable::FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, uint32_t line, bool exact, LineEntry* line_entry_ptr) argument 376 else if (!exact) 289 FindLineEntryIndexByFileIndex( uint32_t start_idx, const std::vector<uint32_t> &file_indexes, uint32_t line, bool exact, LineEntry* line_entry_ptr ) argument
|
/external/skia/src/utils/ |
H A D | SkInterpolator.cpp | 98 bool exact = true; local 112 exact = false; 118 if (exact) { 125 *exactPtr = exact; 185 SkBool exact; local 186 Result result = timeToT(time, &T, &index, &exact); 190 if (exact) {
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
H A D | BaseRecognizer.java | 391 * You don't want the exact set of viable next tokens because the 486 * we have the call chain. We may compute the exact (rather 518 * You want the exact viable token set when recovering from a 528 // what is exact? it seems to only add sets from above on stack 532 protected BitSet combineFollows(boolean exact) { argument 542 if ( exact ) {
|
/external/regex-re2/re2/ |
H A D | 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 592 (exact [all...] |
/external/aac/libSBRdec/src/ |
H A D | 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/src/ |
H A D | antlr3baserecognizer.c | 61 static pANTLR3_BITSET combineFollows (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_BOOLEAN exact); 801 /// You don't want the exact set of viable next tokens because the 900 /// we have the call chain. We may compute the exact (rather 932 /// You want the exact viable token set when recovering from a 947 combineFollows (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_BOOLEAN exact) argument 967 if (exact == ANTLR3_TRUE)
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | BaseRecognizer.cs | 418 * You don't want the exact set of viable next tokens because the 515 * we have the call chain. We may compute the exact (rather 547 * You want the exact viable token set when recovering from a 557 // what is exact? it seems to only add sets from above on stack 561 protected virtual BitSet CombineFollows(bool exact) { argument 571 if (exact) {
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
H A D | BaseRecognizer.cs | 488 * You don't want the exact set of viable next tokens because the 586 * we have the call chain. We may compute the exact (rather 618 * You want the exact viable token set when recovering from a 629 // what is exact? it seems to only add sets from above on stack 633 protected virtual BitSet CombineFollows(bool exact) argument 645 if ( exact )
|
/external/lldb/source/Target/ |
H A D | Platform.cpp | 180 // 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.
|
/external/lldb/source/Commands/ |
H A D | CommandObjectThread.cpp | 1040 const bool exact = false; local 1041 index_ptr = sc.comp_unit->FindLineEntry(index_ptr, line_number, sc.comp_unit, exact, &line_entry);
|
/external/toybox/lib/ |
H A D | xwrap.c | 340 // if exact, require last path component to exist 341 char *xabspath(char *path, int exact) argument 386 if ((exact || todo) && errno != EINVAL) goto error; 393 if (fd == -1 && (exact || todo || errno != ENOENT)) goto error;
|
/external/webp/src/demux/ |
H A D | demux.c | 607 // If 'exact' is true, check that the image resolution matches the canvas. 608 // If 'exact' is false, check that the x/y offsets do not exceed the canvas. 611 static int CheckFrameBounds(const Frame* const frame, int exact, argument 613 if (exact) {
|
/external/elfutils/src/src/ |
H A D | elflint.c | 3390 enum { unused, exact, atleast, exact_or_gnuld } attrflag; enumerator in enum:__anon4699::__anon4700 3396 { ".bss", 5, SHT_NOBITS, exact, SHF_ALLOC | SHF_WRITE, 0 }, 3398 { ".data", 6, SHT_PROGBITS, exact, SHF_ALLOC | SHF_WRITE, 0 }, 3399 { ".data1", 7, SHT_PROGBITS, exact, SHF_ALLOC | SHF_WRITE, 0 }, 3401 { ".debug", 6, SHT_PROGBITS, exact, 0, 0 }, 3403 { ".dynstr", 8, SHT_STRTAB, exact, SHF_ALLOC, 0 }, 3404 { ".dynsym", 8, SHT_DYNSYM, exact, SHF_ALLOC, 0 }, 3405 { ".fini", 6, SHT_PROGBITS, exact, SHF_ALLOC | SHF_EXECINSTR, 0 }, 3406 { ".fini_array", 12, SHT_FINI_ARRAY, exact, SHF_ALLOC | SHF_WRITE, 0 }, 3408 { ".hash", 6, SHT_HASH, exact, SHF_ALLO [all...] |
/external/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 640 CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches) argument 668 if (!exact && !command_sp) 670 // We will only get into here if we didn't find any exact matches. 851 // If we didn't find an exact match to the command string in the commands, look in 862 // If there wasn't an exact match then look for an inexact one in just the commands 956 const bool exact = false; local 957 CommandObjectSP cmd_obj_sp(GetCommandSP (cmd, include_aliases, exact, ®ular_matches));
|