HomeSort by relevance Sort by last modified time
    Searched refs:dflt (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /external/desugar/test/java/com/google/devtools/build/android/desugar/
DesugarJava8FunctionalTest.java 415 assertThat(new DefaultMethodFromSeparateJava8Target().dflt()).isEqualTo("dflt");
416 assertThat(new DefaultMethodTransitivelyFromSeparateJava8Target().dflt()).isEqualTo("dflt");
417 assertThat(new DefaultMethodFromSeparateJava8TargetOverridden().dflt()).isEqualTo("override");
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
keymap-dump.c 366 (!(action->dflt.flags & ACTION_ABSOLUTE_SWITCH) && action->dflt.value >= 0) ? "+" : "",
367 action->dflt.value);
action.c 119 info->actions[ACTION_TYPE_PTR_DEFAULT].dflt.flags = 0;
120 info->actions[ACTION_TYPE_PTR_DEFAULT].dflt.value = 1;
516 struct xkb_pointer_default_action *act = &action->dflt;
  /external/u-boot/common/
fdt_support.c 27 * @dflt: default value if the property isn't found
33 const char *prop, const u32 dflt)
42 return dflt;
46 return dflt;
57 * @dflt: default value if the property isn't found
63 const char *prop, const u32 dflt)
69 return dflt;
71 return fdt_getprop_u32_default_node(fdt, off, 0, prop, dflt);
    [all...]
  /external/selinux/libsepol/src/
module_to_cil.c 1980 const char *dflt; local
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
BytecodeTypeInference.java 578 public void visitTableSwitchInsn(int min, int max, Label dflt, Label... labels) {
580 super.visitTableSwitchInsn(min, max, dflt, labels);
584 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
586 super.visitLookupSwitchInsn(dflt, keys, labels);
  /external/freetype/src/autofit/
afstyles.h 81 STYLE_LATIN( s, S, dflt, DFLT, ds, \
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 335 private int getIndex(String value, int start, int dflt) {
337 return dflt;
340 return value.length() - start < 3 ? dflt : Integer.parseInt(value.substring(start + 1,
343 return dflt;
    [all...]
  /external/libxkbcommon/xkbcommon/src/
keymap.h 239 struct xkb_pointer_default_action dflt; member in union:xkb_action
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-tree-3.3.jar 
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX8664.cpp 62 #define X(val, dflt, swapS, C1, C2, swapV, pred) \
64 dflt, swapS, X8664::Traits::Cond::C1, X8664::Traits::Cond::C2, swapV, \
753 #define X(val, dflt, swapS, C1, C2, swapV, pred) _tmp_##val,
764 #define X(val, dflt, swapS, C1, C2, swapV, pred) \
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 735 * If nothing has explicitly been set, then return dflt.
737 private boolean getBooleanConfiguration(String key, boolean dflt) {
740 return dflt;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstrlib.c 429 goto dflt; /* no; go to default */
466 default: goto dflt;
470 default: dflt: { /* pattern class plus optional suffix */
  /external/tensorflow/tensorflow/core/grappler/clusters/
single_machine_test.cc 451 Tensor dflt(data_dtype, TensorShape({}));
452 dflt.flat<int64>()(0) = 456;
453 SetNodeAttr("value", dflt, default_value_node);
  /external/python/cpython3/Python/
bltinmodule.c 1109 PyObject *v, *result, *dflt = NULL; local
    [all...]
sysmodule.c 1266 PyObject *o, *dflt = NULL; local
    [all...]
  /external/guice/lib/build/
asm-6.0.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
expat.h 171 const XML_Char *dflt,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
expat.h 171 const XML_Char *dflt,
    [all...]
  /external/expat/lib/
expat.h 200 const XML_Char *dflt,
    [all...]
  /external/python/cpython2/Modules/expat/
expat.h 200 const XML_Char *dflt,
    [all...]
  /external/python/cpython3/Modules/expat/
expat.h 200 const XML_Char *dflt,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
bltinmodule.c 819 PyObject *v, *result, *dflt = NULL; local
822 if (!PyArg_UnpackTuple(args, "getattr", 2, 3, &v, &name, &dflt))
838 if (result == NULL && dflt != NULL &&
842 Py_INCREF(dflt);
843 result = dflt;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
bltinmodule.c 811 PyObject *v, *result, *dflt = NULL; local
814 if (!PyArg_UnpackTuple(args, "getattr", 2, 3, &v, &name, &dflt))
830 if (result == NULL && dflt != NULL &&
834 Py_INCREF(dflt);
835 result = dflt;
    [all...]
  /external/python/cpython2/Python/
bltinmodule.c 831 PyObject *v, *result, *dflt = NULL; local
834 if (!PyArg_UnpackTuple(args, "getattr", 2, 3, &v, &name, &dflt))
850 if (result == NULL && dflt != NULL &&
854 Py_INCREF(dflt);
855 result = dflt;
    [all...]

Completed in 1454 milliseconds

1 23 4 5