/external/apache-http/src/org/apache/http/message/ |
BasicHeaderValueFormatter.java | 162 * @param elem the header element to format 171 String formatHeaderElement(final HeaderElement elem, 176 return formatter.formatHeaderElement(null, elem, quote).toString(); 182 final HeaderElement elem, 184 if (elem == null) { 189 int len = estimateHeaderElementLen(elem); 196 buffer.append(elem.getName()); 197 final String value = elem.getValue(); 203 final int parcnt = elem.getParameterCount(); 207 formatNameValuePair(buffer, elem.getParameter(i), quote) [all...] |
/external/python/cpython2/Lib/ |
collections.py | 425 >>> for elem in 'shazam': # update counts from an iterable 426 ... c[elem] += 1 # by adding 1 to each element's count 560 for elem, count in iterable.iteritems(): 561 self[elem] = self_get(elem, 0) + count 566 for elem in iterable: 567 self[elem] = self_get(elem, 0) + 1 598 for elem, count in iterable.items(): 599 self[elem] = self_get(elem, 0) - coun [all...] |
/external/vulkan-validation-layers/ |
reg.py | 24 # elem - Element which (may) have 'api' and 'profile' 48 def matchAPIProfile(api, profile, elem): 52 if ('api' in elem.attrib): 55 elem.get('api') + "'") 56 elif (api != elem.get('api')): 59 if ('profile' in elem.attrib): 62 elem.get('profile') + "'") 63 elif (profile != elem.get('profile')): 73 # elem - etree Element for this feature 78 def __init__(self, elem) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
collections.py | 373 >>> for elem in 'shazam': # update counts from an iterable
374 ... c[elem] += 1 # by adding 1 to each element's count
493 for elem, count in iterable.iteritems():
494 self[elem] = self_get(elem, 0) + count
499 for elem in iterable:
500 self[elem] = self_get(elem, 0) + 1
523 for elem, count in iterable.items():
524 self[elem] = self_get(elem, 0) - count [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
collections.py | 399 >>> for elem in 'shazam': # update counts from an iterable 400 ... c[elem] += 1 # by adding 1 to each element's count 519 for elem, count in iterable.iteritems(): 520 self[elem] = self_get(elem, 0) + count 525 for elem in iterable: 526 self[elem] = self_get(elem, 0) + 1 549 for elem, count in iterable.items(): 550 self[elem] = self_get(elem, 0) - coun [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
collections.py | 399 >>> for elem in 'shazam': # update counts from an iterable 400 ... c[elem] += 1 # by adding 1 to each element's count 519 for elem, count in iterable.iteritems(): 520 self[elem] = self_get(elem, 0) + count 525 for elem in iterable: 526 self[elem] = self_get(elem, 0) + 1 549 for elem, count in iterable.items(): 550 self[elem] = self_get(elem, 0) - coun [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
collections.py | 399 >>> for elem in 'shazam': # update counts from an iterable 400 ... c[elem] += 1 # by adding 1 to each element's count 519 for elem, count in iterable.iteritems(): 520 self[elem] = self_get(elem, 0) + count 525 for elem in iterable: 526 self[elem] = self_get(elem, 0) + 1 549 for elem, count in iterable.items(): 550 self[elem] = self_get(elem, 0) - coun [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
collections.py | 399 >>> for elem in 'shazam': # update counts from an iterable 400 ... c[elem] += 1 # by adding 1 to each element's count 519 for elem, count in iterable.iteritems(): 520 self[elem] = self_get(elem, 0) + count 525 for elem in iterable: 526 self[elem] = self_get(elem, 0) + 1 549 for elem, count in iterable.items(): 550 self[elem] = self_get(elem, 0) - coun [all...] |
/frameworks/native/opengl/tools/glgen2/ |
glgen.py | 59 def parseProto(elem): 60 type = nonestr(elem.text) 62 for subelem in elem: 71 def parseParam(elem): 72 name = elem.find('name').text 73 declaration = ''.join(elem.itertext()) 122 rtype, fname = parseProto(cmd.elem.find('proto')) 123 params = [parseParam(p) for p in cmd.elem.findall('param')] 146 rtype, fname = parseProto(cmd.elem.find('proto')) 147 params = [parseParam(p) for p in cmd.elem.findall('param') [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
_heapqmodule.c | 293 PyObject *heap=NULL, *elem, *iterable, *sol, *it, *oldelem;
local 309 elem = PyIter_Next(it);
310 if (elem == NULL) {
316 if (PyList_Append(heap, elem) == -1) {
317 Py_DECREF(elem);
320 Py_DECREF(elem);
331 elem = PyIter_Next(it);
332 if (elem == NULL) {
338 cmp = cmp_lt(sol, elem);
340 Py_DECREF(elem);
462 PyObject *heap=NULL, *elem, *iterable, *los, *it, *oldelem; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
_heapqmodule.c | 294 PyObject *heap=NULL, *elem, *iterable, *sol, *it, *oldelem;
local 310 elem = PyIter_Next(it);
311 if (elem == NULL) {
317 if (PyList_Append(heap, elem) == -1) {
318 Py_DECREF(elem);
321 Py_DECREF(elem);
332 elem = PyIter_Next(it);
333 if (elem == NULL) {
339 cmp = cmp_lt(sol, elem);
341 Py_DECREF(elem);
463 PyObject *heap=NULL, *elem, *iterable, *los, *it, *oldelem; local [all...] |
/external/python/cpython2/Mac/BuildScript/scripts/ |
postflight.patch-profile | 37 for elem in `echo $P | tr ':' ' '` 39 if [ "${elem}" = "${PYTHON_ROOT}/bin" ]; then 42 elif [ "${elem}" = "/usr/bin" ]; then
|
/external/python/cpython2/Modules/ |
_heapqmodule.c | 298 PyObject *heap=NULL, *elem, *iterable, *sol, *it, *oldelem; local 314 elem = PyIter_Next(it); 315 if (elem == NULL) { 321 if (PyList_Append(heap, elem) == -1) { 322 Py_DECREF(elem); 325 Py_DECREF(elem); 336 elem = PyIter_Next(it); 337 if (elem == NULL) { 343 cmp = cmp_lt(sol, elem); 345 Py_DECREF(elem); 467 PyObject *heap=NULL, *elem, *iterable, *los, *it, *oldelem; local [all...] |
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/width/ |
trieval.go | 5 // elem is an entry of the width trie. The high byte is used to encode the type 8 type elem uint16 type 11 tagNeutral elem = iota << typeShift
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/text/width/ |
trieval.go | 5 // elem is an entry of the width trie. The high byte is used to encode the type 8 type elem uint16 type 11 tagNeutral elem = iota << typeShift
|
/prebuilts/ndk/r13/sources/third_party/vulkan/src/ |
reg.py | 24 # elem - Element which (may) have 'api' and 'profile' 48 def matchAPIProfile(api, profile, elem): 52 if ('api' in elem.attrib): 55 elem.get('api') + "'") 56 elif (api != elem.get('api')): 59 if ('profile' in elem.attrib): 62 elem.get('profile') + "'") 63 elif (profile != elem.get('profile')): 73 # elem - etree Element for this feature 78 def __init__(self, elem) [all...] |
/frameworks/rs/driver/ |
rsdMeshObj.cpp | 56 bool RsdMeshObj::isValidGLComponent(const Element *elem, uint32_t fieldIdx) { 59 RsDataType dt = elem->mHal.state.fields[fieldIdx]->mHal.state.dataType; 67 uint32_t arraySize = elem->mHal.state.fieldArraySizes[fieldIdx]; 82 const Element *elem = mRSMesh->mHal.state.vertexBuffers[ct]->getType()->getElement(); local 83 for (uint32_t ct=0; ct < elem->mHal.state.fieldsCount; ct++) { 84 if (isValidGLComponent(elem, ct)) { 105 const Element *elem = mRSMesh->mHal.state.vertexBuffers[ct]->getType()->getElement(); local 106 uint32_t stride = elem->mHal.state.elementSizeBytes; 107 for (uint32_t fieldI=0; fieldI < elem->mHal.state.fieldsCount; fieldI++) { 108 const Element *f = elem->mHal.state.fields[fieldI] [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/ |
sstack.c | 57 p->elem = e;
74 r = p->elem;
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorGlobalParamDecl.java | 41 * @param elem The non-null reference to the ElemParam element. 47 StylesheetHandler handler, ElemTemplateElement elem) 52 handler.pushElemTemplateElement(elem);
|
ProcessorGlobalVariableDecl.java | 41 * @param elem The non-null reference to the ElemVariable element. 47 StylesheetHandler handler, ElemTemplateElement elem) 52 handler.pushElemTemplateElement(elem);
|
/external/icu/icu4c/source/common/ |
uvectr32.h | 100 void addElement(int32_t elem, UErrorCode &status); 102 void setElementAt(int32_t elem, int32_t index); 104 void insertElementAt(int32_t elem, int32_t index, UErrorCode &status); 112 int32_t indexOf(int32_t elem, int32_t startIndex = 0) const; 114 UBool contains(int32_t elem) const; 161 void sortedInsert(int32_t elem, UErrorCode& ec); 228 inline void UVector32::addElement(int32_t elem, UErrorCode &status) { 230 elements[count] = elem;
|
/external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.nonmembers/ |
begin_end.pass.cpp | 55 for (auto& elem : it) { 56 TEST_CHECK(dir_contents.erase(elem) == 1);
|
/external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.nonmembers/ |
begin_end.pass.cpp | 55 for (auto& elem : it) { 56 TEST_CHECK(dir_contents.erase(elem) == 1);
|
/external/syslinux/core/fs/ntfs/ |
runlist.h | 55 struct runlist_element *elem) 59 n->run = *elem;
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug027.go | 16 elem []Element 22 v.elem = make([]Element, 10) 27 return v.elem[i] 31 v.elem[v.nelem] = e
|