HomeSort by relevance Sort by last modified time
    Searched refs:primary (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/lib/
fd-hook.h 48 execute_close_hooks (REMAINING_LIST, PRIMARY, FD) as a fallback. */
50 gl_close_fn primary,
53 execute_ioctl_hooks (REMAINING_LIST, PRIMARY, FD, REQUEST, ARG) as a
56 gl_ioctl_fn primary,
62 execute_close_hooks (REMAINING_LIST, PRIMARY, FD)
65 and PRIMARY is the "primary" method for close(). */
67 gl_close_fn primary,
70 /* Execute the close hooks in REMAINING_LIST, with PRIMARY as "primary" method
    [all...]
fd-hook.c 34 execute_close_hooks (const struct fd_hook *remaining_list, gl_close_fn primary,
39 return primary (fd);
42 primary, fd);
46 execute_all_close_hooks (gl_close_fn primary, int fd)
48 return execute_close_hooks (anchor.private_next, primary, fd);
52 execute_ioctl_hooks (const struct fd_hook *remaining_list, gl_ioctl_fn primary,
57 return primary (fd, request, arg);
60 primary, fd, request, arg);
64 execute_all_ioctl_hooks (gl_ioctl_fn primary,
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg)
    [all...]
  /external/icu/icu4c/source/i18n/
collation.cpp 33 uint32_t primary; local
36 primary = (uint32_t)((offset % 251) + 4) << 16;
40 primary = (uint32_t)((offset % 254) + 2) << 16;
44 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
52 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; local
58 primary |= (uint32_t)((offset % 251) + 4) << 16;
62 primary |= (uint32_t)((offset % 254) + 2) << 16;
66 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
121 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00
133 uint32_t primary = 2 + (c % 18) * 14 local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateSubPanel.java 22 void onButtonClicked(boolean primary);
TranslateAlwaysPanel.java 38 public void onButtonClicked(boolean primary) {
39 if (primary) {
TranslateNeverPanel.java 36 public void onButtonClicked(boolean primary) {
37 if (primary) {
  /device/asus/fugu/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
41 primary {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
packet.h 26 bool primary; // Primary, i.e., not redundant payload. member in struct:webrtc::Packet
34 primary(true),
44 // two regular packets with the same sequence number and timestamp a primary
49 this->primary == rhs.primary &&
60 // (i.e., "earlier") if it is primary, and right hand side is not.
71 return (this->primary && !rhs.primary);
  /external/chromium_org/ash/
screen_util_unittest.cc 32 views::Widget* primary = views::Widget::CreateWindowWithContextAndBounds( local
34 primary->Show();
42 primary->GetNativeView()).ToString());
50 primary->GetNativeView()).ToString());
58 primary->GetNativeView()).ToString());
89 views::Widget* primary = views::Widget::CreateWindowWithContextAndBounds( local
91 primary->Show();
99 primary->GetNativeView(), gfx::Rect(10, 10, 100, 100)).ToString());
108 primary->GetNativeView(), gfx::Rect(30, 30, 100, 100)).ToString());
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 38 * The primary LocalsArray represents the locals as seen from
42 private final OneLocalsArray primary; field in class:LocalsArraySet
59 primary = new OneLocalsArray(maxLocals);
64 * Constructs an instance with the specified primary and secondaries set.
66 * @param primary {@code non-null;} primary locals to use
70 public LocalsArraySet(OneLocalsArray primary,
72 super(primary.getMaxLocals() > 0);
74 this.primary = primary;
    [all...]
  /external/libcxx/test/re/re.def/defns.regex.primary.equivalence.class/
Android.mk 17 test_makefile := external/libcxx/test/re/re.def/defns.regex.primary.equivalence.class/Android.mk
19 test_name := re/re.def/defns.regex.primary.equivalence.class/nothing_to_do
  /device/generic/goldfish/audio/
Android.mk 20 LOCAL_MODULE := audio.primary.goldfish
  /device/asus/grouper/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
34 primary {
  /device/htc/flounder/
audio_policy.conf 18 # For instance, "primary" corresponds to audio.primary.<device>.so.
19 # The "primary" module is mandatory and must include at least one output with
28 primary {
30 primary {
39 primary {
  /device/samsung/manta/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {
  /external/chromium_org/v8/src/ic/
stub-cache.cc 51 // Compute the primary entry.
53 Entry* primary = entry(primary_, primary_offset); local
54 Code* old_code = primary->value;
56 // If the primary entry has useful data in it, we retire it to the
59 Map* old_map = primary->map;
62 int seed = PrimaryOffset(primary->key, old_flags, old_map);
63 int secondary_offset = SecondaryOffset(primary->key, old_flags, seed);
65 *secondary = *primary;
68 // Update primary cache.
69 primary->key = name
80 Entry* primary = entry(primary_, primary_offset); local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 11 (* primary *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 11 (* primary *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 11 (* primary *)
  /external/chromium_org/third_party/webrtc/base/
windowpicker.h 47 // Indicates whether it is the primary desktop in the system.
48 bool primary() const { return primary_; } function in class:rtc::DesktopDescription
49 void set_primary(bool primary) { primary_ = primary; }
  /external/chromium_org/ui/ozone/platform/dri/
gbm_surface.cc 136 scoped_refptr<GbmSurfaceBuffer> primary = local
138 if (!primary.get()) {
139 primary = GbmSurfaceBuffer::CreateBuffer(dri_, pending_buffer);
140 if (!primary.get()) {
146 // The primary buffer is a special case.
148 window_delegate_->GetController()->QueueOverlayPlane(OverlayPlane(primary));
hardware_display_controller.cc 96 bool HardwareDisplayController::Modeset(const OverlayPlane& primary,
99 DCHECK(primary.buffer.get());
103 status &= ModesetCrtc(primary.buffer, mode, crtc_states_[i]);
107 // Since a subset of controllers may be actively using |primary|, just keep
109 current_planes_ = std::vector<OverlayPlane>(1, primary);
119 OverlayPlane primary = GetPrimaryPlane(current_planes_); local
120 DCHECK(primary.buffer.get());
124 status &= ModesetCrtc(primary.buffer, mode_, crtc_states_[i]);
288 const OverlayPlane& primary = GetPrimaryPlane(overlays); local
289 DCHECK(primary.buffer.get())
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
conflict_resolver.cc 118 "(primary tracker_id=%" PRId64 ")",
165 scoped_ptr<FileMetadata> primary; local
181 if (!primary) {
182 primary = file_metadata.Pass();
186 DCHECK(primary->details().file_kind() == FILE_KIND_FILE ||
187 primary->details().file_kind() == FILE_KIND_FOLDER);
191 if (primary->details().file_kind() == FILE_KIND_FILE) {
194 primary = file_metadata.Pass();
199 if (primary->details().modification_time() <
202 primary = file_metadata.Pass()
    [all...]
  /device/asus/flo/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {
  /device/lge/mako/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {

Completed in 619 milliseconds

1 2 3 4 5 6 7 8 9