HomeSort by relevance Sort by last modified time
    Searched defs:expand (Results 1 - 25 of 429) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/compiler/glsl/glcpp/tests/
037-finalize-unexpanded-macro.c 1 #define expand(x) expand(x once) macro
3 foo(expand(just))
  /external/scapy/scapy/layers/tls/crypto/
hkdf.py 32 def expand(self, prk, info, L): member in class:TLS13_HKDF
44 return self.expand(secret, hkdf_label, length)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
role.py 44 def expand(self): member in class:BaseRole
55 def expand(self): member in class:Role
mlsrule.py 90 def expand(self): member in class:MLSRule
91 """Expand the rule into an equivalent set of rules without attributes."""
92 for s, t in itertools.product(self.source.expand(), self.target.expand()):
rbacrule.py 103 def expand(self): member in class:RoleAllow
104 """Expand the rule into an equivalent set of rules without attributes."""
105 for s, t in itertools.product(self.source.expand(), self.target.expand()):
133 def expand(self): member in class:RoleTransition
134 """Expand the rule into an equivalent set of rules without attributes."""
135 for s, t in itertools.product(self.source.expand(), self.target.expand()):
rule.py 90 def expand(self): member in class:PolicyRule
91 """Expand the rule into an equivalent set of rules without attributes."""
typeattr.py 93 def expand(self): member in class:BaseType
115 def expand(self): member in class:Type
149 for type_ in self.expand():
155 def expand(self): member in class:TypeAttribute
  /toolchain/binutils/binutils-2.27/include/opcode/
i860.h 35 /* Nonzero if this is a possible expand-instruction. */
36 char expand; member in struct:i860_opcode
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/docs/apidoc/
epydoc.js 92 function expand(id) { function
125 s += "<a href='#' onclick='expand(\"" + id;
136 expand(id);
180 expand(id);
184 expand(id);
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/docs/apidoc/
epydoc.js 92 function expand(id) { function
125 s += "<a href='#' onclick='expand(\"" + id;
136 expand(id);
180 expand(id);
184 expand(id);
  /external/eigen/Eigen/src/SparseLU/
SparseLU_Memory.h 54 * Expand the existing storage to accomodate more fill-ins
55 * \param vec Valid pointer to the vector to allocate or expand
58 * \param keep_prev 1: use length and do not expand the vector; 0: compute new_len and expand
63 Index SparseLUImpl<Scalar,StorageIndex>::expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions) function in class:Eigen::internal::SparseLUImpl
78 //Allocate or expand the current vector
180 if( (expand<ScalarVector>(glu.lusup, glu.nzlumax, 0, 0, num_expansions)<0)
181 || (expand<ScalarVector>(glu.ucol, glu.nzumax, 0, 0, num_expansions)<0)
182 || (expand<IndexVector> (glu.lsub, glu.nzlmax, 0, 0, num_expansions)<0)
183 || (expand<IndexVector> (glu.usub, glu.nzumax, 0, 1, num_expansions)<0)
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/cache/
SegmentBenchmark.java 30 * Benchmark for {@code LocalCache.Segment.expand()}.
59 segment.expand();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
ChildTextElement.java 37 String expand() { method in class:ChildTextElement
TextElement.java 29 abstract String expand(); method in class:TextElement
TokenTextElement.java 44 String expand() { method in class:TokenTextElement
  /external/libunwind/src/mi/
mempool.c 105 expand (struct mempool *pool) function
150 expand (pool);
162 expand (pool);
  /external/valgrind/none/tests/amd64/
pcmpxstrx64.c 25 void expand ( V128* dst, char* summary ) function
47 expand( &argL, summL );
48 expand( &argR, summR );
pcmpxstrx64w.c 26 void expand ( V128* dst, char* summary ) function
48 expand( &argL, summL );
49 expand( &argR, summR );
  /external/volley/src/main/java/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 37 * to this instance, the underlying byte array will expand.
46 * expand.
71 private void expand(int i) { method in class:PoolingByteArrayOutputStream
72 /* Can the buffer handle @i more bytes, if not expand it */
84 expand(len);
90 expand(1);
  /libcore/ojluni/src/main/java/sun/security/util/
PropertyExpander.java 33 * A utility class to expand properties embedded in a string.
53 public static String expand(String value) method in class:PropertyExpander
56 return expand(value, false);
59 public static String expand(String value, boolean encodeURL) method in class:PropertyExpander
83 // do not expand ${{ ... }}
125 "unable to expand property " +
133 // no more to expand. copy in any extra
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
interactive.go 57 for _, input := range shortcuts.expand(input) {
134 // shortcuts represents composite commands that expand into a sequence
138 func (a shortcuts) expand(input string) []string { func
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
interactive.go 57 for _, input := range shortcuts.expand(input) {
134 // shortcuts represents composite commands that expand into a sequence
138 func (a shortcuts) expand(input string) []string { func
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 61 private void expand(int newlen) { method in class:ByteArrayBuffer
80 expand(newlen);
89 expand(newlen);
109 expand(newlen);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
Selection.java 118 // expand start and end to word breaks--if they are not already on one
119 public void expand(BreakIterator breaker) { method in class:Selection
  /external/webrtc/webrtc/modules/audio_coding/neteq/
expand_unittest.cc 11 // Unit tests for Expand class.
13 #include "webrtc/modules/audio_coding/neteq/expand.h"
27 TEST(Expand, CreateAndDestroy) {
34 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
37 TEST(Expand, CreateUsingFactory) {
45 Expand* expand = expand_factory.Create(&bgn, &sync_buffer, &random_vector, local
47 EXPECT_TRUE(expand != NULL);
48 delete expand;
    [all...]

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011>>