/external/bzip2/ |
bzip.css | 13 a, a:link, a:visited, a:active { color: #336699; }
|
/external/chromium/chrome/browser/autocomplete/ |
history_contents_provider.h | 17 // the contents (body and/or title) of previously visited pages.
|
/external/chromium/chrome/browser/history/ |
history_indexer.idl | 20 // |time| - The last time at which user visited the page. The time is in UTC.
|
visitsegment_database.h | 20 // Tracks pages used for the most visited view.
|
/external/chromium/chrome/browser/ui/cocoa/ |
history_menu_bridge.h | 114 kMostVisitedSeparator = 400, // Separator before most visited section. 115 kMostVisitedTitle = 401, // Title of the most visited section. 116 kMostVisited = 420, // Used for all entries in the most visited section. 173 // most recently-visited sites.
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_quick_provider.h | 26 // results from recently or frequently visited sites in the profile's
|
/external/chromium_org/chrome/browser/history/ |
in_memory_url_index_cache.proto | 88 // this cache may include items that were visited after this date if
|
/external/chromium_org/chrome/browser/thumbnails/ |
thumbnail_service.h | 54 // next time it's visited.
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableColor.h | 57 // support a separate 'visited link' color (eg SVG properties). This is correct
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
LinkHash.h | 58 // base URL, and returns the hash of the string that will be used for visited
|
/external/chromium_org/tools/grit/grit/testdata/ |
quit_apps.html | 13 .c:visited {
|
/external/chromium_org/tools/perf/page_sets/ |
top_10.json | 58 "why": "#6 (Alexa) most visited worldwide,Picked an interesting page"
|
/external/clang/include/clang/AST/ |
ParentMap.h | 29 /// visited and updated or inserted but not the parents of S.
|
/external/llvm/lib/CodeGen/ |
ScheduleDAG.cpp | 502 Visited.resize(DAGSize); 527 Visited.reset(); 531 Shift(Visited, LowerBound, UpperBound); 554 Visited.set(SU->NodeNum); 565 if (!Visited.test(s) && Node2Index[s] < UpperBound) { 574 void ScheduleDAGTopologicalSort::Shift(BitVector& Visited, int LowerBound, 583 if (Visited.test(w)) { 585 Visited.reset(w); 625 Visited.reset();
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AnnotationTypeFilter.java | 30 * <code>AnnotationVisitor</code>, but only when the visited annotation has
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
AllAttributeVisitor.java | 60 * visited too.
|
/external/proguard/src/proguard/classfile/visitor/ |
ClassNameFilter.java | 30 * <code>ClassVisitor</code>, but only when the visited class has a name that
|
ClassPresenceFilter.java | 28 * the visited class file is present in a given <code>ClassPool</code> or not.
|
MemberClassAccessFilter.java | 28 * <code>MemberVisitor</code>, but only when the visited member is accessible
|
MemberDescriptorFilter.java | 29 * <code>MemberVisitor</code>, but only when the visited member
|
MemberNameFilter.java | 29 * <code>MemberVisitor</code>, but only when the visited member
|
/external/proguard/src/proguard/obfuscate/ |
MemberSpecialNameFilter.java | 28 * <code>MemberVisitor</code>, but only when the visited member has a
|
/external/proguard/src/proguard/optimize/ |
OptimizationInfoMemberFilter.java | 29 * <code>MemberVisitor</code>, but only when the visited member has optimization
|
/external/proguard/src/proguard/optimize/peephole/ |
PeepholeOptimizer.java | 64 * to indicate branch targets in the visited code.
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
codegen.cc | 12 void TraverseRecursively(std::set<sandbox::Instruction*>* visited, 14 if (visited->find(instruction) == visited->end()) { 15 visited->insert(instruction); 19 TraverseRecursively(visited, instruction->jf_ptr); 21 TraverseRecursively(visited, instruction->jt_ptr); 26 TraverseRecursively(visited, instruction->next); 227 std::set<Instruction*> visited; local 228 TraverseRecursively(&visited, instruction); 229 for (std::set<Instruction*>::const_iterator iter = visited.begin() [all...] |