HomeSort by relevance Sort by last modified time
    Searched defs:true (Results 376 - 400 of 468) sorted by null

<<111213141516171819

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java 146 mTree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
155 mTree.setLinesVisible(true);
156 mTree.setHeaderVisible(true);
169 mTreePainted = true;
462 IMarkerDelta[] deltas = event.findMarkerDeltas(AdtConstants.MARKER_LINT, true);
511 setSystem(true);
562 mTreeViewer.setSelection(new StructuredSelection(marker), true /*reveal*/);
642 visibleEntry.putBoolean(getKey(column), true); local
658 treeColumn.setResizable(true);
    [all...]
  /art/runtime/
thread.cc 246 // TODO: pass self to MutexLock - requires self to equal Thread::Current(), which is only true
398 thread_start_during_shutdown = true;
510 return true;
613 InitPeer<true>(soa, thread_is_daemon, thread_group, thread_name.get(), thread_priority);
695 return true;
813 found_checkpoint = true;
852 CHECK_EQ(ReadFlag(kCheckpointRequest), true); local
1423 CHECK_NE(ReadFlag(kCheckpointRequest), true); local
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 262 /*RecordPaths=*/true, /*DetectVirtual=*/false);
457 /// AddVCallOffset - Adds a vcall offset to the map. Returns true if the
478 if (LT == RT) return true;
489 return true;
523 return true;
1891 \/*BaseIsMorallyVirtual=*\/true, local
1892 \/*BaseIsVirtualInLayoutClass=*\/true, local
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 209 DerivedTy, DerivedAlign, true);
385 void VisitCXXThisExpr(CXXThisExpr *E) { UsesThis = true; }
472 CGF.EmitComplexExprIntoLValue(Init, LV, /*isInit*/ true);
517 // If the condition is true, execute the body.
540 CGF.EmitBlock(AfterFor, true);
619 EmitComplexExprIntoLValue(Init, LHS, /*isInit*/ true);
704 return true;
707 // Emit code in ctor (Prologue==true) or dtor (Prologue==false)
774 EmitAsanPrologueOrEpilogue(true);
798 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); local
825 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); local
1373 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); local
1437 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); local
    [all...]
CGObjC.cpp 127 EmitStoreThroughLValue(RValue::get(value), LV, true); local
138 EmitStoreThroughLValue(RValue::get(keyValue), KeyLV, /*isInit=*/true); local
146 EmitStoreThroughLValue(RValue::get(valueValue), ValueLV, /*isInit=*/true); local
251 if (!ice || ice->getCastKind() != CK_LValueToRValue) return true;
256 return true;
264 if (!declRef) return true;
266 if (!var) return true;
333 isClassMessage = true;
340 isSuperMessage = true;
346 isSuperMessage = true;
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 65 return true;
71 /// isAttributeLateParsed - Return true if the attribute has arguments that
140 while (true) {
178 ConsumeAndStoreUntil(tok::r_paren, LA->Toks, true, false);
416 while (true) {
450 HasInvalidAccessor = true;
456 HasInvalidAccessor = true;
523 return true;
594 while (true) {
632 while (true) {
1339 CharSourceRange AttrRange(SourceRange(Loc, Attrs.Range.getEnd()), true); local
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 58 return true;
86 return true;
168 return true;
239 /*isImplicitlyDeclared=*/true,
291 true, NR);
392 Recovered = true;
407 Recovered = true;
427 hasMacro = true;
506 /*isImplicitlyDeclared=*/true,
668 /*isImplicitlyDeclared=*/true, /*isDefined=*/false
3621 << SrcType << DestType << Sel << true; local
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
OGLESShaderRenderer.java 105 private boolean checkErrors = true;
142 return true;
286 tdc = true;
354 powerOf2 = true;
368 useVBO = true;
440 context.wireframe = true;
457 context.depthTestEnabled = true;
469 context.alphaTestEnabled = true;
476 logger.info("GLES20.glDepthMask(true)");
478 GLES20.glDepthMask(true);
1993 statistics.onTextureUse(tex.getImage(), true); local
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 319 HasPageZeroSegment = true;
1019 if (Type == MachO::GENERIC_RELOC_PAIR) Result = true;
1029 Result = true;
2598 DataExtractor extractor(ObjectFile::getData(), true, 0); local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 58 /// AddWithOverflow - Compute Result = In1+In2, returning true if the result
71 return true;
93 /// SubWithOverflow - Compute Result = In1-In2, returning true if the result
106 return true;
116 /// isSignBitCheck - Given an exploded icmp instruction, return true if the
118 /// TrueIfSigned if the result of the comparison is true when the input value is
123 case ICmpInst::ICMP_SLT: // True if LHS s< 0
124 TrueIfSigned = true;
126 case ICmpInst::ICMP_SLE: // True if LHS s<= RHS and RHS == -1
127 TrueIfSigned = true;
3807 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true, local
3832 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true, local
3843 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true, local
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 295 // Silences warnings: "Condition is always true", "Unreachable code"
299 // Tests that GTEST_IS_NULL_LITERAL_(x) is true when x is a null
312 EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(true && false));
642 return true;
649 return true;
651 found_in_vector[e] = true;
666 return true;
4765 r << "abc" << 'd' << 0 << true; local
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 363 // special: (undefined == undefined) == true, but
516 // Check for oddballs: true, false, null, undefined.
522 // Check for oddballs: true, false, null, undefined.
677 // Check if LESS condition is satisfied. If true, move conditionally
686 // Check if EQUAL condition is satisfied. If true, move conditionally
1209 __ LeaveExitFrame(save_doubles(), s0, true, EMIT_RETURN); local
    [all...]
  /external/v8/src/mips64/
code-stubs-mips64.cc 359 // special: (undefined == undefined) == true, but
510 // Check for oddballs: true, false, null, undefined.
516 // Check for oddballs: true, false, null, undefined.
673 // Check if LESS condition is satisfied. If true, move conditionally
682 // Check if EQUAL condition is satisfied. If true, move conditionally
1203 __ LeaveExitFrame(save_doubles(), s0, true, EMIT_RETURN); local
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 28 root_array_available_(true) {
3473 DoubleToIStub stub(isolate(), input_reg, result_reg, offset, true); local
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 268 mTheme.applyStyle(mThemeResource, true);
566 File f = validateFilePath(name, true);
853 null, true, false, getUserId()); local
916 options, true, false, getUserId()); local
1003 appOp, options, true, false, user.getIdentifier()); local
1018 Activity.RESULT_OK, null, null, null, AppOpsManager.OP_NONE, null, false, true, local
1055 AppOpsManager.OP_NONE, null, true, true, getUserId()); local
1086 Activity.RESULT_OK, null, null, null, AppOpsManager.OP_NONE, null, false, true, user.getIdentifier()); local
1121 AppOpsManager.OP_NONE, null, true, true, user.getIdentifier()); local
2030 mMainThread.handleUnstableProviderDied(icp.asBinder(), true); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 135 * the {@link #onEvaluateInputViewShown()} to return true or false based on
178 * to return true or false based on
310 * {@code true} when the previous IME had non-empty inset at the bottom of the screen and we
324 // In true fullscreen mode, we just say the window isn't covering
406 doStartInput(ic, attribute, true);
437 showWindow(true);
655 * returns true if it succeeds otherwise false if you will need to draw
666 mHardwareAccelerated = true;
667 return true;
708 mInitialized = true;
794 getCurrentInputEditorInfo(), true); local
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 729 mWaiting = true;
747 while (true) {
766 * Returns "true" if one or more threads is waiting for a debugger
982 VMDebug.startMethodTracing(fixTraceName(traceName), bufferSize, 0, true, intervalUs); local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarView.java 183 mExpandedHomeLayout.setShowUp(true);
194 mExpandedHomeLayout.setEnabled(true);
195 mExpandedHomeLayout.setFocusable(true);
222 mUpGoerFive.setClickable(true);
223 mUpGoerFive.setFocusable(true);
254 mTabScrollView.setAllowCollapse(true);
329 getContext().getResources().getDisplayMetrics().widthPixels, true); local
343 return true;
362 tabs.setAllowCollapse(true);
367 mMenuPrepared = true;
411 getContext().getResources().getDisplayMetrics().widthPixels, true); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 219 private boolean mAllowCaching = true;
250 mMutated = true;
387 return true;
418 * constant state's dpi info, i.e. updateConstantStateDensity == true.
479 state.mCacheDirty = true;
481 updateDimensionInfo(t.getResources(), true /* update constant state */); local
570 state.mCacheDirty = true;
574 updateDimensionInfo(res, true /* update constant state */);
651 boolean noPathTag = true;
819 mTempPaint.setFilterBitmap(true);
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 221 return true;
271 Arguments args = new Arguments(uri, null, null, true);
286 Arguments args = new Arguments(uri, where, whereArgs, true);
486 List<UserInfo> users = mUserManager.getUsers(true);
554 mSettingsRegistry.removeUserStateLocked(userId, true);
576 UserHandle.ALL, true); local
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
ScreenMagnifier.java 298 mUpdateMagnificationSpecOnNextBoundsChange = true;
321 mMagnificationController.reset(true);
530 return true;
537 return true;
548 mScaling = true;
549 return true;
562 return true;
604 eventY, true);
610 mLastMoveOutsideMagnifiedRegion = true;
615 mMagnificationController.reset(true);
840 up.getX(), up.getY(), true); local
853 down.getX(), down.getY(), true); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDeviceTv.java 70 // Whether ARC is available or not. "true" means that ARC is established between TV and
75 // Stores whether ARC feature is enabled per port. True by default for all the ARC-enabled ports.
79 // This becomes true only when all system audio sequences are finished.
109 // If true, TV going to standby mode puts other devices also to standby.
112 // If true, TV wakes itself up when receiving <Text/Image View On>.
120 // If true, do not do routing control/send active source for internal source.
121 // Set to true when the device was woken up by <Text/Image View On>.
184 true);
185 mAutoWakeup = mService.readBooleanSetting(Global.HDMI_CONTROL_AUTO_WAKEUP_ENABLED, true);
237 return true;
1168 setSystemAudioMode(HdmiUtils.parseCommandParamSystemAudioStatus(message), true); local
1469 startRoutingControl(getActivePath(), newPath, true, null); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerService.java 317 mLegacySessions.put(sessionId, true);
331 mLegacySessions.put(sessionId, true);
361 valid = true;
395 final boolean prepared = readBooleanAttribute(in, ATTR_PREPARED, true);
433 out.startDocument(null, true);
576 mPm.enforceCrossUserPermission(callingUid, userId, true, true, "createSession");
610 true);
708 appIcon = Bitmap.createScaledBitmap(appIcon, iconSize, iconSize, true);
824 mPm.enforceCrossUserPermission(Binder.getCallingUid(), userId, true, false, "getAllSessions"); local
840 mPm.enforceCrossUserPermission(Binder.getCallingUid(), userId, true, false, "getMySessions"); local
905 mPm.enforceCrossUserPermission(Binder.getCallingUid(), userId, true, false, "registerCallback"); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AccessibilityController.java 457 setMagnifiedRegionBorderShownLocked(isMagnifyingLocked(), true); local
585 mFullRedrawNeeded = true;
671 typedValue, true);
678 mInvalidated = true;
742 mInvalidated = true
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDelegateImplV7.java 103 // true if we have installed a window sub-decor layout.
155 mEnableDefaultActionBarUp = true;
157 ab.setDefaultDisplayHomeAsUpEnabled(true);
237 ab.setShowHideAnimationEnabled(true);
290 mSubDecorInstalled = true;
347 mContext.getTheme().resolveAttribute(R.attr.actionBarTheme, outValue, true);
516 mHasActionBar = true;
517 return true;
520 mOverlayActionBar = true;
521 return true;
1315 closePanel(getPanelState(featureId, true), true); local
    [all...]

Completed in 1241 milliseconds

<<111213141516171819