HomeSort by relevance Sort by last modified time
    Searched full:weight (Results 101 - 125 of 2039) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/bipartite/
spectral.py 15 def spectral_bipartivity(G, nodes=None, weight='weight'):
25 weight : string or None optional (default = 'weight')
62 A = nx.to_numpy_matrix(G, nodelist, weight=weight)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/linalg/
laplacianmatrix.py 24 def laplacian_matrix(G, nodelist=None, weight='weight'):
39 weight : string or None, optional (default='weight')
41 If None, then each edge has weight 1.
63 A = np.asarray(nx.to_numpy_matrix(G,nodelist=nodelist,weight=weight))
79 wt = d.get(weight,1)
87 def normalized_laplacian_matrix(G, nodelist=None, weight='weight')
    [all...]
graphmatrix.py 21 oriented=False, weight=None):
48 weight : string or None, optional (default=None)
50 If None, then each edge has weight 1. Edge weights, if used,
94 if weight is None:
99 wt = G[u][v][ekey].get(weight,1)
101 wt = G[u][v].get(weight,1)
110 def adjacency_matrix(G, nodelist=None, weight='weight'):
122 weight : string or None, optional (default='weight')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/
permmap.py 134 weight = int(entry[2])
137 "{0}:{1}:Invalid permission weight: {2}".
140 if not self.min_weight <= weight <= self.max_weight:
142 "{0}:{1}:Permission weight must be {3}-{4}: {2}".
147 'weight': weight,
260 'weight': 1,
271 read_weight The type enforcement rule's read weight.
272 write_weight The type enforcement rule's write weight.
280 raise exception.RuleTypeError("{0} rules cannot be used for calculating a weight"
    [all...]
  /external/openfst/src/include/fst/
encode.h 52 // encoding and decoding of label/weight tuples used for encoding
59 typedef typename A::Weight Weight;
61 // Encoded data consists of arc input/output labels and arc weight
64 Tuple(Label ilabel_, Label olabel_, Weight weight_)
65 : ilabel(ilabel_), olabel(olabel_), weight(weight_) {}
67 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {}
71 Weight weight; member in struct:fst::EncodeTable::Tuple
    [all...]
string.h 40 typedef typename A::Weight Weight;
61 bool operator()(const string &s, F *fst, Weight w) const {
96 const Weight &weight = Weight::One()) const {
101 fst->AddArc(i, Arc(labels[i], labels[i], Weight::One(), i + 1));
103 fst->SetFinal(labels.size(), weight);
115 const Weight &weight = Weight::One()) const
    [all...]
weight.h 0 // weight.h
19 // General weight set and associated semiring operation definitions.
31 // A Weight class must have binary functions =Plus= and =Times= and
35 // In addition, the following should be defined for a Weight:
39 // >>: reads textual representation of a weight.
40 // <<: prints textual representation of a weight.
41 // Read(istream &strm): reads binary representation of a weight.
42 // Write(ostream &strm): writes binary representation of a weight.
43 // Hash: maps weight to size_t.
54 // ReverseWeight: the type of the corresponding reverse weight
    [all...]
randgen.h 40 // transition is selected. If N == NumArcs(), then the final weight at
50 typedef typename A::Weight Weight;
57 if (fst.Final(s) != Weight::Zero())
65 // log probabilities after normalizing for the total weight leaving
66 // the state. Weight::zero transitions are disregarded.
67 // Assumes Weight::Value() accesses the floating point
68 // representation of the weight.
73 typedef typename A::Weight Weight;
463 Weight weight = weighted_ ? to_weight_(-log(prob)) : Weight::One(); local
472 Weight weight = remove_total_weight_ ? local
    [all...]
equal.h 33 typedef typename Arc::Weight Weight;
56 Weight final1 = fst1.Final(s1);
57 Weight final2 = fst2.Final(s2);
89 } else if (!ApproxEqual(arc1.weight, arc2.weight, delta)) {
93 << ", weight1 = " << arc1.weight
94 << ", weight2 = " << arc2.weight;
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationWeights.java 75 * @param lowerLimit A collation element weight; the ranges will be filled to cover
77 * @param upperLimit A collation element weight; the ranges will be filled to cover
90 // printf("error: unable to get Weight ranges\n");
134 * @return The next weight in the ranges, or 0xffffffff if there is none left.
140 /* get the next weight */
142 long weight = range.start; local
147 /* increment the weight for the next value */
148 range.start = incWeight(weight, range.length);
152 return weight;
177 public static int lengthOfWeight(long weight) {
330 long weight=lowerLimit; local
    [all...]
  /external/openfst/src/include/fst/script/
shortest-distance.h 25 #include <fst/script/weight-class.h>
61 const vector<typename Arc::Weight> *) {
73 const vector<typename Arc::Weight> *distance) {
80 typename Arc::Weight>,
83 static NaturalShortestFirstQueue<typename Arc::StateId, typename Arc::Weight>
85 const vector<typename Arc::Weight> *distance) {
87 typename Arc::Weight>(*distance);
95 const Fst<Arc> &fst, const vector<typename Arc::Weight> *weights) {
106 vector<typename Arc::Weight> weights;
166 typedef typename Arc::Weight Weight
    [all...]
  /external/srtp/test/
lfsr.c 120 weight(uint32_t poly) { function
166 * weight distribution computes the weight distribution of the
203 /* increment weight */
241 /* compute weight, increment proper element */
242 A[weight(x)]++;
269 /* compute weight distribution */
272 /* print weight distribution */
282 /* compute weight distribution */
285 /* print weight distribution *
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/layout/
linear.jd 9 <li><a href="#Weight">Layout Weight</a></li>
36 <h2 id="Weight">Layout Weight</h2>
57 <em>weight</em> to individual children with the <a
61 terms of how much space is should occupy on the screen. A larger weight value allows it to expand
63 Child views can specify a weight value, and then any remaining space in the view group is
64 assigned to children in the proportion of their declared weight. Default
65 weight is zero.</p>
67 <p>For example, if there are three text fields and two of them declare a weight of 1, while th
    [all...]
  /external/dnsmasq/contrib/dnslist/
dhcp.css 10 font-weight: bold;
29 font-weight: bold;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
Weight.java 25 * Exercise table layout with cells having a weight.
27 public class Weight extends Activity {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/tests/
test_block.py 61 G[0][1]['weight']=1
62 G[1][2]['weight']=2
63 G[2][3]['weight']=3
64 G[3][4]['weight']=4
65 G[4][5]['weight']=5
70 assert_equal(M[0][1]['weight'],2)
71 assert_equal(M[1][2]['weight'],4)
96 assert_equal(M[0][1]['weight'],2)
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 35 font-weight: normal;
43 font-weight: bold;
66 font-weight: normal;
75 font-weight: normal;
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
dataurl-dbquote-font.css.min 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url("data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA") format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
dataurl-noquote-multiline-font.css.min 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url(data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA) format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
dataurl-singlequote-font.css.min 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url('data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA') format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/out/
dataurl-dbquote-font.out 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url("data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA") format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
dataurl-dbquote-font.out.b 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url("data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA") format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
dataurl-noquote-multiline-font.out 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url(data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA) format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
dataurl-noquote-multiline-font.out.b 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url(data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA) format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}
dataurl-singlequote-font.out 1 .y-ff-1{font-family:"Foo Bar",Helvetica,Arial;text-rendering:optimizeLegibility}.ua-op .y-ff-1{font-family:Helvetica,Arial}@font-face{font-family:"Foo Bar";src:url('data:font/truetype;base64,gRbIUFAIrsQNGditEWbAUKwAA') format("truetype"),url("http://yuilibrary.com/fonts/foo-bar.svg#webfontse22fewwr") format("svg");font-weight:normal;font-style:normal}

Completed in 1817 milliseconds

1 2 3 45 6 7 8 91011>>