HomeSort by relevance Sort by last modified time
    Searched full:dflt (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
commandlineflags.h 126 inline const char* const EnvToString(const char* envname, const char* dflt) {
130 return dflt;
133 inline bool EnvToBool(const char* envname, bool dflt) {
138 return dflt;
141 inline int EnvToInt(const char* envname, int dflt) {
145 return dflt;
148 inline int64 EnvToInt64(const char* envname, int64 dflt) {
152 return dflt;
155 inline double EnvToDouble(const char* envname, double dflt) {
159 return dflt;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
commandlineflags.h 116 #define EnvToString(envname, dflt) \
117 (!getenv(envname) ? (dflt) : getenv(envname))
119 #define EnvToBool(envname, dflt) \
120 (!getenv(envname) ? (dflt) : memchr("tTyY1\0", getenv(envname)[0], 6) != NULL)
122 #define EnvToInt(envname, dflt) \
123 (!getenv(envname) ? (dflt) : strtol(getenv(envname), NULL, 10))
125 #define EnvToInt64(envname, dflt) \
126 (!getenv(envname) ? (dflt) : strtoll(getenv(envname), NULL, 10))
128 #define EnvToDouble(envname, dflt) \
129 (!getenv(envname) ? (dflt) : strtod(getenv(envname), NULL)
    [all...]
  /external/iproute2/tc/
q_dsmark.c 35 int dflt,set_tc_index; local
38 dflt = -1;
51 dflt = strtoul(*argv,&end,0);
74 if (dflt != -1) {
75 __u16 tmp = dflt;
  /external/harfbuzz_ng/test/api/
test-ot-tag.c 77 g_assert_cmphex (HB_TAG_CHAR4 ("DFLT"), ==, HB_OT_TAG_DEFAULT_SCRIPT);
85 test_simple_tags ("DFLT", HB_SCRIPT_INVALID);
179 g_assert_cmphex (HB_TAG_CHAR4 ("dflt"), ==, HB_OT_TAG_DEFAULT_LANGUAGE);
180 test_language_two_way ("dflt", NULL);
215 test_tag_from_language ("dflt", "asdf-asdf-wer-x-hbot-zxc");
217 test_tag_from_language ("dflt", "xy");
  /external/chromium_org/chrome/renderer/extensions/
logging_native_handler.cc 91 const std::string& dflt) {
93 return dflt;
95 return ascii_value.empty() ? dflt : ascii_value;
logging_native_handler.h 50 const std::string& dflt);
  /external/openssh/
dispatch.c 61 dispatch_init(dispatch_fn *dflt)
65 dispatch[i] = dflt;
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 146 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
166 public void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) {
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 342 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
344 mParentVisitor.visitLookupSwitchInsn(dflt, keys, labels);
356 public void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) {
358 mParentVisitor.visitTableSwitchInsn(min, max, dflt, labels);
DelegateMethodAdapter2.java 427 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
429 mOrgWriter.visitLookupSwitchInsn(dflt, keys, labels);
441 public void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) {
443 mOrgWriter.visitTableSwitchInsn(min, max, dflt, labels);
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
MethodSourcer.java 216 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) {
242 public void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) {
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout.cc 208 /* try finding 'DFLT' */
212 /* try with 'dflt'; MS site has had typos and many fonts use it now :(.
246 /* try finding 'DFLT' */
253 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
313 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
hb-ot-shape-complex-private.hh 303 /* If the designer designed the font for the 'DFLT' script,
345 /* If the designer designed the font for the 'DFLT' script,
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 202 /* try finding 'DFLT' */
206 /* try with 'dflt'; MS site has had typos and many fonts use it now :(.
240 /* try finding 'DFLT' */
247 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
307 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
hb-ot-shape-complex-private.hh 287 /* If the designer designed the font for the 'DFLT' script,
329 /* If the designer designed the font for the 'DFLT' script,
  /external/emma/core/java12/com/vladium/util/
IProperties.java 45 String getProperty (String key, String dflt);
137 public String getProperty (final String key, final String dflt)
156 return value != null ? value : dflt;
  /external/junit/src/junit/runner/
BaseTestRunner.java 256 public static int getPreference(String key, int dflt) {
258 int intValue= dflt;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 160 items = map(lambda arg, dflt: arg + dflt, real_args, defaults)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 160 items = map(lambda arg, dflt: arg + dflt, real_args, defaults)
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 543 private static String getReportProperty (final IProperties properties, final String type, final String key, final boolean allowBlank, final String dflt)
548 final String result = properties.getProperty (IReportProperties.PREFIX.concat (type).concat (".").concat (key), dflt);
551 return dflt;
  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/netinet/
tcp.h 149 #define TTCP_CLIENT_SND_WND 4096 /* dflt send window for T/TCP client */
  /external/chromium_org/third_party/libxslt/libxslt/
namespaces.c 677 xmlNsPtr dflt;
678 dflt = xmlSearchNs(cur->doc, cur, NULL);
679 if (dflt != NULL)
680 URI = dflt->href;
  /external/libxslt/libxslt/
namespaces.c 677 xmlNsPtr dflt;
678 dflt = xmlSearchNs(cur->doc, cur, NULL);
679 if (dflt != NULL)
680 URI = dflt->href;
  /external/qemu/slirp/
tcp_timer.h 96 #define TCPTV_KEEP_IDLE (120*60*PR_SLOWHZ) /* dflt time before probing */
  /external/qemu/slirp-android/
tcp_timer.h 96 #define TCPTV_KEEP_IDLE (120*60*PR_SLOWHZ) /* dflt time before probing */

Completed in 1708 milliseconds

1 2 3 4 5