Searched refs:esc (Results 1 - 25 of 26) sorted by relevance

12

/external/nanopb-c/tests/site_scons/
H A Dsite_init.py48 esc = env['ESCAPE']
49 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
51 dirs, env['MESSAGE'], esc(str(source[1])), esc(str(source[0])), esc(str(target[0])))
59 esc = env['ESCAPE']
60 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
62 dirs, env['MESSAGE'], esc(str(source[1])), esc(str(source[0])), esc(st
[all...]
/external/nanopb-c/tests/site_scons/site_tools/
H A Dnanopb.py93 esc = env['ESCAPE']
94 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
95 return '$PROTOC $PROTOCFLAGS %s --nanopb_out=. %s' % (dirs, esc(str(source[0])))
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssTokens.java831 char esc = css.charAt(pos + 1);
832 if (isLineTerminator(esc)) { return -1; }
833 int escLower = esc | 32;
834 if (('0' <= esc && esc <= '9')
842 | (esc <= '9' ? esc - '0' : escLower - ('a' - 10));
845 esc = css.charAt(hexEnd);
846 escLower = esc | 32;
847 } while (('0' <= esc
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dedit.c763 static int esc = -1; local
774 if (esc >= 0) {
776 esc = 0;
780 if (esc == 6) {
782 esc = -1;
784 esc_buf[esc++] = c;
785 esc_buf[esc] = '\0';
789 if (esc == 1) {
792 esc = -1;
798 if (esc >
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dedit.c763 static int esc = -1; local
774 if (esc >= 0) {
776 esc = 0;
780 if (esc == 6) {
782 esc = -1;
784 esc_buf[esc++] = c;
785 esc_buf[esc] = '\0';
789 if (esc == 1) {
792 esc = -1;
798 if (esc >
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dedit.c763 static int esc = -1; local
774 if (esc >= 0) {
776 esc = 0;
780 if (esc == 6) {
782 esc = -1;
784 esc_buf[esc++] = c;
785 esc_buf[esc] = '\0';
789 if (esc == 1) {
792 esc = -1;
798 if (esc >
[all...]
/external/clang/docs/tools/
H A Ddump_ast_matchers.py34 def esc(text): function
112 'result': esc('Matcher<%s>' % result_type),
114 'args': esc(args),
115 'comment': esc(strip_doxygen(comment)),
127 narrowing_matchers[result_type + name + esc(args)] = matcher_html
129 traversal_matchers[result_type + name + esc(args)] = matcher_html
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dparsecvs.php73 $esc = array(1, 3, 9); variable
74 foreach ($esc as $y)
/external/aac/libMpegTPDec/src/
H A Dtpdec_asc.cpp1100 CSEldSpecificConfig *esc = &asc->m_sc.m_eldSpecificConfig; local
1104 FDKmemclear(esc, sizeof(CSEldSpecificConfig));
1106 esc->m_frameLengthFlag = FDKreadBits(hBs, 1 );
1107 if (esc->m_frameLengthFlag) {
1117 esc->m_sbrPresentFlag = FDKreadBits(hBs, 1 );
1119 if (esc->m_sbrPresentFlag == 1) {
1120 esc->m_sbrSamplingRate = FDKreadBits(hBs, 1 ); /* 0: single rate, 1: dual rate */
1121 esc->m_sbrCrcFlag = FDKreadBits(hBs, 1 );
1123 asc->m_extensionSamplingFrequency = asc->m_samplingFrequency << esc->m_sbrSamplingRate;
1133 esc
[all...]
/external/icu/icu4c/source/i18n/
H A Drbt_set.cpp123 UnicodeString esc; local
124 _escape(buf, esc);
125 CharString cbuf(esc);
/external/libnl/python/netlink/
H A Dutil.py22 return '{esc}[{color}m{text}{esc}[0m'.format(esc=b'\x1b'.decode(), color=c, text=t)
/external/v8/tools/vim/
H A Dninja-build.vim113 imap <D-k> <esc>:CrCompileFile<cr>
116 imap <C-F7> <esc>:CrCompileFile<cr>
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.c605 mDNSexport char *ConvertDomainLabelToCString_withescape(const domainlabel *const label, char *ptr, char esc) argument
614 if (esc)
616 if (c == '.' || c == esc) // If character is a dot or the escape character
617 *ptr++ = esc; // Output escape character
620 *ptr++ = esc;
633 mDNSexport char *ConvertDomainNameToCString_withescape(const domainname *const name, char *ptr, char esc) argument
643 ptr = ConvertDomainLabelToCString_withescape((const domainlabel *)src, ptr, esc);
H A DmDNSEmbeddedAPI.h2345 extern char *ConvertDomainLabelToCString_withescape(const domainlabel *const name, char *cstr, char esc);
2348 extern char *ConvertDomainNameToCString_withescape(const domainname *const name, char *cstr, char esc);
/external/ppp/pppd/
H A Deap.c187 eap_state_name(esc)
188 enum eap_state_code esc;
192 return (state_names[(int)esc]);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-xml-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/xml/ASMContentHandler$AnnotationDefaultRule.class " package org.objectweb ...
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jar ... ch0 RuntimeException ex char ch int end int codepoint int esc String token int n int pos StringBuilder sb private static ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/abi-compliance-checker/
H A Dabi-compliance-checker.pl7881 return "-F".esc(get_dirname($Path));
7884 return "-I".esc($Path);
15542 sub esc($) subroutine
18588 $Dirs{esc($Dir)} = 1;
18599 $LibString = " -L".esc($Dir).$LibString;
20057 foreach my $Path (cmd_find($Dest,"","*".esc($TargetLibraryName)."*.$LIB_EXT*",2))
/external/valgrind/VEX/priv/
H A Dguest_amd64_toIR.c31735 Escape esc = ESC_NONE; local
[all...]
/external/jacoco/
H A Dasm-debug-all-5.0.1.jarMETA-INF/MANIFEST.MF org/ org/objectweb/ org/objectweb/asm/ org/objectweb/asm/AnnotationVisitor.class AnnotationVisitor ...
/external/sqlite/dist/orig/
H A Dsqlite3.c106073 sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c106073 sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc) argument
[all...]

Completed in 2903 milliseconds

12