HomeSort by relevance Sort by last modified time
    Searched full:unit (Results 201 - 225 of 3644) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/vm/mterp/armv5te/
OP_GOTO_16.S 6 * The branch distance is a signed code-unit offset, which we need to
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 116 private int interpColor(int colors[], float unit) {
117 if (unit <= 0) {
120 if (unit >= 1) {
124 float p = unit * (colors.length - 1);
188 // need to turn angle [-PI ... PI] into unit [0....1]
189 float unit = angle/(2*PI); local
190 if (unit < 0) {
191 unit += 1;
193 mCenterPaint.setColor(interpColor(mColors, unit));
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 133 private int interpColor(int colors[], float unit) {
134 if (unit <= 0) {
137 if (unit >= 1) {
141 float p = unit * (colors.length - 1);
205 // need to turn angle [-PI ... PI] into unit [0....1]
206 float unit = angle/(2*PI); local
207 if (unit < 0) {
208 unit += 1;
210 mCenterPaint.setColor(interpColor(mColors, unit));
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_url.h 22 // URLs together, and this gives the unit tests access for testing.
  /external/chromium/net/http/
mock_allow_url_security_manager.h 14 // in unit testing.
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 229 /// getOrCreateMainFile - Get the file info for main compile unit.
262 /// CreateCompileUnit - Create new compile unit.
309 // Create new compile unit.
431 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
454 return getOrCreateType(QualType(T, 0), Unit);
457 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
467 llvm::DIFile Unit) {
470 Ty->getPointeeType(), Unit);
475 llvm::DIFile Unit) {
477 Ty->getPointeeType(), Unit);
    [all...]
  /external/clang/test/CodeGenObjC/
2009-01-21-invalid-debug-info.m 7 // unit. This was later referred to by f1 and created ill formed debug
  /external/clang/test/Index/Inputs/
crash-recovery-code-complete-remap.c 6 // CHECK-CODE-COMPLETE-CRASH: Unable to reparse translation unit
  /external/dbus/bus/
dbus.service.in 0 [Unit]
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 50 /* Llvm.llmodule -> unit */
56 /* Llvm.llvalue -> unit */
62 /* Llvm.llvalue -> unit */
68 /* Llvm.llvalue -> unit */
llvm_analysis.mli 28 external assert_valid_module : Llvm.llmodule -> unit
34 external assert_valid_function : Llvm.llvalue -> unit
40 external view_function_cfg : Llvm.llvalue -> unit = "llvm_view_function_cfg"
45 external view_function_cfg_only : Llvm.llvalue -> unit
  /external/llvm/test/
Makefile 67 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
107 check-local-lit:: lit.site.cfg Unit/lit.site.cfg
111 check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-lit-site-cfgs
192 Unit/lit.site.cfg: $(PROJ_OBJ_DIR)/Unit/.dir FORCE
194 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp
195 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp
196 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp
197 @$(ECHOPATH) s=@LLVMGCCDIR@=$(LLVMGCCDIR)=g >> unit.tmp
198 @$(ECHOPATH) s=@LLVM_BUILD_MODE@=$(BuildMode)=g >> unit.tm
    [all...]
  /external/valgrind/main/massif/tests/
alloc-fns-A.vgtest 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --massif-out-file=massif.out
basic2.vgtest 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out --detailed-freq=1 --max-snapshots=10
big-alloc.vgtest 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out
custom_alloc.vgtest 2 vgopts: --stacks=no --time-unit=B --heap-admin=16 --massif-out-file=massif.out
deep-A.vgtest 2 vgopts: --stacks=no --time-unit=B --depth=8 --massif-out-file=massif.out
ignored.vgtest 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --massif-out-file=massif.out
insig.vgtest 3 vgopts: --stacks=no --time-unit=B --heap-admin=128 --massif-out-file=massif.out --threshold=0.99
long-names.vgtest 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --massif-out-file=massif.out --detailed-freq=3
long-time.c 1 // This test does enough allocation and deallocation that the time-unit,
long-time.vgtest 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --massif-out-file=massif.out
new-cpp.vgtest 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out
no-stack-no-heap.vgtest 2 vgopts: --stacks=no --heap=no --time-unit=B --massif-out-file=massif.out
one.vgtest 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --massif-out-file=massif.out

Completed in 1262 milliseconds

1 2 3 4 5 6 7 891011>>