HomeSort by relevance Sort by last modified time
    Searched defs:atoms (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/re2/re2/testing/
random_test.cc 86 vector<string> atoms = Split(" ", local
91 RandomTest(10, 10, atoms, ops, 20, alphabet, "");
exhaustive3_test.cc 14 vector<string> atoms = Split(" ", local
16 ExhaustiveTest(2, 1, atoms, RegexpGenerator::EgrepOps(),
22 vector<string> atoms = Split(" ", local
24 ExhaustiveTest(2, 1, atoms, RegexpGenerator::EgrepOps(),
67 vector<string> atoms = Split(" ", local
73 ExhaustiveTest(1, 0, atoms, ops,
80 vector<string> atoms = Split(" ", local
89 ExhaustiveTest(1, 0, atoms, ops,
filtered_re2_test.cc 14 vector<string> atoms; member in struct:re2::FilterTestVars
34 v.f.Compile(&v.atoms);
35 EXPECT_EQ(0, v.atoms.size());
49 v.f.Compile(&v.atoms);
50 EXPECT_EQ(1, v.atoms.size());
51 EXPECT_EQ(v.atoms[0], "\xde\xadq\xbe\xef");
61 // If any test needs more than this many regexps or atoms, increase
64 const char* atoms[20]; member in struct:re2::AtomTest
74 // This test checks that all atoms of length greater than min length
75 // are found, and no atoms that are of smaller length are found
245 vector<string> atoms; local
    [all...]
  /external/regex-re2/re2/testing/
random_test.cc 86 vector<string> atoms = Split(" ", local
91 RandomTest(10, 10, atoms, ops, 20, alphabet, "");
exhaustive3_test.cc 14 vector<string> atoms = Split(" ", local
16 ExhaustiveTest(2, 1, atoms, RegexpGenerator::EgrepOps(),
22 vector<string> atoms = Split(" ", local
24 ExhaustiveTest(2, 1, atoms, RegexpGenerator::EgrepOps(),
67 vector<string> atoms = Split(" ", local
73 ExhaustiveTest(1, 0, atoms, ops,
80 vector<string> atoms = Split(" ", local
89 ExhaustiveTest(1, 0, atoms, ops,
filtered_re2_test.cc 14 vector<string> atoms; member in struct:re2::FilterTestVars
34 v.f.Compile(&v.atoms);
35 EXPECT_EQ(0, v.atoms.size());
49 v.f.Compile(&v.atoms);
50 EXPECT_EQ(1, v.atoms.size());
51 EXPECT_EQ(v.atoms[0], "\xde\xadq\xbe\xef");
61 // If any test needs more than this many regexps or atoms, increase
64 const char* atoms[20]; member in struct:re2::AtomTest
74 // This test checks that all atoms of length greater than min length
75 // are found, and no atoms that are of smaller length are found
245 vector<string> atoms; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_derived.c 195 static struct i915_tracked_state *atoms[] = { variable in typeref:struct:i915_tracked_state
215 for (i = 0; atoms[i]; i++)
216 if (atoms[i]->dirty & i915->dirty)
217 atoms[i]->update(i915);
i915_state_immediate.c 213 static const struct i915_tracked_state *atoms[] = { variable in typeref:struct:i915_tracked_state
225 for (i = 0; i < Elements(atoms); i++)
226 if (i915->dirty & atoms[i]->dirty)
227 atoms[i]->update(i915);
233 ~0 /* all state atoms, becuase we do internal checking */
i915_state_dynamic.c 292 static const struct i915_tracked_state *atoms[] = { variable in typeref:struct:i915_tracked_state
310 for (i = 0; i < Elements(atoms); i++)
311 if (i915->dirty & atoms[i]->dirty)
312 atoms[i]->update(i915);
318 ~0 /* all state atoms, becuase we do internal checking */
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom.c 41 * This is used to initialize st->atoms[].
43 static const struct st_tracked_state *atoms[] = variable in typeref:struct:st_tracked_state
184 * state atoms are ordered correctly in the list.
190 for (i = 0; i < Elements(atoms); i++) {
191 const struct st_tracked_state *atom = atoms[i];
203 atoms[i]->update( st );
221 for (i = 0; i < Elements(atoms); i++) {
222 if (check_state(state, &atoms[i]->dirty))
223 atoms[i]->update( st );
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_derived.c 195 static struct i915_tracked_state *atoms[] = { variable in typeref:struct:i915_tracked_state
215 for (i = 0; atoms[i]; i++)
216 if (atoms[i]->dirty & i915->dirty)
217 atoms[i]->update(i915);
i915_state_immediate.c 213 static const struct i915_tracked_state *atoms[] = { variable in typeref:struct:i915_tracked_state
225 for (i = 0; i < Elements(atoms); i++)
226 if (i915->dirty & atoms[i]->dirty)
227 atoms[i]->update(i915);
233 ~0 /* all state atoms, becuase we do internal checking */
i915_state_dynamic.c 292 static const struct i915_tracked_state *atoms[] = { variable in typeref:struct:i915_tracked_state
310 for (i = 0; i < Elements(atoms); i++)
311 if (i915->dirty & atoms[i]->dirty)
312 atoms[i]->update(i915);
318 ~0 /* all state atoms, becuase we do internal checking */
  /external/mesa3d/src/mesa/state_tracker/
st_atom.c 41 * This is used to initialize st->atoms[].
43 static const struct st_tracked_state *atoms[] = variable in typeref:struct:st_tracked_state
184 * state atoms are ordered correctly in the list.
190 for (i = 0; i < Elements(atoms); i++) {
191 const struct st_tracked_state *atom = atoms[i];
203 atoms[i]->update( st );
221 for (i = 0; i < Elements(atoms); i++) {
222 if (check_state(state, &atoms[i]->dirty))
223 atoms[i]->update( st );
  /external/chromium_org/remoting/host/linux/
x_server_clipboard.cc 70 Atom atoms[kNumAtomNames]; local
72 False, atoms)) {
73 clipboard_atom_ = atoms[0];
74 large_selection_atom_ = atoms[1];
75 selection_string_atom_ = atoms[2];
76 targets_atom_ = atoms[3];
77 timestamp_atom_ = atoms[4];
78 utf8_string_atom_ = atoms[5];
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_upload.c 39 /* This is used to initialize brw->state.atoms[]. We could use this
256 const struct brw_tracked_state **atoms; local
262 atoms = gen7_atoms;
265 atoms = gen6_atoms;
268 atoms = gen4_atoms;
272 brw->atoms = atoms;
276 assert((*atoms)->dirty.mesa |
277 (*atoms)->dirty.brw |
278 (*atoms)->dirty.cache)
    [all...]
  /external/chromium_org/ui/base/x/
selection_utils.cc 32 std::vector< ::Atom> atoms; local
33 atoms.push_back(atom_cache->GetAtom(kString));
34 atoms.push_back(atom_cache->GetAtom(kText));
35 atoms.push_back(atom_cache->GetAtom(kUtf8String));
36 return atoms;
40 std::vector< ::Atom> atoms; local
41 atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList));
42 atoms.push_back(atom_cache->GetAtom(kMimeTypeMozillaURL));
43 return atoms;
124 std::vector< ::Atom> atoms; local
    [all...]
device_data_manager.cc 201 Atom atoms[DT_LAST_ENTRY]; local
203 atoms[data_type] = atom_cache_.GetAtom(kCachedAtoms[data_type]);
241 if (v->label == atoms[data_type]) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_upload.c 39 /* This is used to initialize brw->state.atoms[]. We could use this
256 const struct brw_tracked_state **atoms; local
262 atoms = gen7_atoms;
265 atoms = gen6_atoms;
268 atoms = gen4_atoms;
272 brw->atoms = atoms;
276 assert((*atoms)->dirty.mesa |
277 (*atoms)->dirty.brw |
278 (*atoms)->dirty.cache)
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_aurax11.cc 164 std::vector< ::Atom> atoms = GetTextAtomsFrom(atom_cache_); local
165 for (std::vector< ::Atom>::const_iterator it = atoms.begin();
166 it != atoms.end(); ++it) {
275 // Returns a list of all text atoms that we handle.
472 std::vector< ::Atom> atoms; local
473 atoms.push_back(atom_cache_.GetAtom(format.ToString().c_str()));
474 return atoms;
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_usbfs.c 323 int atoms, kmajor, kminor, ksublevel; local
327 atoms = sscanf(uts.release, "%d.%d.%d", &kmajor, &kminor, &ksublevel);
328 if (atoms < 1)
337 if (atoms < 2)
345 if (atoms < 3)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xlibint.h 153 struct _XDisplayAtoms *atoms; /* for XInternAtom */ member in struct:_XDisplay
783 FreeFuncType atoms; /* _XFreeAtomTable */ member in struct:_XFreeFuncs
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xlibint.h 153 struct _XDisplayAtoms *atoms; /* for XInternAtom */ member in struct:_XDisplay
783 FreeFuncType atoms; /* _XFreeAtomTable */ member in struct:_XFreeFuncs
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xlibint.h 153 struct _XDisplayAtoms *atoms; /* for XInternAtom */ member in struct:_XDisplay
783 FreeFuncType atoms; /* _XFreeAtomTable */ member in struct:_XFreeFuncs
    [all...]
  /external/linux-tools-perf/
builtin-sched.c 61 struct sched_atom **atoms; member in struct:task_desc
245 task->atoms = realloc(task->atoms, size);
246 BUG_ON(!task->atoms);
248 task->atoms[idx] = event;
258 return task->atoms[task->nr_events - 1];
487 process_sched_event(this_task, this_task->atoms[i]);
927 struct work_atoms *atoms; local
930 atoms = container_of(node, struct work_atoms, node);
932 cmp = thread_lat_cmp(sort_list, &key, atoms);
972 struct work_atoms *atoms = zalloc(sizeof(*atoms)); local
1124 struct work_atoms *atoms = thread_atoms_search(&atom_root, thread, &cmp_pid); local
1146 struct work_atoms *atoms; local
1194 struct work_atoms *atoms; local
    [all...]

Completed in 548 milliseconds

1 2