HomeSort by relevance Sort by last modified time
    Searched defs:mode (Results 1 - 25 of 1698) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/utils/lit/tests/Inputs/shtest-timeout/
quick_then_slow.py 12 mode = sys.argv[1] variable
14 if mode == 'slow':
15 print("Running in slow mode")
19 elif mode == 'quick':
20 print("Running in quick mode")
23 print("Unrecognised mode {}".format(mode))
  /external/freetype/builds/unix/
install.mk 47 $(LIBTOOL) --mode=install $(INSTALL) \
78 -$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/$(LIBRARY).$A
95 -$(LIBTOOL) --mode=clean $(RM) $(OBJECTS_LIST)
99 -$(LIBTOOL) --mode=clean $(RM) $(PROJECT_LIBRARY)
  /external/icu/icu4c/source/test/depstest/
icu-dependencies-mode.el 18 (define-derived-mode icu-dependencies-mode fundamental-mode
20 (setq mode-name "icu dependencies.txt")
  /external/libdrm/tegra/
tegra.h 56 uint32_t mode; member in struct:drm_tegra_bo_tiling
  /external/llvm/utils/emacs/
llvm-mode.el 1 ;;; llvm-mode.el --- Major mode for the LLVM assembler language.
7 ;; Major mode for editing LLVM IR files.
11 (defvar llvm-mode-syntax-table
18 "Syntax table used while in LLVM mode.")
66 (defalias 'llvm-mode-prog-mode
67 (if (fboundp 'prog-mode)
68 'prog-mode
69 'fundamental-mode))
    [all...]
tablegen-mode.el 1 ;;; tablegen-mode.el --- Major mode for TableGen description files (part of LLVM project)
6 ;; A major mode for TableGen description files in LLVM.
12 ;; Create mode-specific tables.
47 "Additional expressions to highlight in TableGen mode.")
48 (put 'tablegen-mode 'font-lock-defaults '(tablegen-font-lock-keywords))
54 (defvar tablegen-mode-syntax-table nil
55 "Syntax table used in `tablegen-mode' buffers.")
56 (when (not tablegen-mode-syntax-table)
57 (setq tablegen-mode-syntax-table (make-syntax-table)
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 265 GLfloat mode = (GLfloat) ctx->Fog.Mode; local
266 ctx->Driver.Fogfv(ctx, GL_FOG_MODE, &mode);
  /external/strace/
mknod.c 43 unsigned short mode = tcp->u_arg[offset + 1]; local
48 print_symbolic_mode_t(mode);
49 switch (mode & S_IFMT) {
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/emacs/
llvm-mode.el 1 ;;; llvm-mode.el --- Major mode for the LLVM assembler language.
8 ;; Major mode for editing LLVM IR files.
12 (defvar llvm-mode-syntax-table
19 "Syntax table used while in LLVM mode.")
85 (defalias 'llvm-mode-prog-mode
86 (if (fboundp 'prog-mode)
87 'prog-mode
88 'fundamental-mode))
    [all...]
  /external/toybox/toys/posix/
mkdir.c 13 usage: mkdir [-vp] [-m mode] [dirname...]
17 -m Set permissions of directory to mode
41 mode_t mode = (0777&~toys.old_umask); local
47 if (TT.m) mode = string_to_mode(TT.m, 0777);
51 if (mkpathat(AT_FDCWD, *s, mode, toys.optflags|MKPATHAT_MKLAST))
  /external/swiftshader/third_party/LLVM/utils/emacs/
llvm-mode.el 2 ;; Description: Major mode for the LLVM assembler language.
5 ;; Create mode-specific tables.
6 (defvar llvm-mode-syntax-table nil
7 "Syntax table used while in LLVM mode.")
52 (if (not llvm-mode-syntax-table)
54 (setq llvm-mode-syntax-table (make-syntax-table))
58 llvm-mode-syntax-table)))
92 (defvar llvm-mode-abbrev-table nil
93 "Abbrev table used while in LLVM mode.")
94 (define-abbrev-table 'llvm-mode-abbrev-table ())
    [all...]
tablegen-mode.el 2 ;; Description: Major mode for TableGen description files (part of LLVM project)
9 ;; Create mode-specific tables.
42 "Additional expressions to highlight in TableGen mode.")
43 (put 'tablegen-mode 'font-lock-defaults '(tablegen-font-lock-keywords))
49 (defvar tablegen-mode-syntax-table nil
50 "Syntax table used in `tablegen-mode' buffers.")
51 (when (not tablegen-mode-syntax-table)
52 (setq tablegen-mode-syntax-table (make-syntax-table))
54 (modify-syntax-entry ?\ " " tablegen-mode-syntax-table)
55 (modify-syntax-entry ?\t " " tablegen-mode-syntax-table)
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_CONNSECMARK.h 27 __u8 mode; member in struct:xt_connsecmark_target_info
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
script.py 20 mode = 'w' variable
32 mode = 'a' variable
36 script = open(filename, mode)
  /external/grpc-grpc/third_party/nanopb/tests/alltypes/
encode_alltypes.c 13 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
81 if (mode != 0)
  /external/grpc-grpc/third_party/nanopb/tests/backwards_compatibility/
encode_legacy.c 16 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
72 if (mode != 0)
  /external/iptables/include/linux/netfilter/
xt_CONNSECMARK.h 12 __u8 mode; member in struct:xt_connsecmark_target_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_CONNSECMARK.h 13 __u8 mode; member in struct:xt_connsecmark_target_info
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 13 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
18 if (mode == 0 || mode == 1)
88 if (mode == 1)
  /external/nanopb-c/tests/alltypes_proto3/
encode_alltypes.c 13 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
60 if (mode != 0)
  /external/nanopb-c/tests/backwards_compatibility/
encode_legacy.c 16 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
72 if (mode != 0)
  /external/nanopb-c/tests/field_size_16_proto3/
encode_alltypes.c 13 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
60 if (mode != 0)
  /external/nanopb-c/tests/without_64bit/
encode_alltypes.c 13 int mode = (argc > 1) ? atoi(argv[1]) : 0; local
67 if (mode != 0)
  /external/python/cpython2/Demo/scripts/
script.py 20 mode = 'w' variable
32 mode = 'a' variable
36 script = open(filename, mode)
  /external/u-boot/arch/arm/mach-socfpga/include/mach/
misc.h 12 const char *mode; member in struct:bsel

Completed in 1995 milliseconds

1 2 3 4 5 6 7 8 91011>>