Searched refs:Current (Results 1 - 25 of 442) sorted by relevance

1234567891011>>

/external/clang/include/clang/AST/
H A DAttrIterator.h51 /// Current - The current, underlying iterator.
58 mutable Iterator Current; member in class:clang::specific_attr_iterator
61 while (!isa<SpecificAttr>(*Current))
62 ++Current;
66 while (Current != I && !isa<SpecificAttr>(*Current))
67 ++Current;
77 specific_attr_iterator() : Current() { }
78 explicit specific_attr_iterator(Iterator i) : Current(i) { }
82 return cast<SpecificAttr>(*Current);
[all...]
/external/chromium_org/third_party/angle/src/libEGL/
H A Dmain.cpp19 Current *AllocateCurrent()
27 Current *current = new Current();
45 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS));
106 Current *GetCurrentData()
108 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS));
117 Current *current = GetCurrentData();
124 Current *curren
[all...]
/external/llvm/lib/Target/NVPTX/
H A DManagedStringPool.h32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin(); local
33 while (Current != Pool.end()) {
34 delete *Current;
35 Current++;
/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dmain.cpp19 Current *AllocateCurrent()
27 Current *current = new Current();
42 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS));
88 Current *GetCurrentData()
90 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS));
99 Current *current = GetCurrentData();
112 Current *curren
[all...]
/external/llvm/include/llvm/ADT/
H A Dedit_distance.h66 unsigned *Current = Previous + (n + 1); local
72 Current[0] = y;
73 unsigned BestThisRow = Current[0];
77 Current[x] = std::min(
79 std::min(Current[x-1], Previous[x])+1);
82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1];
83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1;
85 BestThisRow = std::min(BestThisRow, Current[x]);
91 unsigned *tmp = Current;
[all...]
/external/clang/lib/Format/
H A DContinuationIndenter.cpp47 // Returns \c true if \c Current starts a new parameter.
48 static bool startsNextParameter(const FormatToken &Current, argument
50 const FormatToken &Previous = *Current.Previous;
51 if (Current.Type == TT_CtorInitializerComma &&
54 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
92 const FormatToken &Current = *State.NextToken; local
93 const FormatToken &Previous = *Current.Previous;
94 assert(&Previous == Current.Previous);
95 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
96 Current
128 const FormatToken &Current = *State.NextToken; local
231 const FormatToken &Current = *State.NextToken; local
259 FormatToken &Current = *State.NextToken; local
346 FormatToken &Current = *State.NextToken; local
573 const FormatToken &Current = *State.NextToken; local
679 const FormatToken &Current = *State.NextToken; local
803 const FormatToken &Current = *State.NextToken; local
863 const FormatToken &Current = *State.NextToken; local
901 addMultilineToken(const FormatToken &Current, LineState &State) argument
935 breakProtrudingToken(const FormatToken &Current, LineState &State, bool DryRun) argument
1094 const FormatToken &Current = *State.NextToken; local
[all...]
H A DTokenAnnotator.h52 FormatToken *Current = First; local
57 Current->Next = I->Tok;
58 I->Tok->Previous = Current;
59 Current = Current->Next;
60 Current->Children.clear();
66 Current->Children.push_back(Children.back());
69 Last = Current;
H A DTokenAnnotator.cpp331 void updateParameterCount(FormatToken *Left, FormatToken *Current) { argument
332 if (Current->Type == TT_LambdaLSquare ||
333 (Current->is(tok::caret) && Current->Type == TT_UnaryOperator) ||
335 Current->TokenText == "function")) {
338 if (Current->is(tok::comma)) {
342 Left->Role->CommaFound(Current);
343 } else if (Left->ParameterCount == 0 && Current->isNot(tok::comment)) {
692 void determineTokenType(FormatToken &Current) { argument
693 if (Current
1156 FormatToken *Current; member in class:clang::format::__anon17899::ExpressionParser
1204 isFunctionDeclarationName(const FormatToken &Current) argument
1329 FormatToken *Current = Line.Last; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeIterator.cs78 public object Current property in class:Antlr.Runtime.Tree.TreeIterator
107 Current = tree;
114 Current = nodes.Dequeue();
121 Current = eof;
130 Current = down;
150 Current = nodes.Dequeue();
159 Current = nodes.Dequeue();
166 bool result = Current != eof || !reachedEof;
167 reachedEof = Current == eof;
/external/chromium_org/third_party/webrtc/base/
H A Dsignalthread_unittest.cc26 EXPECT_EQ(harness_->main_thread_, Thread::Current());
36 EXPECT_EQ(harness_->main_thread_, Thread::Current());
42 EXPECT_EQ(harness_->main_thread_, Thread::Current());
48 EXPECT_EQ(harness_->main_thread_, Thread::Current());
53 EXPECT_NE(harness_->main_thread_, Thread::Current());
54 EXPECT_EQ(worker(), Thread::Current());
55 Thread::Current()->socketserver()->Wait(250, false);
66 EXPECT_EQ(main_thread_, Thread::Current());
75 main_thread_ = Thread::Current();
116 Thread::Current()
[all...]
H A Dworker.cc33 rtc::Thread *me = rtc::Thread::Current();
53 } else if (worker_thread_ != rtc::Thread::Current()) {
71 ASSERT(worker_thread_ == rtc::Thread::Current());
H A Dthread_checker_impl.cc40 valid_thread_ = Thread::Current();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs73 public object Current { property in class:Antlr.Runtime.Tree.TreeIterator
97 Current = tree;
101 Current = nodes.Dequeue();
105 Current = eof;
111 Current = down;
127 Current = nodes.Dequeue();
134 Current = nodes.Dequeue();
141 return Current != eof;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddrawpix.c63 IROUND(ctx->Current.RasterPos[0]),
64 IROUND(ctx->Current.RasterPos[1]));
139 if (!ctx->Current.RasterPosValid) {
146 GLint x = IROUND(ctx->Current.RasterPos[0]);
147 GLint y = IROUND(ctx->Current.RasterPos[1]);
174 ctx->Current.RasterPos,
175 ctx->Current.RasterColor,
176 ctx->Current.RasterTexCoords[0] );
206 IROUND(ctx->Current.RasterPos[0]),
207 IROUND(ctx->Current
[all...]
/external/mesa3d/src/mesa/main/
H A Ddrawpix.c63 IROUND(ctx->Current.RasterPos[0]),
64 IROUND(ctx->Current.RasterPos[1]));
139 if (!ctx->Current.RasterPosValid) {
146 GLint x = IROUND(ctx->Current.RasterPos[0]);
147 GLint y = IROUND(ctx->Current.RasterPos[1]);
174 ctx->Current.RasterPos,
175 ctx->Current.RasterColor,
176 ctx->Current.RasterTexCoords[0] );
206 IROUND(ctx->Current.RasterPos[0]),
207 IROUND(ctx->Current
[all...]
/external/llvm/lib/IR/
H A DUse.cpp95 const Use *Current = this; local
98 unsigned Tag = (Current++)->Prev.getInt();
105 ++Current;
108 unsigned Tag = Current->Prev.getInt();
112 ++Current;
116 return Current + Offset;
122 return Current;
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannelproxy.cc47 worker_thread_ = rtc::Thread::Current();
58 ASSERT(rtc::Thread::Current() == worker_thread_);
106 ASSERT(rtc::Thread::Current() == worker_thread_);
115 ASSERT(rtc::Thread::Current() == worker_thread_);
124 ASSERT(rtc::Thread::Current() == worker_thread_);
132 ASSERT(rtc::Thread::Current() == worker_thread_);
140 ASSERT(rtc::Thread::Current() == worker_thread_);
148 ASSERT(rtc::Thread::Current() == worker_thread_);
156 ASSERT(rtc::Thread::Current() == worker_thread_);
165 ASSERT(rtc::Thread::Current()
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dsocketmonitor.cc70 ASSERT(rtc::Thread::Current() == channel_thread_);
78 ASSERT(rtc::Thread::Current() == channel_thread_);
86 ASSERT(rtc::Thread::Current() == channel_thread_);
91 ASSERT(rtc::Thread::Current() == monitoring_thread_);
102 ASSERT(rtc::Thread::Current() == channel_thread_);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediamonitor.cc70 ASSERT(rtc::Thread::Current() == worker_thread_);
78 ASSERT(rtc::Thread::Current() == worker_thread_);
86 ASSERT(rtc::Thread::Current() == worker_thread_);
91 ASSERT(rtc::Thread::Current() == monitor_thread_);
99 ASSERT(rtc::Thread::Current() == worker_thread_);
H A Daudiomonitor.cc67 assert(rtc::Thread::Current() == voice_channel_->worker_thread());
75 assert(rtc::Thread::Current() == voice_channel_->worker_thread());
83 assert(rtc::Thread::Current() == voice_channel_->worker_thread());
89 assert(rtc::Thread::Current() == monitoring_thread_);
101 assert(rtc::Thread::Current() == voice_channel_->worker_thread());
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp91 CommentList::const_iterator Current; member in class:clang::CommentVerifier
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
101 if (Current != End) {
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
103 << Current->Message << "\" at line " << Current->Line << ", column "
104 << Current->Col;
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
110 if (Current == End) return;
112 const Comment &C = *Current;
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp.h73 # define YYLLOC_DEFAULT(Current, Rhs, N) \
77 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
78 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
79 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
80 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
84 (Current).first_line = (Current).last_line = \
86 (Current).first_column = (Current).last_column = \
89 (Current)
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dglsl_parser_extras.h228 # define YYLLOC_DEFAULT(Current, Rhs, N) \
232 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
233 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
234 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
235 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
239 (Current).first_line = (Current).last_line = \
241 (Current).first_column = (Current).last_column = \
244 (Current)
[all...]
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.h73 # define YYLLOC_DEFAULT(Current, Rhs, N) \
77 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
78 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
79 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
80 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
84 (Current).first_line = (Current).last_line = \
86 (Current).first_column = (Current).last_column = \
89 (Current)
[all...]
/external/mesa3d/src/glsl/
H A Dglsl_parser_extras.h228 # define YYLLOC_DEFAULT(Current, Rhs, N) \
232 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
233 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
234 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
235 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
239 (Current).first_line = (Current).last_line = \
241 (Current).first_column = (Current).last_column = \
244 (Current)
[all...]

Completed in 853 milliseconds

1234567891011>>