/external/deqp/framework/delibs/decpp/ |
deThreadSafeRingBuffer.hpp | 43 void pushFront (const T& elem); 44 bool tryPushFront (const T& elem); 49 void pushFrontInternal (const T& elem); 79 inline void ThreadSafeRingBuffer<T>::pushFrontInternal (const T& elem) 81 m_buffer[m_front] = elem; 94 void ThreadSafeRingBuffer<T>::pushFront (const T& elem) 98 pushFrontInternal(elem); 104 bool ThreadSafeRingBuffer<T>::tryPushFront (const T& elem) 111 pushFrontInternal(elem); 123 T elem = popBackInternal() local [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_resolve_map.c | 86 intel_resolve_map_remove(struct intel_resolve_map *elem) 88 if (elem->prev) 89 elem->prev->next = elem->next; 90 if (elem->next) 91 elem->next->prev = elem->prev; 92 free(elem);
|
/libcore/luni/src/main/java/libcore/reflect/ |
ListOfVariables.java | 25 void add (TypeVariable<?> elem) { 26 array.add(elem);
|
/cts/tools/utils/ |
android_api_description_splitter.py | 97 for elem in elemlist:
98 elem = self.__trimElem(elem)
99 self.__generateFile(elem)
103 def __trimElem(self, elem):
105 for child in elem.childNodes:
111 elem.removeChild(child)
117 return elem
120 def __generateFile(self, elem):
123 filename = os.path.join(self.out, elem.getAttribute("name").replace(".", "_").lower() + ".xml") [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/ |
means_yuvx_444_2d_to_1d.rs | 42 yuvx_444 elem = { py, pu, pv }; 44 LOGD("elem", elem); 46 sum.x += elem.x; 47 sum.y += elem.y; 48 sum.z += elem.z; 69 yuvx_444 elem = rsGetElementAt_yuvx_444(mInput, src_x + i, src_y + x); 71 LOGD("elem", elem); 73 sum.x += elem.x [all...] |
/external/strace/ |
strace-graph | 252 for $elem (@$seq) { 253 if ($$elem[0] eq 'EXEC') { 254 my $argv = $$elem[2]; 255 print "$$elem[0] $$elem[1] @$argv\n"; 256 } elsif ($$elem[0] eq 'FORK') { 257 print "$$elem[0] $$elem[1]\n"; 259 print "$$elem[0]\n"; 268 for $elem (@$seq) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorTemplateElem.java | 59 ElemTemplateElement elem = null; local 63 elem = (ElemTemplateElement) classObject.newInstance(); 65 elem.setDOMBackPointer(handler.getOriginatingNode()); 66 elem.setLocaterInfo(handler.getLocator()); 67 elem.setPrefixes(handler.getNamespaceSupport()); 78 setPropertiesFromAttributes(handler, rawName, attributes, elem); 79 appendAndPush(handler, elem); 93 * @param elem non-null reference to a the current template element. 99 StylesheetHandler handler, ElemTemplateElement elem) 106 parent.appendChild(elem); [all...] |
ProcessorText.java | 41 * @param elem non-null reference to a {@link org.apache.xalan.templates.ElemText}. 47 StylesheetHandler handler, ElemTemplateElement elem) 55 charProcessor.setXslTextElement((ElemText) elem); 59 parent.appendChild(elem); 60 elem.setDOMBackPointer(handler.getOriginatingNode());
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_xml_etree.py | 69 def serialize(elem, to_string=True, **options): 72 tree = ET.ElementTree(elem) 80 def summarize(elem): 81 if elem.tag == ET.Comment: 83 return elem.tag 86 return [summarize(elem) for elem in seq] 89 for elem in tree.iter(): 90 if elem.text: 91 elem.text = elem.text.replace("\r\n", "\n" [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_xml_etree.py | 69 def serialize(elem, to_string=True, **options): 72 tree = ET.ElementTree(elem) 80 def summarize(elem): 81 if elem.tag == ET.Comment: 83 return elem.tag 86 return [summarize(elem) for elem in seq] 89 for elem in tree.iter(): 90 if elem.text: 91 elem.text = elem.text.replace("\r\n", "\n" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_xml_etree.py | 69 def serialize(elem, to_string=True, **options): 72 tree = ET.ElementTree(elem) 80 def summarize(elem): 81 if elem.tag == ET.Comment: 83 return elem.tag 86 return [summarize(elem) for elem in seq] 89 for elem in tree.iter(): 90 if elem.text: 91 elem.text = elem.text.replace("\r\n", "\n" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_xml_etree.py | 69 def serialize(elem, to_string=True, **options): 72 tree = ET.ElementTree(elem) 80 def summarize(elem): 81 if elem.tag == ET.Comment: 83 return elem.tag 86 return [summarize(elem) for elem in seq] 89 for elem in tree.iter(): 90 if elem.text: 91 elem.text = elem.text.replace("\r\n", "\n" [all...] |
/device/google/contexthub/firmware/src/algos/ |
quat.c | 25 float Hx = R->elem[0][0]; 26 float My = R->elem[1][1]; 27 float Az = R->elem[2][2]; 33 q->x = copysignf(q->x, R->elem[1][2] - R->elem[2][1]); 34 q->y = copysignf(q->y, R->elem[2][0] - R->elem[0][2]); 35 q->z = copysignf(q->z, R->elem[0][1] - R->elem[1][0]); 53 R->elem[0][0] = 1.0f - sq_q2 - sq_q3 [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/ |
util.py | 101 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ' 107 for i, elem in enumerate(s): 108 if elem is NULL: 112 if s[j] == elem: 116 if other_elem == elem: 120 diff = _Mismatch(cnt_s, cnt_t, elem) 123 for i, elem in enumerate(t): 124 if elem is NULL: 128 if t[j] == elem: 131 diff = _Mismatch(0, cnt_t, elem) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/ |
util.py | 101 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ' 107 for i, elem in enumerate(s): 108 if elem is NULL: 112 if s[j] == elem: 116 if other_elem == elem: 120 diff = _Mismatch(cnt_s, cnt_t, elem) 123 for i, elem in enumerate(t): 124 if elem is NULL: 128 if t[j] == elem: 131 diff = _Mismatch(0, cnt_t, elem) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
util.py | 101 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ' 107 for i, elem in enumerate(s): 108 if elem is NULL: 112 if s[j] == elem: 116 if other_elem == elem: 120 diff = _Mismatch(cnt_s, cnt_t, elem) 123 for i, elem in enumerate(t): 124 if elem is NULL: 128 if t[j] == elem: 131 diff = _Mismatch(0, cnt_t, elem) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
util.py | 101 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ' 107 for i, elem in enumerate(s): 108 if elem is NULL: 112 if s[j] == elem: 116 if other_elem == elem: 120 diff = _Mismatch(cnt_s, cnt_t, elem) 123 for i, elem in enumerate(t): 124 if elem is NULL: 128 if t[j] == elem: 131 diff = _Mismatch(0, cnt_t, elem) [all...] |
/external/libxml2/python/tests/ |
build.py | 16 elem = root.newChild(None, "foo", "bar") variable 17 elem.setBase("http://example.com/imgs") 18 elem.setProp("img", "image.gif") 40 elem = root.children variable 41 if elem.name != "foo": 42 print("error rereading elem") 44 if elem.getBase(None) != "http://example.com/imgs": 47 if elem.prop("img") != "image.gif":
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
kernel_input.rs | 64 type elem = rsGetElementAt_##type(alloc, 0); \ 65 _RS_ASSERT(elem == initial_value_##type); \ 71 type elem = rsGetElementAt_##type(alloc, 0); \ 72 _RS_ASSERT(elem[0] == initial_value_##type[0]); \ 73 _RS_ASSERT(elem[1] == initial_value_##type[1]); \ 79 type elem = rsGetElementAt_##type(alloc, 0); \ 80 _RS_ASSERT(elem[0] == initial_value_##type[0]); \ 81 _RS_ASSERT(elem[1] == initial_value_##type[1]); \ 82 _RS_ASSERT(elem[2] == initial_value_##type[2]); \ 88 type elem = rsGetElementAt_##type(alloc, 0); [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/list/ |
transform.hpp | 19 # include <boost/preprocessor/tuple/elem.hpp> 32 # define BOOST_PP_LIST_TRANSFORM_O(d, odr, elem) BOOST_PP_LIST_TRANSFORM_O_D(d, BOOST_PP_TUPLE_ELEM(3, 0, odr), BOOST_PP_TUPLE_ELEM(3, 1, odr), BOOST_PP_TUPLE_ELEM(3, 2, odr), elem) 34 # define BOOST_PP_LIST_TRANSFORM_O(d, odr, elem) BOOST_PP_LIST_TRANSFORM_O_I(d, BOOST_PP_TUPLE_REM_3 odr, elem) 35 # define BOOST_PP_LIST_TRANSFORM_O_I(d, im, elem) BOOST_PP_LIST_TRANSFORM_O_D(d, im, elem) 38 # define BOOST_PP_LIST_TRANSFORM_O_D(d, op, data, res, elem) (op, data, (op(d, data, elem), res))
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/seq/ |
transform.hpp | 18 # include <boost/preprocessor/tuple/elem.hpp> 31 # define BOOST_PP_SEQ_TRANSFORM_O(s, state, elem) BOOST_PP_SEQ_TRANSFORM_O_IM(s, BOOST_PP_TUPLE_REM_3 state, elem) 32 # define BOOST_PP_SEQ_TRANSFORM_O_IM(s, im, elem) BOOST_PP_SEQ_TRANSFORM_O_I(s, im, elem) 34 # define BOOST_PP_SEQ_TRANSFORM_O(s, state, elem) BOOST_PP_SEQ_TRANSFORM_O_I(s, BOOST_PP_TUPLE_ELEM(3, 0, state), BOOST_PP_TUPLE_ELEM(3, 1, state), BOOST_PP_TUPLE_ELEM(3, 2, state), elem) 37 # define BOOST_PP_SEQ_TRANSFORM_O_I(s, op, data, res, elem) (op, data, res (op(s, data, elem)))
|
/hardware/qcom/audio/legacy/alsa_sound/ |
ALSAMixer.cpp | 83 elem(0), 90 snd_mixer_elem_t *elem; member in struct:android::mixer_info_t 180 for (snd_mixer_elem_t *elem = snd_mixer_first_elem(mMixer[i]); 181 elem; 182 elem = snd_mixer_elem_next(elem)) { 184 if (!snd_mixer_selem_is_active(elem)) 187 snd_mixer_selem_get_id(elem, sid); 192 if (info->elem == NULL && 194 hasVolume[i] (elem)) { [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
jquery.js | 98 var match, elem, ret, doc; 140 elem = document.getElementById( match[2] ); 144 if ( elem && elem.parentNode ) { 147 if ( elem.id !== match[2] ) { 153 this[0] = elem; 272 return this.pushStack( jQuery.map(this, function( elem, i ) { 273 return callback.call( elem, i, elem ); 575 nodeName: function( elem, name ) [all...] |
/external/chromium-trace/catapult/third_party/jquery/ |
jquery-2.1.4.js | 143 return this.pushStack( jQuery.map(this, function( elem, i ) { 144 return callback.call( elem, i, elem ); 340 nodeName: function( elem, name ) { 341 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); 419 inArray: function( elem, arr, i ) { 420 return arr == null ? -1 : indexOf.call( arr, elem, i ); 615 indexOf = function( list, elem ) { 619 if ( list[i] === elem ) { [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
UVector32.java | 29 public void setElementAt(int elem, int index) { buffer[index] = elem; } 30 public void insertElementAt(int elem, int index) { 33 buffer[index] = elem;
|