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

1 2 3 4 5

  /hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
LocalLogBuffer.cpp 60 void LocalLogBuffer::FunctionLog::addArg(string kw, string arg) {
62 mSSArgs << kw << "=" << arg;
65 void LocalLogBuffer::FunctionLog::addArg(string kw, vector<string> args) {
67 mSSArgs << kw << "=["; local
76 void LocalLogBuffer::FunctionLog::addArg(string kw, uint64_t arg) {
78 mSSArgs << kw << "=" << arg;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_functoolsmodule.c 96 PyObject *kw; member in struct:__anon4377
104 partial_new(PyTypeObject *type, PyObject *args, PyObject *kw)
131 pto->kw = NULL;
135 pto->kw = (kw != NULL) ? PyDict_Copy(kw) : PyDict_New();
136 if (pto->kw == NULL) {
156 Py_XDECREF(pto->kw);
162 partial_call(partialobject *pto, PyObject *args, PyObject *kw)
169 assert (pto->kw == Py_None || PyDict_Check(pto->kw));
291 PyObject *fn, *fnargs, *kw, *dict; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_functoolsmodule.c 96 PyObject *kw; member in struct:__anon4687
104 partial_new(PyTypeObject *type, PyObject *args, PyObject *kw)
131 pto->kw = NULL;
135 if (kw != NULL) {
136 pto->kw = PyDict_Copy(kw);
137 if (pto->kw == NULL) {
142 pto->kw = Py_None;
160 Py_XDECREF(pto->kw);
166 partial_call(partialobject *pto, PyObject *args, PyObject *kw)
295 PyObject *fn, *fnargs, *kw, *dict; local
    [all...]
threadmodule.c 267 PyObject *kw; member in struct:__anon4824
328 local_new(PyTypeObject *type, PyObject *args, PyObject *kw)
338 || (kw && PyObject_IsTrue(kw)))) {
350 Py_XINCREF(kw);
351 self->kw = kw;
384 Py_VISIT(self->kw);
394 Py_CLEAR(self->kw);
447 self->args, self->kw) < 0) {
    [all...]
  /external/libnl/python/netlink/
util.py 51 def kw(t): function
126 value = '{0} {1}'.format(kw(title_), value)
136 return kw(value)
  /external/python/cpython2/Mac/Modules/ibcarbon/
_IBCarbon.c 154 char *kw[] = {"itself", 0}; local
156 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, IBNibRefObj_Convert, &itself)) return NULL;
  /external/python/cpython2/Modules/
_functoolsmodule.c 96 PyObject *kw; member in struct:__anon32708
104 partial_new(PyTypeObject *type, PyObject *args, PyObject *kw)
134 pto->kw = (kw != NULL) ? PyDict_Copy(kw) : PyDict_New();
135 if (pto->kw == NULL) {
151 Py_XDECREF(pto->kw);
157 partial_call(partialobject *pto, PyObject *args, PyObject *kw)
164 assert (PyDict_Check(pto->kw));
179 if (PyDict_Size(pto->kw) == 0)
287 PyObject *fn, *fnargs, *kw, *dict; local
    [all...]
threadmodule.c 267 PyObject *kw; member in struct:__anon32882
328 local_new(PyTypeObject *type, PyObject *args, PyObject *kw)
340 if (rc == 0 && kw != NULL)
341 rc = PyObject_IsTrue(kw);
356 Py_XINCREF(kw);
357 self->kw = kw;
390 Py_VISIT(self->kw);
400 Py_CLEAR(self->kw);
453 self->args, self->kw) < 0)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
xsmm_conv2d_test.cc 46 int kw; member in struct:tensorflow::__anon39961::__anon39962
130 int kw = param->kw; local
140 LIBXSMM_VLA_DECL(4, const float, filter_t, filter, nIfm, kh, kw);
151 for (ki = 0; ki < kw; ++ki) {
158 kw);
196 int kw = 3; /* filter width, "S" */ local
213 int ofw = (ifw + 2 * pad_w - kw) / stride_w + 1;
227 nOfm * nIfm * kh * kw * sizeof(float), 2097152);
231 init_buf(naive_filter, nOfm * nIfm * kh * kw, 0, 0)
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
rclex.c 124 const struct rclex_keywords *kw = &keywds[0]; local
128 if (! strcmp (kw->name, key))
129 return kw->tok;
130 ++kw;
132 while (kw->name != NULL);
  /external/deqp/framework/common/
tcuFuzzyImageCompare.cpp 169 int kw = (int)kernelX.size(); local
180 for (int kx = 0; kx < kw; kx++)
182 float f = kernelX[kw-kx-1];
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationServiceTest.java 341 private static final String KW[] = {
352 String kw[] = Collator.getKeywords(); local
353 if (!assertTrue("getKeywords != null", kw!=null)) return;
354 checkArray("getKeywords", kw, KW);
356 String kwval[] = Collator.getKeywordValues(KW[0]);
361 ULocale equiv = Collator.getFunctionalEquivalent(KW[0],
370 equiv = Collator.getFunctionalEquivalent(KW[0],
379 equiv = Collator.getFunctionalEquivalent(KW[0], new ULocale("zh_Hans"));
387 String kw[] = Collator.getKeywords() local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationServiceTest.java 338 private static final String KW[] = {
349 String kw[] = Collator.getKeywords(); local
350 if (!assertTrue("getKeywords != null", kw!=null)) return;
351 checkArray("getKeywords", kw, KW);
353 String kwval[] = Collator.getKeywordValues(KW[0]);
358 ULocale equiv = Collator.getFunctionalEquivalent(KW[0],
367 equiv = Collator.getFunctionalEquivalent(KW[0],
376 equiv = Collator.getFunctionalEquivalent(KW[0], new ULocale("zh_Hans"));
384 String kw[] = Collator.getKeywords() local
    [all...]
  /external/python/cpython2/Mac/Modules/qdoffs/
_Qdoffsmodule.c 143 char *kw[] = {"itself", 0}; local
145 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, GWorldObj_Convert, &itself)) return NULL;
  /external/icu/icu4c/source/common/
locdispnames.cpp 645 const char* kw=uenum_next(kenum, &len, pErrorCode); local
646 if (kw == NULL) {
653 len = uloc_getDisplayKeyword(kw, displayLocale, p, cap, pErrorCode);
672 int32_t vlen = uloc_getDisplayKeywordValue(locale, kw, displayLocale,
    [all...]
locid.cpp 968 char *kw = keywords; local
970 while(*kw) {
972 kw += uprv_strlen(kw)+1;
uloc.cpp 143 "kv", "kw", "ky",
348 "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA",
419 /* "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", */
461 const char *value; /* keyword value, or NULL if kw==NULL */
520 const char *value; /* keyword value, or NULL if kw==NULL */
1541 char *kw = ((UKeywordsContext *)en->context)->keywords; local
    [all...]
  /external/python/cpython2/Mac/Modules/cm/
_Cmmodule.c 272 char *kw[] = {"itself", 0}; local
274 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CmpInstObj_Convert, &itself)) return NULL;
710 char *kw[] = {"itself", 0}; local
712 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CmpObj_Convert, &itself)) return NULL;
  /external/python/cpython2/Mac/Modules/osa/
_OSAmodule.c 805 char *kw[] = {"itself", 0}; local
807 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, OSAObj_Convert, &itself)) return NULL;
  /external/python/cpython3/Modules/
_threadmodule.c 645 PyObject *kw; member in struct:__anon33392
706 local_new(PyTypeObject *type, PyObject *args, PyObject *kw)
718 if (rc == 0 && kw != NULL)
719 rc = PyObject_IsTrue(kw);
734 Py_XINCREF(kw);
735 self->kw = kw;
768 Py_VISIT(self->kw);
778 Py_CLEAR(self->kw);
831 self->args, self->kw) < 0)
    [all...]
  /cts/hostsidetests/incident/src/com/android/server/cts/
BatteryStatsIncidentTest.java 204 for (SystemProto.KernelWakelock kw : s.getKernelWakelockList()) {
205 testTimerProto(kw.getTotal());
  /external/python/cpython2/Mac/Modules/ae/
_AEmodule.c 874 char *kw[] = {"itself", 0}; local
876 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, AEDesc_Convert, &itself)) return NULL;
    [all...]
  /external/python/cpython2/Mac/Modules/cg/
_CGmodule.c 1203 char *kw[] = {"itself", 0}; local
    [all...]
  /external/python/cpython2/Mac/Modules/dlg/
_Dlgmodule.c 965 char *kw[] = {"itself", 0}; local
967 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, DlgObj_Convert, &itself)) return NULL;
    [all...]
  /external/python/cpython2/Mac/Modules/drag/
_Dragmodule.c 750 char *kw[] = {"itself", 0}; local
752 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, DragObj_Convert, &itself)) return NULL;
    [all...]

Completed in 819 milliseconds

1 2 3 4 5