HomeSort by relevance Sort by last modified time
    Searched defs:seen (Results 51 - 75 of 635) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 49 /** list of move-result-pesudo instructions seen in this method */
52 /** list of invoke-range instructions seen in this method */
55 /** list of phi instructions seen in this method */
924 BitSet seen = new BitSet(ssaMeth.getRegCount()); local
    [all...]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 1300 SmallPtrSet<const MachineBasicBlock*, 8> seen; local
    [all...]
  /external/strace/
net.c 329 bool seen = false; local
336 if (seen)
339 seen = true;
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
JDK15TagFactory.java 424 Set<String> seen = new HashSet<>(Lists.newArrayList(strings)); local
426 if (! seen.contains(s)) {
  /external/v8/test/cctest/
test-regexp.cc 611 bool seen[kLimit]; local
612 for (unsigned i = 0; i < kLimit; i++) seen[i] = false;
615 CHECK_EQ(seen[k], tree.Find(k, &loc)); \
620 if (seen[next]) {
621 // We've already seen this one. Check the value and remove
628 seen[next] = false;
637 seen[next] = true;
641 if (seen[val]) {
648 if (seen[val]) {
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
AccessPoint.java 82 * of BSSIDs on which that network is seen.
282 long seen = 0; local
284 if (result.timestamp > seen) {
285 seen = result.timestamp;
289 return seen;
432 // Add RSSI/band information for this config, what was seen up to 6 seconds ago
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 87 * @see UIProvider.ConversationColumns#SEEN
89 public boolean seen; field in class:Conversation
187 dest.writeInt(seen ? 1 : 0);
213 seen = (in.readInt() != 0);
289 seen = cursor.getInt(UIProvider.CONVERSATION_SEEN_COLUMN) != 0;
328 seen = other.seen;
351 boolean seen, boolean starred, FolderList rawFolders, int convFlags, int personalLevel,
367 this.seen = seen;
    [all...]
Message.java 165 * @see UIProvider.MessageColumns#SEEN
167 public boolean seen; field in class:Message
401 seen = cursor.getInt(UIProvider.MESSAGE_SEEN_COLUMN) != 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 1073 Set<String> seen = new HashSet<String>(); local
    [all...]
  /system/sepolicy/tools/
check_seapp.c 688 bool seen[KVP_NUM_OF_RULES]; local
691 seen[i] = false;
722 if (seen[j]) {
726 seen[j] = true;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ErrorManager.java 630 Set seen = (Set)emitSingleError.get("danglingState"); local
631 if ( !seen.contains(d.dfa.decisionNumber+"|"+d.getAltSet()) ) {
633 // we've seen this decision and this alt set; never again
634 seen.add(d.dfa.decisionNumber+"|"+d.getAltSet());
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
localtime.c 1870 int seen[TZ_MAX_TYPES]; local
    [all...]
  /frameworks/base/core/java/android/view/
AccessibilityInteractionController.java 894 HashSet<AccessibilityNodeInfo> seen = new HashSet<AccessibilityNodeInfo>(); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkPolicyManagerServiceTest.java 533 final LinkedHashSet<Long> seen = new LinkedHashSet<Long>(); local
540 assertUnique(seen, nextCycle);
548 final LinkedHashSet<Long> seen = new LinkedHashSet<Long>(); local
555 assertUnique(seen, lastCycle);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 309 Set<Node> seen = new HashSet<Node>(); local
314 if (seen.contains(parent)) {
317 seen.add(parent);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java 227 Set<String> seen = null; local
229 seen = new HashSet<String>();
255 assert seen != null && seen.add(id) : id;
    [all...]
  /bionic/libc/tzcode/
localtime.c 2083 char seen[TZ_MAX_TYPES]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationChooser.java     [all...]
  /toolchain/binutils/binutils-2.25/binutils/
objdump.c 124 bfd_boolean seen; /* A flag to indicate that the section has been found in one or more input files. */ member in struct:only
376 only->seen = TRUE;
398 only->seen = FALSE;
405 Only do this if none of the sections were seen. This is mainly to support
421 if (only->seen)
    [all...]
  /external/valgrind/helgrind/
hg_main.c 3559 Word seen = 0; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_argparse.py 1428 seen = {} variable in class:RFile
1511 seen = set() variable in class:WFile
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_argparse.py 1428 seen = {} variable in class:RFile
1511 seen = set() variable in class:WFile
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_argparse.py 1428 seen = {} variable in class:RFile
1511 seen = set() variable in class:WFile
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_argparse.py 1428 seen = {} variable in class:RFile
1511 seen = set() variable in class:WFile
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/3.0.0/
findbugs-3.0.0.jar 

Completed in 1508 milliseconds

1 23 4 5 6 7 8 91011>>