HomeSort by relevance Sort by last modified time
    Searched refs:dash (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/clang/lib/Basic/
ObjCRuntime.cpp 44 // Look for the last dash.
45 std::size_t dash = input.rfind('-'); local
48 // version to be omitted, so if we see a dash not followed by a
50 if (dash != StringRef::npos && dash + 1 != input.size() &&
51 (input[dash+1] < '0' || input[dash+1] > '9')) {
52 dash = StringRef::npos;
57 StringRef runtimeName = input.substr(0, dash);
79 if (dash != StringRef::npos)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
mbo_getopt.c 47 static int dash = 0; /* have already seen the - */ local
57 if (!dash)
96 dash = 1;
100 if (!dash)
102 dash = 1;
109 dash = 0;
127 dash = 0;
148 dash = 0;
175 dash = 0;
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptLanguage.java 170 int dash = languageRange.indexOf('-'); local
171 if (dash>=0) {
172 return new Locale( languageRange.substring(0,dash), languageRange.substring(dash+1) );
  /external/iptables/extensions/
libipt_SAME.c 41 char *dash, *arg; local
48 dash = strchr(arg, '-');
50 if (dash)
51 *dash = '\0';
59 if (dash) {
60 ip = xtables_numeric_to_ipaddr(dash+1);
63 dash+1);
66 if (dash)
69 arg, dash+1);
libipt_DNAT.c 70 char *arg, *colon, *dash, *error; local
96 "Invalid port:port syntax - use dash\n");
98 dash = strchr(colon, '-');
99 if (!dash) {
106 maxport = atoi(dash + 1);
109 "Port `%s' not valid\n", dash+1);
126 dash = strchr(arg, '-');
127 if (colon && dash && dash > colon)
128 dash = NULL
    [all...]
libipt_SNAT.c 70 char *arg, *colon, *dash, *error; local
96 "Invalid port:port syntax - use dash\n");
98 dash = strchr(colon, '-');
99 if (!dash) {
106 maxport = atoi(dash + 1);
109 "Port `%s' not valid\n", dash+1);
126 dash = strchr(arg, '-');
127 if (colon && dash && dash > colon)
128 dash = NULL
    [all...]
libxt_iprange.c 77 char *dash; local
81 dash = strchr(arg, '-');
82 if (dash == NULL) {
88 *dash = '\0';
89 iprange_parse_spec(arg, dash + 1, range, family, optname);
92 "will never match\n", arg, dash + 1);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 217 int dash = -1; local
221 if (c == '-' && dash == -1) {
222 dash = offset;
229 if (dash != -1) {
230 rawContactId = string.substring(start, dash);
231 start = dash + 1;
  /external/dexmaker/src/main/java/com/google/dexmaker/
AppDataDirGuesser.java 83 int dash = potential.indexOf("-"); local
84 if (dash != -1) {
85 end = dash;
  /external/littlemock/src/com/google/testing/littlemock/
AppDataDirGuesser.java 98 int dash = potential.indexOf("-"); local
99 if (dash != -1) {
100 end = dash;
  /external/skia/tests/
DrawPathTest.cpp 190 SkAutoTUnref<SkDashPathEffect> dash(
235 SkDashPathEffect dash(intervals, 2, 0);
240 paint.setPathEffect(&dash);
248 // Limit extreme dash path effects to avoid exhausting the system memory.
255 SkDashPathEffect dash(intervals, 2, 0);
259 paint.setPathEffect(&dash);
263 REPORTER_ASSERT(reporter, !dash.filterPath(&filteredPath, path, &rec, NULL));
  /external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 26 # 1 => "--" for em-dashes; no en-dash support
87 # 2 : set all, using old school en- and em- dash shortcuts
88 # 3 : set all, using inverted old school en and em- dash shortcuts
111 # Do everything, turn all options on, use old school dash shorthand.
118 # Do everything, turn all options on, use inverted old school dash shorthand.
325 # reference to the subroutine to use for dash education, default to EducateDashes:
333 # use old smart dash shortcuts, "--" for en, "---" for em
441 &[mn]dash; | # named dash entities
469 &[mn]dash; | # named dash entitie
    [all...]
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 163 UnicodeString dash = UnicodeString("-"); local
164 en.setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, TRUE, dash);
167 if (dash != enCurrencyInsert) {
  /external/compiler-rt/lib/msan/
msan.cc 436 static const u32 dash = '-'; local
438 dash + (dash << 8) + (dash << 16) + (dash << 24);
  /external/chromium_org/third_party/icu/source/test/intltest/
tsdcfmsy.cpp 163 UnicodeString dash = UnicodeString("-"); local
164 en.setPatternForCurrencySpacing(DecimalFormatSymbols::kInsert, TRUE, dash);
167 if (dash != enCurrencyInsert) {
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 486 static bool lineDashSequenceIsValid(const Vector<float>& dash)
488 for (size_t i = 0; i < dash.size(); i++) {
489 if (!std::isfinite(dash[i]) || dash[i] < 0)
495 void CanvasRenderingContext2D::setLineDash(const Vector<float>& dash)
497 if (!lineDashSequenceIsValid(dash))
501 modifiableState().m_lineDash = dash;
502 // Spec requires the concatenation of two copies the dash list when the
504 if (dash.size() % 2)
505 modifiableState().m_lineDash.append(dash);
    [all...]
CanvasRenderingContext2D.idl 55 void setLineDash(sequence<float> dash);
  /bionic/libc/tzcode/
strftime.c 181 char *dash, char *zero) {
187 return dash;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
Util.java 268 int dash = MILESTONES[index].indexOf('-'); local
269 return MILESTONES[index].substring(dash+1);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
cmdline.py 184 def add_action(self, dash, dashdash, action_code):
186 option = self.add_option(dash, dashdash, action='callback',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
optparse.py 598 "must be of the form -x, (x any non-dash char)" % opt,
605 "must start with --, followed by non-dash" % opt,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
optparse.py 598 "must be of the form -x, (x any non-dash char)" % opt,
605 "must start with --, followed by non-dash" % opt,
    [all...]
  /external/chromium_org/ui/native_theme/
native_theme_base.cc 485 // Draw the checkmark / dash.
494 SkPath dash; local
495 dash.moveTo(skrect.x() + skrect.width() * 0.16,
497 dash.rLineTo(skrect.width() * 0.68, 0);
499 canvas->drawPath(dash, paint);
    [all...]
  /external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl 342 set dash ---------------------------------------------------------------
343 append dash ------------------------------------------------------------
349 lappend ln [string range $dash 1 $cw($col)]
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 470 android_lang, dash, region = locale.partition('-')

Completed in 1883 milliseconds

1 2 3