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

1 2 3

  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement_unittest.cc 80 XmlAttr * patt = elt.FirstAttr(); local
81 EXPECT_EQ(QName("", "a"), patt->Name());
82 EXPECT_EQ("avalue2", patt->Value());
84 patt = patt->NextAttr();
85 EXPECT_EQ(QName("", "b"), patt->Name());
86 EXPECT_EQ("bvalue2", patt->Value());
88 patt = patt->NextAttr();
89 EXPECT_EQ(QName("", "c"), patt->Name())
166 XmlAttr * patt = pelCopy->FirstAttr(); local
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
MessageUtils.java 42 public static String subst(String patt, String arg) {
44 return subst(patt, args);
47 public static String subst(String patt, String arg1, String arg2) {
49 return subst(patt, args);
52 public static String subst(String patt, String arg1, String arg2,
55 return subst(patt, args);
58 public static String subst(String patt, String args[]) {
60 int len = patt.length();
62 char ch = patt.charAt(i);
65 int index = Character.digit(patt.charAt(i + 1), 10)
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/
pattern_db.py 41 def save_new_pattern(self, patt, is_regex):
44 f.write(str(int(is_regex)) + ',' + patt + '\n')
review_db.py 53 patt = re.compile('([^:]+):(\\d+):(.*)$')
55 match = patt.match(line)
71 patt = re.compile('([^:]+):(\\d+):(.*)$')
73 match = patt.match(line)
server.py 103 patt = request.args.get('pattern')
106 engine.add_pattern(patt, is_regex)
109 project.pattern_db.save_new_pattern(patt, is_regex)
118 patt = request.args.get('pattern')
121 result = codesearch.raw_search(patt, is_regex).decode('utf-8')
123 patt = re.compile('([^:]+):(\\d+):(.*)$')
125 match = patt.match(line)
codesearch.py 187 return any(patt in path for patt in self.path_component_black_list)
247 patt = re.compile(b'([^:]+):(\\d+):(.*)$')
249 match = patt.match(line)
267 patt = re.compile(b'([^:]+):(\\d+):(.*)$')
270 match = patt.match(line)
  /external/valgrind/coregrind/
m_seqmatch.c 44 const void* patt, SizeT szbPatt, UWord nPatt, UWord ixPatt,
81 /* No specific need to set NULL when !have{Patt,Input}, but guards
84 currPatt = havePatt ? ((const HChar*)patt) + szbPatt * ixPatt : NULL;
108 patt, szbPatt, nPatt, ixPatt+1,
179 Bool VG_(string_match) ( const HChar* patt, const HChar* input )
183 patt, sizeof(HChar), VG_(strlen)(patt), 0,
192 // typedef struct { char* patt; char* input; Bool xres; } Test;
229 // for (t = tests; t->patt; t++) {
231 // t->patt, t->input,
    [all...]
m_options.c 363 HChar* patt; local
371 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1);
372 VG_(memcpy)(patt, first, last - first);
373 vg_assert(patt[last-first] == 0);
374 matches = VG_(string_match)(patt, name);
375 VG_(free)(patt);
388 HChar* patt; local
396 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1);
397 VG_(memcpy)(patt, first, last - first);
398 vg_assert(patt[last-first] == 0)
    [all...]
  /development/vndk/tools/header-checker/tests/
gen_all.py 29 patt = re.compile(
36 if not patt.match(filename):
  /external/curl/tests/server/
getpart.c 286 char patt[MAX_TAG_LEN + 1]; /* potential attributes */ local
314 couter[0] = cmain[0] = csub[0] = ptag[0] = patt[0] = '\0';
428 memcpy(patt, ptr, len.uns);
429 patt[len.uns] = '\0';
450 if(strstr(patt, "base64="))
  /external/fio/oslib/
libmtd.c 176 * @patt: file pattern to read from
184 static int dev_read_data(const char *patt, int mtd_num, void *buf, int buf_len)
186 char file[strlen(patt) + 100];
188 sprintf(file, patt, mtd_num);
351 * @patt: file pattern to read from
357 static int dev_read_hex_int(const char *patt, int mtd_num, int *value)
359 char file[strlen(patt) + 50];
361 sprintf(file, patt, mtd_num);
367 * @patt: file pattern to read from
373 static int dev_read_pos_int(const char *patt, int mtd_num, int *value
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_surface.c 472 nouveau_object_del(&hw->patt);
525 BEGIN_NV04(push, NV01_SUBC(PATT, OBJECT), 1);
535 NULL, 0, &hw->patt);
539 BEGIN_NV04(push, NV01_SUBC(PATT, OBJECT), 1);
540 PUSH_DATA (push, hw->patt->handle);
570 PUSH_DATA (push, hw->patt->handle);
nouveau_context.h 61 struct nouveau_object *patt; member in struct:nouveau_hw_state
  /development/vndk/tools/definition-tool/tests/
test_elfdump.py 109 patt = re.compile('|'.join('(?:' + re.escape(x) +')' for x in prefixes))
110 return [line for line in lines if not patt.match(line)]
  /external/valgrind/include/
pub_tool_seqmatch.h 57 The pattern array is starts at 'patt' and consists of 'nPatt'
89 const void* patt, SizeT szbPatt, UWord nPatt, UWord ixPatt,
  /development/vndk/tools/definition-tool/tools/
update_dataset.py 40 patt = re.compile(
44 match = patt.match(path)
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
Macintosh_Connectivity_Clas.py 59 which = 'patt'
350 'patt' : _Prop_AppleTalk_type,
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Macintosh_Connectivity_Clas.py 59 which = 'patt'
350 'patt' : _Prop_AppleTalk_type,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Macintosh_Connectivity_Clas.py 59 which = 'patt'
350 'patt' : _Prop_AppleTalk_type,
  /external/valgrind/none/tests/
cmdline2.stdout.exp 156 --trace-symtab-patt=<patt> limit debuginfo tracing to obj name <patt>
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 207 String patt ="<[\\s]*pubDate[\\s]*>(.+?)</pubDate[\\s]*>"; local
208 Pattern p = Pattern.compile(patt);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatAPI.java 175 String patt = new String("#,##0.#"); local
176 pat.applyPattern(patt);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatAPI.java 172 String patt = new String("#,##0.#"); local
173 pat.applyPattern(patt);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pydoc.py 210 patt = re.compile('\b.')
211 output = patt.sub('', output)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pydoc.py 218 patt = re.compile('\b.')
219 output = patt.sub('', output)

Completed in 1117 milliseconds

1 2 3