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

1 2 3 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_al.py 2 """Whimpy test script for the al module
6 al = import_module('al', deprecated=True) variable
11 # This is a very unobtrusive test for the existence of the al module and all its
12 # attributes. More comprehensive examples can be found in Demo/al
15 # touch all the attributes of al without doing anything
17 print 'Touching al module attributes...'
21 getattr(al, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_al.py 2 """Whimpy test script for the al module
6 al = import_module('al', deprecated=True) variable
11 # This is a very unobtrusive test for the existence of the al module and all its
12 # attributes. More comprehensive examples can be found in Demo/al
15 # touch all the attributes of al without doing anything
17 print 'Touching al module attributes...'
21 getattr(al, attr)
  /external/chromium_org/v8/test/mjsunit/
apply.js 110 function al() { function
119 assertEquals(42 + j, al.apply(345, a));
127 al.apply(345, a);
  /external/embunit/src/
AssertImpl.c 62 int al; local
72 al = stdimpl_strlen(actual);
74 al = 4;
78 if (al > exp_act_limit) {
79 al = exp_act_limit;
82 int w = exp_act_limit + (exp_act_limit - al);
89 if (al > w) {
90 al = w;
96 stdimpl_strncat(buffer, actual, al);
  /external/linux-tools-perf/util/
build-id.c 26 struct addr_location al; local
37 event->ip.pid, event->ip.ip, &al);
39 if (al.map != NULL)
40 al.map->dso->hit = 1;
  /external/v8/test/mjsunit/
apply.js 110 function al() { function
119 assertEquals(42 + j, al.apply(345, a));
127 al.apply(345, a);
  /external/jmonkeyengine/engine/src/android/jme3test/android/
TestMovingParticle.java 76 AmbientLight al = new AmbientLight(); local
77 al.setColor(new ColorRGBA(0.84f, 0.80f, 0.80f, 1.0f));
78 rootNode.addLight(al);
TestNormalMapping.java 80 AmbientLight al = new AmbientLight(); local
81 al.setColor(new ColorRGBA(0.44f, 0.40f, 0.20f, 1.0f));
82 rootNode.addLight(al);
TestUnshadedModel.java 40 AmbientLight al = new AmbientLight(); local
41 al.setColor(ColorRGBA.White);
42 rootNode.addLight(al);
TestBumpModel.java 76 AmbientLight al = new AmbientLight(); local
77 al.setColor(new ColorRGBA(0.44f, 0.40f, 0.20f, 1.0f));
78 rootNode.addLight(al);
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestSSAO.java 73 AmbientLight al = new AmbientLight(); local
74 al.setColor(new ColorRGBA(1.8f, 1.8f, 1.8f, 1.0f));
76 rootNode.addLight(al);
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 64 private final CopyOnWriteArrayList<E> al; field in class:CopyOnWriteArraySet
70 al = new CopyOnWriteArrayList<E>();
81 al = new CopyOnWriteArrayList<E>();
82 al.addAllAbsent(c);
91 return al.size();
100 return al.isEmpty();
113 return al.contains(o);
133 return al.toArray();
178 return al.toArray(a);
186 al.clear()
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
KeyManagerImplTest.java 40 String al = km.chooseClientAlias(keyType, null, new Socket()); local
41 assertNull(al);
43 al = km.chooseEngineClientAlias(keyType, null, new SSLEngineImpl(null));
44 assertNull(al);
46 al = km.chooseEngineServerAlias("RSA", null, new SSLEngineImpl(null));
47 assertNull(al);
49 al = km.chooseServerAlias("RSA", null, new Socket());
50 assertNull(al);
67 String al = km.chooseClientAlias(keyType, null, new Socket()); local
68 assertEquals("ssl_test_store", al);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/material/
TestUnshadedModel.java 40 AmbientLight al = new AmbientLight(); local
41 al.setColor(ColorRGBA.White);
42 rootNode.addLight(al);
  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestSaveGame.java 79 AmbientLight al = new AmbientLight(); local
80 rootNode.addLight(al);
TestTextureAtlas.java 74 AmbientLight al = new AmbientLight(); local
75 rootNode.addLight(al);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_sqr.c 67 int max,al; local
76 al=a->top;
77 if (al <= 0)
88 max = 2 * al; /* Non-zero (from above) */
91 if (al == 4)
100 else if (al == 8)
112 if (al < BN_SQR_RECURSIVE_SIZE_NORMAL)
115 bn_sqr_normal(rr->d,a->d,al,t);
121 j=BN_num_bits_word((BN_ULONG)al);
124 if (al == j
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 138 Scalar al = C.row(i).dot(x) - f.coeff(i); local
139 if (al >= -1.0E-15)
  /external/openssl/crypto/bn/
bn_sqr.c 67 int max,al; local
76 al=a->top;
77 if (al <= 0)
88 max = 2 * al; /* Non-zero (from above) */
91 if (al == 4)
100 else if (al == 8)
112 if (al < BN_SQR_RECURSIVE_SIZE_NORMAL)
115 bn_sqr_normal(rr->d,a->d,al,t);
121 j=BN_num_bits_word((BN_ULONG)al);
124 if (al == j
    [all...]
  /external/apache-harmony/auth/src/test/java/common/javax/security/auth/x500/
X500PrivateCredentialTest.java 177 String al= cred.getAlias(); local
178 assertNull(al);
183 String al= cred.getAlias(); local
184 assertEquals("ALIAS", al);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java 35 AbstractList al = new ArrayList(); local
40 al.add(one);
41 al.add(two);
42 al.add(three);
43 al.add(four);
44 List sub = al.subList(1, 3);
50 al.remove(1); // remove the 2.0
65 AbstractList al = new ArrayList(); local
70 al.add(one);
71 al.add(two)
95 AbstractList al = new ArrayList(); local
125 AbstractList al = new ArrayList(); local
155 AbstractList al = new ArrayList(); local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_atomic_msvc.h 146 mov al, cmpv local
150 mov prev, al
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 26 AmbientLight al = new AmbientLight(); local
27 rootNode.addLight(al);
  /external/jmonkeyengine/engine/src/test/jme3test/scene/
TestSceneLoading.java 84 AmbientLight al = new AmbientLight(); local
85 scene.addLight(al);
  /external/linux-tools-perf/
builtin-annotate.c 52 struct addr_location *al)
58 (al->sym == NULL || strcmp(sym_hist_filter, al->sym->name) != 0)) {
60 if (al->sym != NULL) {
61 rb_erase(&al->sym->rb_node,
62 &al->map->dso->symbols[al->map->type]);
63 symbol__delete(al->sym);
68 he = __hists__add_entry(&evsel->hists, al, NULL, 1);
79 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr)
92 struct addr_location al; local
    [all...]

Completed in 384 milliseconds

1 2 3 4 5