HomeSort by relevance Sort by last modified time
    Searched refs:condition (Results 251 - 275 of 591) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebKit2/Scripts/webkit2/
messages_unittest.py 88 'condition': 'ENABLE(WEBKIT2)',
95 'condition': None,
102 'condition': 'ENABLE(TOUCH_EVENTS)',
111 'condition': None,
116 'condition': None,
123 'condition': None,
131 'condition': None,
139 'condition': None,
150 'condition': None,
159 'condition': None
    [all...]
  /external/mesa3d/src/glsl/
ast.h 625 ast_selection_statement(ast_expression *condition,
633 ast_expression *condition; member in class:ast_selection_statement
647 ast_iteration_statement(int mode, ast_node *init, ast_node *condition,
662 ast_node *condition; member in class:ast_iteration_statement
669 * Generate IR from the condition of a loop
671 * This is factored out of ::hir because some loops have the condition
opt_discard_simplification.cpp 107 if (ir != NULL && ir->condition == NULL)
opt_structure_splitting.cpp 156 !ir->condition) {
264 if ((lhs_entry || rhs_entry) && !ir->condition) {
295 handle_rvalue(&ir->condition);
ir_clone.cpp 91 if (this->condition != NULL)
92 new_condition = this->condition->clone(mem_ctx, ht);
108 ir_if *new_if = new(mem_ctx) ir_if(this->condition->clone(mem_ctx, ht));
247 if (this->condition)
248 new_condition = this->condition->clone(mem_ctx, ht);
  /external/skia/src/animator/
SkDrawGroup.cpp 23 SK_MEMBER(condition, String),
106 bool conditionTrue = ifCondition(maker, this, condition);
127 if (condition.size() > 0)
128 SkDebugf("condition=\"%s\" ", condition.c_str());
209 SkDebugf("condition=%s ", conditionString.c_str());
  /external/v8/test/mjsunit/compiler/
loops.js 37 // Test assignments in the loop condition.
60 // Test deoptimization in the loop condition.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
intermediate.h 296 TIntermTyped* cond; // loop exit condition
463 TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) {}
465 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB) {}
470 TIntermNode* getCondition() const { return condition; }
476 TIntermTyped* condition; member in class:TIntermSelection
  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.h 444 } Condition;
453 LinkRecord(intptr_t from, intptr_t to, JumpType type, Condition condition)
458 , m_condition(condition)
467 Condition condition() const { return m_condition; }
473 Condition m_condition : 16;
495 JmpSrc(int offset, JumpType type, Condition condition)
497 , m_condition(condition)
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
tokenize.py 245 condition = source[start+4:i].lstrip()
246 if (condition.startswith('0') or
247 condition.startswith('(0)')):
  /external/chromium/testing/gtest/include/gtest/
gtest.h 314 // Stores the message describing the condition in case the expectation
    [all...]
  /external/dbus/dbus/
dbus-watch.c 159 * Sanitizes the given condition so that it only contains
162 * DBUS_WATCH_WRITABLE will be stripped from the condition.
165 * @param condition address of the condition to sanitize.
169 unsigned int *condition)
172 *condition &= ~DBUS_WATCH_READABLE;
174 *condition &= ~DBUS_WATCH_WRITABLE;
643 * @param flags the poll condition using #DBusWatchFlags values
  /external/gtest/include/gtest/
gtest.h 314 // Stores the message describing the condition in case the expectation
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h 314 // 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 );
  /external/webkit/Source/WebCore/inspector/front-end/
SourceFrame.js 631 function didEditBreakpointCondition(committed, condition)
635 this._delegate.setBreakpoint(lineNumber, condition, true);
645 function didEditBreakpointCondition(committed, condition)
648 this._delegate.updateBreakpoint(lineNumber, condition, breakpoint.enabled);
650 this._editBreakpointCondition(lineNumber, breakpoint.condition, didEditBreakpointCondition.bind(this));
655 this._delegate.updateBreakpoint(lineNumber, breakpoint.condition, enabled);
688 this._delegate.updateBreakpoint(lineNumber, breakpoint.condition, !breakpoint.enabled);
846 _editBreakpointCondition: function(lineNumber, condition, callback)
864 this._conditionEditorElement.value = condition;
871 conditionElement.className = "source-frame-breakpoint-condition";
    [all...]
SourceHTMLTokenizer.js 75 this.condition = this.initialCondition;
148 // Tokenizer is stateless, so restore its condition before tokenizing and save it after.
149 this._internalJavaScriptTokenizer.condition = this._condition.internalJavaScriptTokenizerCondition;
152 this._condition.internalJavaScriptTokenizerCondition = this._internalJavaScriptTokenizer.condition;
160 // Tokenizer is stateless, so restore its condition before tokenizing and save it after.
161 this._internalCSSTokenizer.condition = this._condition.internalCSSTokenizerCondition;
164 this._condition.internalCSSTokenizerCondition = this._internalCSSTokenizer.condition;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 119 * inserted into a condition queue. Upon signal, the node is
138 /** waitStatus value to indicate thread is waiting on condition */
139 static final int CONDITION = -2;
158 * CONDITION: This node is currently on a condition queue.
177 * CONDITION for condition nodes. It is modified using CAS
217 * Link to next node waiting on condition, or the special
218 * value SHARED. Because condition queues are accessed only
258 Node(Thread thread, int waitStatus) { // Used by Condition
    [all...]
AbstractQueuedSynchronizer.java 55 * can be used as a {@link Condition} implementation by subclasses
63 * condition, so if this constraint cannot be met, do not use it. The
69 * condition objects. These can be exported as desired into classes
205 * // Provide a Condition
206 * Condition newCondition() { return new ConditionObject(); }
222 * 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/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/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 &&
  /frameworks/base/core/java/android/os/
RecoverySystem.java 346 final ConditionVariable condition = new ConditionVariable(); local
353 condition.open();
358 condition.block();
  /frameworks/base/media/jni/mediaeditor/
VideoEditorJava.h 370 bool condition,
380 bool condition,
390 bool condition,

Completed in 2622 milliseconds

<<11121314151617181920>>