HomeSort by relevance Sort by last modified time
    Searched full:return (Results 901 - 925 of 38332) sorted by null

<<31323334353637383940>>

  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.h 105 bool dumpAsPDF() const { return m_dumpAsPDF; }
108 bool dumpAsText() const { return m_dumpAsText; }
111 bool dumpBackForwardList() const { return m_dumpBackForwardList; }
114 bool dumpChildFrameScrollPositions() const { return m_dumpChildFrameScrollPositions; }
117 bool dumpChildFramesAsText() const { return m_dumpChildFramesAsText; }
120 bool dumpDatabaseCallbacks() const { return m_dumpDatabaseCallbacks; }
123 bool dumpDOMAsWebArchive() const { return m_dumpDOMAsWebArchive; }
126 bool dumpEditingCallbacks() const { return m_dumpEditingCallbacks; }
129 bool dumpFrameLoadCallbacks() const { return m_dumpFrameLoadCallbacks; }
132 bool dumpHistoryDelegateCallbacks() const { return m_dumpHistoryDelegateCallbacks;
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
NativeEvent.java 93 * @return HWND on Windows, xwindnow on X
96 return windowId;
103 * @return cross-platform event id
106 return eventId;
112 * @return position of cursor in local coordinates
115 return localPos;
121 * @return position of cursor in screen coordinates
124 return screenPos;
129 * @return window bounds
132 return windowRect
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 57 // Return sInstance if it's non-null, otherwise construct a new callback
71 return callback;
156 return;
183 return null;
185 return value;
201 return null;
203 return value;
219 return 0;
221 return value;
237 return null
    [all...]
  /frameworks/base/libs/camera/
Camera.cpp 60 return mCameraService;
76 return 0;
85 return c;
112 return c;
129 if (c == 0) return NO_INIT;
130 return c->connect(this);
135 return mCamera;
141 if (c == 0) return NO_INIT;
142 return c->lock();
148 if (c == 0) return NO_INIT
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
openAuthSm.c 146 return TI_NOK;
155 return TI_NOK;
160 return TI_OK;
174 return(TI_NOK);
181 return status;
212 return TI_NOK;
222 return TI_NOK;
241 return status;
253 TRACE0(pAuth->hReport, REPORT_SEVERITY_ERROR, "openAuth_smStartIdle: openAuth_smResetRetry return\n");
254 return status
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
openAuthSm.c 146 return TI_NOK;
155 return TI_NOK;
160 return TI_OK;
174 return(TI_NOK);
181 return status;
212 return TI_NOK;
222 return TI_NOK;
241 return status;
253 TRACE0(pAuth->hReport, REPORT_SEVERITY_ERROR, "openAuth_smStartIdle: openAuth_smResetRetry return\n");
254 return status
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
OpMap.java 41 * Return the expression as a string for diagnostics.
43 * @return The expression string.
47 return m_currentPattern;
51 * Return the expression as a string for diagnostics.
53 * @return The expression string.
57 return m_currentPattern;
80 * @return ObjectVector of tokens.
84 return m_tokenQueue;
92 * @return The token, normally a string.
96 return m_tokenQueue.elementAt(pos)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 41 // All functions return false or leave the character unchanged if passed a character
47 inline bool isASCII(char c) { return !(c & ~0x7F); }
48 inline bool isASCII(unsigned short c) { return !(c & ~0x7F); }
50 inline bool isASCII(wchar_t c) { return !(c & ~0x7F); }
52 inline bool isASCII(int c) { return !(c & ~0x7F); }
54 inline bool isASCIIAlpha(char c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
55 inline bool isASCIIAlpha(unsigned short c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
57 inline bool isASCIIAlpha(wchar_t c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
59 inline bool isASCIIAlpha(int c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
61 inline bool isASCIIAlphanumeric(char c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z');
    [all...]
  /external/webkit/WebCore/storage/
DatabaseAuthorizer.cpp 117 return SQLAuthDeny;
120 return denyBasedOnTableName(tableName);
129 return SQLAuthDeny;
131 return denyBasedOnTableName(tableName);
137 return SQLAuthDeny;
139 return denyBasedOnTableName(tableName);
148 return SQLAuthDeny;
150 return denyBasedOnTableName(tableName);
156 return SQLAuthDeny;
159 return denyBasedOnTableName(tableName)
    [all...]
  /external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
pvmf_protocol_engine_common.cpp 32 if (aDataInQueue.empty()) return false;
41 return true;
50 return true;
59 // Discard and return to retrieve another input media data from the queue
61 return false;
64 return true;
71 if (aUri.get_size() == 0) return false;
75 if (!buf) return false;
80 return false;
87 return true
    [all...]
  /external/guava/src/com/google/common/collect/
ForwardingMultimap.java 45 return delegate().asMap();
53 return delegate().containsEntry(key, value);
57 return delegate().containsKey(key);
61 return delegate().containsValue(value);
65 return delegate().entries();
69 return delegate().get(key);
73 return delegate().isEmpty();
77 return delegate().keys();
81 return delegate().keySet();
85 return delegate().put(key, value)
    [all...]
SingletonImmutableMap.java 54 return (e == null)
59 return singleKey.equals(key) ? singleValue : null;
63 return 1;
67 return false;
71 return singleKey.equals(key);
75 return singleValue.equals(value);
82 return (es == null) ? (entrySet = ImmutableSet.of(entry())) : es;
89 return (ks == null) ? (keySet = ImmutableSet.of(singleKey)) : ks;
96 return (v == null) ? (values = new Values<V>(singleValue)) : v;
108 return singleValue.equals(object)
    [all...]
  /external/icu4c/common/
uenum.c 30 /* Return a pointer to the baseContext buffer, possibly allocating
40 return NULL;
48 return NULL;
53 return (void*) & ((_UEnumBuffer*) en->baseContext)->data;
75 return -1;
78 return en->count(en, status);
81 return -1;
109 return ustr;
122 return NULL;
128 return NULL
    [all...]
  /external/icu4c/test/intltest/
textfile.cpp 32 return;
40 return;
51 return;
55 return;
63 return;
78 return FALSE;
98 if (!setBuffer(n++, c, ec)) return FALSE;
100 if (!setBuffer(n++, 0, ec)) return FALSE;
108 return TRUE;
114 if (!readLine(line, ec)) return FALSE
    [all...]
  /external/opencore/fileformats/mp4/composer/src/
assetinfoatoms.cpp 193 return false;
199 return false;
205 return false;
211 return false;
214 return true;
241 return false;
247 return false;
253 return false;
259 return false;
262 return true
    [all...]
  /external/opencore/fileformats/mp4/parser/include/
audiosampleentry.h 51 return *_pes;
56 return _timeScale;
61 return _sampleRateHi;
66 return _channelCount;
75 return _pes->getESDescriptorPtr()->getESID();
79 return 0;
84 return 0;
92 return _pes->getESDescriptorPtr();
96 return NULL;
104 return _pes->getObjectTypeIndication()
    [all...]
  /external/qemu/android/
hw-events.c 82 return _codes[nn].table;
84 return NULL;
93 return 0;
98 return nn;
107 return -1;
113 return list->value;
116 return -1;
126 return buf;
128 return bufprint(buf, bufend, "%s", list[index].name);
158 return -1
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/generic/
SDL_syssem.c 36 return (SDL_sem *)0;
41 return;
47 return -1;
53 return -1;
59 return -1;
64 return 0;
70 return -1;
90 return NULL;
99 return NULL;
102 return sem
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_syssem.c 66 return(sem);
88 return -1;
97 return -1;
101 return 0;
120 return 0;
124 return SDL_MUTEX_TIMEDOUT;
129 return -1;
136 return -1;
141 return 0;
149 return 0
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_syssem.c 39 return (SDL_sem *)0;
44 return;
50 return -1;
56 return -1;
62 return -1;
67 return 0;
73 return -1;
103 return sem;
120 return -1;
126 return retval
    [all...]
  /external/skia/src/core/
SkPicturePlayback.h 36 // drawing and return from draw() after the "current" op code is done
43 size_t length() { return fByteLength; }
44 const void* text() { return (const void*) fText; }
52 return fBitmaps[index - 1];
55 int getIndex() { return fReader.readInt(); }
56 int getInt() { return fReader.readInt(); }
61 return NULL;
64 return &fMatrices[index - 1];
68 return (*fPathHeap)[getInt() - 1];
74 return *fPictureRefs[index - 1]
    [all...]
  /external/webkit/WebCore/platform/mac/
PurgeableBufferMac.cpp 55 return 0;
62 return 0;
69 return 0;
72 return new PurgeableBuffer(reinterpret_cast<char*>(buffer), size);
79 return true;
96 return true;
100 return true;
104 return true;
106 return false;
114 return false
    [all...]
  /external/webkit/WebCore/platform/qt/
FileSystemQt.cpp 49 return QFile::exists(path);
55 return QFile::remove(path);
60 return QDir::root().rmdir(path);
67 return info.exists();
74 return info.exists();
79 return QDir::root().mkpath(path);
84 return QDir::toNativeSeparators(QDir(path).filePath(component));
89 return QDir::homePath();
94 return QFileInfo(path).fileName();
99 return String(QFileInfo(path).absolutePath())
    [all...]
  /external/webkit/WebCore/rendering/
RenderTableSection.h 41 const RenderObjectChildList* children() const { return &m_children; }
42 RenderObjectChildList* children() { return &m_children; }
54 RenderTable* table() const { return toRenderTable(parent()); }
70 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; }
71 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; }
82 int outerBorderTop() const { return m_outerBorderTop; }
83 int outerBorderBottom() const { return m_outerBorderBottom; }
84 int outerBorderLeft() const { return m_outerBorderLeft; }
85 int outerBorderRight() const { return m_outerBorderRight; }
87 int numRows() const { return m_gridRows;
    [all...]
  /external/webkit/WebCore/wml/
WMLErrorHandling.cpp 38 return;
49 return;
55 return;
59 return;
63 return;
73 return "Conflicting event bindings within an element.";
75 return "Deck not accessible.";
77 return "At least two do elements share a name, which is not allowed.";
79 return "Forbidden task contained in anchor element.";
81 return "A table contains an invalid number of columns."
    [all...]

Completed in 353 milliseconds

<<31323334353637383940>>