HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 476 - 500 of 1543) sorted by null

<<11121314151617181920>>

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
MessageListenerRegistry.java 33 package com.jme3.network.base;
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 102 std::string base = InputFilename; local
103 if (InputFilename == "-") { base = "a"; }
106 OutputFilename = base+".bc";
  /external/openssh/openbsd-compat/
inet_ntop.c 119 struct { int base, len; } best, cur; member in struct:__anon11202
132 best.base = -1;
133 cur.base = -1;
136 if (cur.base == -1)
137 cur.base = i, cur.len = 1;
141 if (cur.base != -1) {
142 if (best.base == -1 || cur.len > best.len)
144 cur.base = -1;
148 if (cur.base != -1) {
149 if (best.base == -1 || cur.len > best.len
    [all...]
  /external/oprofile/libpp/
locate_images.cpp 170 string const base = op_basename(image); local
172 vector<string> result = find(base);
176 result = find(module_matcher(base + ".ko"));
  /external/quake/quake/src/QW/client/
cl_pred.c 39 vec3_t base; local
45 VectorCopy (pmove.origin, base);
50 pmove.origin[0] = base[0] + x * 1.0/8;
51 pmove.origin[1] = base[1] + y * 1.0/8;
  /external/tcpdump/missing/
inet_ntop.c 115 long base; member in struct:__anon14281
129 best.base = -1;
130 cur.base = -1;
135 if (cur.base == -1)
136 cur.base = i, cur.len = 1;
139 else if (cur.base != -1)
141 if (best.base == -1 || cur.len > best.len)
143 cur.base = -1;
146 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
PutPropertySlot.h 48 void setExistingProperty(JSObject* base, size_t offset)
51 m_base = base;
55 void setNewProperty(JSObject* base, size_t offset)
58 m_base = base;
63 JSObject* base() const { return m_base; } function in class:JSC::PutPropertySlot
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShaderLang.cpp 47 TShHandleBase* base = reinterpret_cast<TShHandleBase*>(handle); local
48 TCompiler* compiler = base->getAsCompiler();
115 TShHandleBase* base = static_cast<TShHandleBase*>(ConstructCompiler(type, spec));
116 TCompiler* compiler = base->getAsCompiler();
122 ShDestruct(base);
126 return reinterpret_cast<void*>(base);
134 TShHandleBase* base = static_cast<TShHandleBase*>(handle);
136 if (base->getAsCompiler())
137 DeleteCompiler(base->getAsCompiler());
159 TShHandleBase* base = reinterpret_cast<TShHandleBase*>(handle)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 51 HTMLSelectElement* base = static_cast<HTMLSelectElement*>(imp->base()); local
52 return removeElement(base, args);
133 HTMLSelectElement* base = static_cast<HTMLSelectElement*>(collection->base()); local
134 return toOptionsCollectionSetter(index, value, base);
  /external/webkit/Source/WebCore/platform/image-encoders/
JPEGImageEncoder.cpp 38 // Zero base class memory.
39 jpeg_destination_mgr* base = this; local
40 memset(base, 0, sizeof(jpeg_destination_mgr));
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoaderClient.h 40 namespace base { namespace
64 class WebUrlLoaderClient : public base::RefCountedThreadSafe<WebUrlLoaderClient> {
99 static base::Thread* ioThread();
102 friend class base::RefCountedThreadSafe<WebUrlLoaderClient>;
124 static base::Lock* syncLock();
125 static base::ConditionVariable* syncCondition();
  /frameworks/av/include/media/stagefright/foundation/
ABuffer.h 37 uint8_t *base() { return (uint8_t *)mData; } function in struct:android::ABuffer
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 18 package android.filterpacks.base;
InputStreamSource.java 18 package android.filterpacks.base;
OutputStreamTarget.java 18 package android.filterpacks.base;
  /frameworks/base/telephony/java/android/telephony/
JapanesePhoneNumberFormatter.java 186 int base = 0; local
193 short value = FORMAT_MAP[base + ch - '0'];
209 base = value;
  /hardware/libhardware/modules/gralloc/
mapper.cpp 59 hnd->base = intptr_t(mappedAddress) + hnd->offset;
63 *vaddr = (void*)hnd->base;
72 void* base = (void*)hnd->base; local
74 //ALOGD("unmapping from %p, size=%d", base, size);
75 if (munmap(base, size) < 0) {
79 hnd->base = 0;
114 if (hnd->base) {
131 if (hnd->base) {
156 *vaddr = (void*)hnd->base;
    [all...]
  /bionic/libc/inet/
inet_pton.c 109 u_int digit, base; local
127 val = 0; base = 10;
131 base = 16, c = *++src;
133 base = 8;
136 if (pton && base != 10)
141 if (digit >= base)
143 val = (val * base) + digit;
145 } else if (base == 16 && isxdigit(c)) {
  /external/chromium/base/
atomicops_internals_arm_gcc.h 5 // This file is an internal atomic implementation, use base/atomicops.h instead.
13 namespace base { namespace
122 } // namespace base::subtle
123 } // namespace base
atomicops_internals_mips_gcc.h 5 // This file is an internal atomic implementation, use base/atomicops.h instead.
15 namespace base { namespace
157 } // namespace base::subtle
158 } // namespace base
atomicops_internals_x86_gcc.h 5 // This file is an internal atomic implementation, use base/atomicops.h instead.
24 namespace base { namespace
261 } // namespace base::subtle
262 } // namespace base
bind_helpers.h 7 // that are bound by the Bind() function in base/bind.h.
9 // The public functions are base::Unretained() and base::ConstRef().
54 #include "base/basictypes.h"
55 #include "base/template_util.h"
57 namespace base { namespace
91 // want to probe for. Then we create a class Base that inherits from both T
96 // Now, if TargetFunc exists somewhere in T, then &Base::TargetFunc has an
106 // static const bool value = sizeof(GoodCheck<Base>(0)) == sizeof(Yes);
110 // by specializing GoodCheck() on Base instead of T
    [all...]
dir_reader_linux.h 15 #include "base/logging.h"
16 #include "base/eintr_wrapper.h"
20 namespace base { namespace
96 } // namespace base
  /external/chromium/base/debug/
stack_trace_win.cc 5 #include "base/debug/stack_trace.h"
12 #include "base/basictypes.h"
13 #include "base/logging.h"
14 #include "base/memory/singleton.h"
15 #include "base/synchronization/lock.h"
17 namespace base { namespace
62 base::AutoLock lock(lock_);
132 base::Lock lock_;
197 } // namespace base
trace_event.cc 5 #include "base/debug/trace_event.h"
7 #include "base/format_macros.h"
8 #include "base/file_path.h"
9 #include "base/file_util.h"
10 #include "base/path_service.h"
11 #include "base/platform_thread.h"
12 #include "base/process_util.h"
13 #include "base/stringprintf.h"
14 #include "base/utf_string_conversions.h"
15 #include "base/time.h
19 namespace base { namespace
    [all...]

Completed in 634 milliseconds

<<11121314151617181920>>