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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/helgrind/tests/
pth_spinlock.stderr.exp 0 Start of test.
  /external/llvm/include/llvm/Support/
SMLoc.h 48 SMLoc Start, End;
51 SMRange(SMLoc Start, SMLoc End) : Start(Start), End(End) {
52 assert(Start.isValid() == End.isValid() &&
53 "Start and end should either both be valid or both be invalid!");
56 bool isValid() const { return Start.isValid(); }
  /external/chromium/chrome/common/
profiling.h 24 // Start profiling.
25 static void Start();
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TemplateSyntaxTree.java 19 import com.google.clearsilver.jsilver.syntax.node.Start;
28 private final Start root;
30 TemplateSyntaxTree(Start root) {
34 public Start getRoot() {
  /external/llvm/runtime/libprofile/
Profiling.h 33 void write_profiling_data(enum ProfilingType PT, unsigned *Start,
  /external/clang/lib/Analysis/
FormatStringParsing.h 31 const char *Start, const char *&Beg,
36 const char *Start, const char *&Beg, const char *E,
40 FormatSpecifier &CS, const char *Start,
49 const char *Start;
53 : Start(0), Stop(stop) {}
54 SpecifierResult(const char *start,
56 : FS(fs), Start(start), Stop(false) {}
58 const char *getStart() const { return Start; }
60 bool hasValue() const { return Start != 0;
    [all...]
ScanfFormatString.cpp 34 const char *start = I - 1; local
39 H.HandleIncompleteScanList(start, I);
46 H.HandleIncompleteScanList(start, I - 1);
54 H.HandleIncompleteScanList(start, I - 1);
72 const char *Start = 0;
75 // Look for a '%' character that indicates the start of a format specifier.
84 Start = I++; // Record the start of the format specifier.
90 if (!Start)
95 H.HandleIncompleteSpecifier(Start, E - Start)
    [all...]
  /external/libvpx/vp8/common/
g_common.h 13 extern void (*vp8_plane_add_noise)(unsigned char *Start, unsigned int Width, unsigned int Height, int Pitch, int DPitch, int q);
  /external/valgrind/main/drd/tests/
pth_spinlock.stderr.exp 2 Start of test.
qt4_atomic.stderr.exp 2 Start of test.
qt4_mutex.stderr.exp 2 Start of test.
qt4_rwlock.stderr.exp 2 Start of test.
qt4_semaphore.stderr.exp 2 Start of test.
unit_bitmap.stderr.exp 0 Start of DRD BM unit test.
  /external/chromium/net/url_request/
url_request_error_job.h 21 virtual void Start();
  /external/llvm/lib/VMCore/
Use.cpp 88 Use *Use::initTags(Use * const Start, Use *Stop) {
91 if (Start == Stop--)
92 return Start;
105 while (Start != Stop) {
118 return Start;
125 void Use::zap(Use *Start, const Use *Stop, bool del) {
126 while (Start != Stop)
129 ::operator delete(Start);
User.cpp 58 Use *Start = static_cast<Use*>(Storage);
59 Use *End = Start + Us;
61 Obj->OperandList = Start;
63 Use::initTags(Start, End);
72 User *Start = static_cast<User*>(Usr);
73 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
  /external/valgrind/unittest/output_tests/
fun_hist_test.cc 35 t1.Start();
36 t2.Start();
output_test1.cc 21 t1.Start();
22 t2.Start();
  /external/clang/test/SemaTemplate/
example-dynarray.cpp 16 dynarray() { Start = Last = End = 0; }
19 Start = (T*)malloc(sizeof(T) * other.size());
20 Last = End = Start + other.size();
23 new (Start + I) T(other[I]);
28 Start[I].~T();
30 free(Start);
40 Start[I].~T();
42 free(Start);
43 Start = NewStart;
48 unsigned size() const { return Last - Start; }
    [all...]
  /external/llvm/include/llvm/ADT/
SetVector.h 53 SetVector(It Start, It End) {
54 insert(Start, End);
110 void insert(It Start, It End) {
111 for (; Start != End; ++Start)
112 if (set_.insert(*Start))
113 vector_.push_back(*Start);
170 SmallSetVector(It Start, It End) {
171 this->insert(Start, End);
  /external/chromium/chrome/browser/chromeos/login/
mock_url_fetchers.h 29 void Start();
48 void Start();
65 void Start();
82 void Start();
103 void Start();
124 void Start();
  /external/chromium/base/
task_unittest.cc 15 void Start() {
46 cancel_in_destructor->Start();
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_stereo_proc.h 99 int32 Start,
104 int32 Start,
  /external/chromium/chrome/browser/autocomplete/
builtin_provider.h 27 virtual void Start(const AutocompleteInput& input, bool minimal_changes);

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>