blob: 948046725d9d4f49f121a17b3761c5ab749d1ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
WebInspector.CSSCompletions = [];
WebInspector.CSSCompletions.startsWith = function(prefix)
{
var firstIndex = this._firstIndexOfPrefix(prefix);
if (firstIndex === -1)
return [];
var results = [];
while (this[firstIndex].indexOf(prefix) === 0)
results.push(this[firstIndex++]);
return results;
}
WebInspector.CSSCompletions.firstStartsWith = function(prefix)
{
var foundIndex = this._firstIndexOfPrefix(prefix);
return (foundIndex === -1 ? "" : this[foundIndex]);
}
WebInspector.CSSCompletions._firstIndexOfPrefix = function(prefix)
{
if (!prefix)
return -1;
if (!this.length)
return -1;
var maxIndex = this.length - 1;
var minIndex = 0;
var foundIndex;
do {
var middleIndex = (maxIndex + minIndex) >> 1;
if (this[middleIndex].indexOf(prefix) === 0) {
foundIndex = middleIndex;
break;
}
if (this[middleIndex] < prefix)
minIndex = middleIndex + 1;
else
maxIndex = middleIndex - 1;
} while (minIndex <= maxIndex);
if (!foundIndex)
return -1;
while (foundIndex && this[foundIndex - 1].indexOf(prefix) === 0)
foundIndex--;
return foundIndex;
}
WebInspector.CSSCompletions.next = function(str, prefix)
{
return WebInspector.CSSCompletions._closest(str, prefix, 1);
}
WebInspector.CSSCompletions.previous = function(str, prefix)
{
return WebInspector.CSSCompletions._closest(str, prefix, -1);
}
WebInspector.CSSCompletions._closest = function(str, prefix, shift)
{
if (!str)
return "";
var index = this.indexOf(str);
if (index === -1)
return "";
if (!prefix) {
index = (index + this.length + shift) % this.length;
return this[index];
}
var propertiesWithPrefix = this.startsWith(prefix);
var j = propertiesWithPrefix.indexOf(str);
j = (j + propertiesWithPrefix.length + shift) % propertiesWithPrefix.length;
return propertiesWithPrefix[j];
}
WebInspector.CSSCompletions._load = function(properties)
{
for (var i = 0; i < properties.length; ++i)
WebInspector.CSSCompletions.push(properties[i]);
WebInspector.CSSCompletions.sort();
}
|