/external/mesa3d/src/glsl/ |
opt_dead_code_local.cpp | 158 if (ir->condition) { 159 ir->condition->accept(&v); 169 if (!ir->condition) {
|
opt_structure_splitting.cpp | 168 !ir->condition) { 276 if ((lhs_entry || rhs_entry) && !ir->condition) { 307 handle_rvalue(&ir->condition);
|
ir_clone.cpp | 113 if (this->condition != NULL) 114 new_condition = this->condition->clone(mem_ctx, ht); 130 ir_if *new_if = new(mem_ctx) ir_if(this->condition->clone(mem_ctx, ht)); 272 if (this->condition) 273 new_condition = this->condition->clone(mem_ctx, ht);
|
ir_print_visitor.cpp | 348 if (ir->condition) 349 ir->condition->accept(this); 444 if (ir->condition != NULL) { 446 ir->condition->accept(this); 457 ir->condition->accept(this);
|
/external/mesa3d/src/gtest/include/gtest/ |
gtest.h | 314 // Stores the message describing the condition in case the expectation [all...] |
/external/open-vcdiff/gtest/include/gtest/ |
gtest.h | 293 // Stores the message describing the condition in case the expectation [all...] |
/external/protobuf/gtest/include/gtest/ |
gtest.h | [all...] |
/external/stlport/test/eh/ |
main.cpp | 76 void __assertion_failed(char *condition, char *testfilename, int lineno); 77 void __assertion_failed(char *condition, char *testfilename, int lineno) 80 std::strncpy( msg, condition, 255 );
|
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
gtest.h | 305 // Stores the message describing the condition in case the expectation [all...] |
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
declarative_rule_unittest.cc | 48 // No condition sets. 54 const base::Value& condition, 57 if (condition.GetAsDictionary(&dict) && dict->HasKey("bad_key")) { 64 result->value.reset(condition.DeepCopy()); 136 const base::Value& condition, 140 if (!condition.GetAsDictionary(&dict)) { 180 << "Testing an ID that's not in url_matches forwards to the Condition, " 183 << "Testing the 'no ID' value tries to match the 4th condition, but " 187 << "Testing the 'no ID' value tries to match the 4th condition, and " 193 << "Tests a condition with a url matcher, for a matching value." [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_clone.cpp | 113 if (this->condition != NULL) 114 new_condition = this->condition->clone(mem_ctx, ht); 130 ir_if *new_if = new(mem_ctx) ir_if(this->condition->clone(mem_ctx, ht)); 272 if (this->condition) 273 new_condition = this->condition->clone(mem_ctx, ht);
|
ir_print_visitor.cpp | 348 if (ir->condition) 349 ir->condition->accept(this); 444 if (ir->condition != NULL) { 446 ir->condition->accept(this); 457 ir->condition->accept(this);
|
opt_constant_propagation.cpp | 345 ir->condition->accept(this); 346 handle_rvalue(&ir->condition); 434 if (ir->condition)
|
/external/chromium_org/v8/src/arm/ |
lithium-codegen-arm.h | 257 void DeoptimizeIf(Condition condition, 260 void DeoptimizeIf(Condition condition, LEnvironment* environment); 261 void ApplyCheckIf(Condition condition, LBoundsCheck* check); 300 static Condition TokenToCondition(Token::Value op, bool is_unsigned); 305 void EmitBranch(InstrType instr, Condition condition); 307 void EmitFalseBranch(InstrType instr, Condition condition) [all...] |
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedLongSynchronizer.java | 120 * inserted into a condition queue. Upon signal, the node is 139 /** waitStatus value to indicate thread is waiting on condition */ 140 static final int CONDITION = -2; 159 * CONDITION: This node is currently on a condition queue. 178 * CONDITION for condition nodes. It is modified using CAS 218 * Link to next node waiting on condition, or the special 219 * value SHARED. Because condition queues are accessed only 259 Node(Thread thread, int waitStatus) { // Used by Condition [all...] |
AbstractQueuedSynchronizer.java | 56 * can be used as a {@link Condition} implementation by subclasses 64 * condition, so if this constraint cannot be met, do not use it. The 70 * condition objects. These can be exported as desired into classes 206 * // Provides a Condition 207 * Condition newCondition() { return new ConditionObject(); } 223 * public Condition newCondition() { return sync.newCondition(); } 350 * inserted into a condition queue. Upon signal, the node is 369 /** waitStatus value to indicate thread is waiting on condition */ 370 static final int CONDITION = -2; 389 * CONDITION: This node is currently on a condition queue [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DebuggerModel.js | 263 * @param {string} condition 266 setBreakpointByScriptLocation: function(rawLocation, condition, callback) 270 this.setBreakpointByURL(script.sourceURL, rawLocation.lineNumber, rawLocation.columnNumber, condition, callback); 272 this.setBreakpointBySourceId(rawLocation, condition, callback); 279 * @param {string=} condition 282 setBreakpointByURL: function(url, lineNumber, columnNumber, condition, callback) 307 DebuggerAgent.setBreakpointByUrl(lineNumber, url, undefined, columnNumber, condition, undefined, didSetBreakpoint.bind(this)); 313 * @param {string} condition 316 setBreakpointBySourceId: function(rawLocation, condition, callback) 331 DebuggerAgent.setBreakpoint(rawLocation, condition, didSetBreakpoint.bind(this)) [all...] |
JavaScriptSourceFrame.js | 163 // FIXME: Change condition above to explicitly check that current uiSourceCode is created by default debugger mapping 223 this._addBreakpointDecoration(lineNumber, breakpointDecoration.condition, breakpointDecoration.enabled, true); 255 this._setBreakpoint(lineNumber, breakpointDecoration.condition, breakpointDecoration.enabled); 371 * @param {string} condition 375 _addBreakpointDecoration: function(lineNumber, condition, enabled, mutedWhileEditing) 378 condition: condition, 385 this.textEditor.addBreakpoint(lineNumber, disabled, !!condition); 438 this._conditionEditorElement.value = breakpoint ? breakpoint.condition() : ""; 445 conditionElement.className = "source-frame-breakpoint-condition"; 377 condition: condition, property [all...] |
/external/v8/tools/gcmole/ |
gcmole.lua | 131 for condition, list in 135 sources[condition] = files 138 for condition, list in SOURCES:gmatch "'([^']-)': %[(.-)%]" do 141 sources[condition] = files 152 assert(p and v, "failed to parse condition: " .. cond) 160 for condition, files in pairs(sources) do 161 if EvaluateCondition(condition, props) then
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorDebuggerAgent.cpp | 71 static const char condition[] = "condition"; member in namespace:WebCore::DebuggerAgentState 282 static PassRefPtr<JSONObject> buildObjectForBreakpointCookie(const String& url, int lineNumber, int columnNumber, const String& condition, bool isRegex, bool isAnti) 288 breakpointObject->setString(DebuggerAgentState::condition, condition); 324 String condition = optionalCondition ? *optionalCondition : ""; local 334 breakpointsCookie->setObject(breakpointId, buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition, isRegex, isAntiBreakpointValue)); 338 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition); 371 String condition = optionalCondition ? *optionalCondition : emptyString(); 378 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition); [all...] |
/external/chromium_org/v8/src/ |
apinatives.js | 52 // Note: Do not directly use a function template as a condition, our 83 // Note: Do not directly use an object template as a condition, our 92 // Note: Do not directly use a function template as a condition, our
|
/external/chromium_org/win8/test/ |
ui_automation_client.cc | 372 base::win::ScopedComPtr<IUIAutomationCondition> condition; local 410 &conditions[0], conditions.size(), condition.Receive()); 426 condition, 468 base::win::ScopedComPtr<IUIAutomationCondition> condition; local 493 invokable_condition, control_view_condition, condition.Receive()); 509 condition,
|
/external/v8/src/ |
apinatives.js | 52 // Note: Do not directly use a function template as a condition, our 80 // Note: Do not directly use an object template as a condition, our 89 // Note: Do not directly use a function template as a condition, our
|
/external/aac/libAACenc/src/ |
aacenc_pns.cpp | 349 INT condition = TRUE; local 351 condition = (tnsOrder > 3); 358 (tnsPredictionGain >= pnsConf->np.tnsGainThreshold) && condition &&
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program_lexer.l | 43 #define return_token_or_IDENTIFIER(condition, token) \ 45 if (condition) { \ 52 #define return_token_or_DOT(condition, token) \ 54 if (condition) { \ 63 #define return_opcode(condition, token, opcode, len) \ 65 if (condition && \
|